diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bab1d63b78b..f026ba06e8f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,627 +1,18 @@
-stages:
- - package
- - tests
- - system-tests
- - fuzz
- - shared-pipeline
- - benchmarks
- - release
-
-variables:
- REPO_LANG: python # "python" is used everywhere rather than "py"
- REPO_NOTIFICATION_CHANNEL: "#apm-python-release"
- RELEASE_ALLOW_TEST_FAILURES: false
- RELEASE_ALLOW_BENCHMARK_FAILURES: false
- # VPA Template configuration
- DD_VPA_TEMPLATE: "vpa-template-cpu-p70-10percent-2x-oom-min-cap"
- # CI_DEBUG_SERVICES: "true"
- # Automatically managed, use scripts/update-system-tests-version to update
- SYSTEM_TESTS_REF: "0526d7eb6ad321c14f7d4c7574cf8970089757c6"
-
- # Profiling native build image (built from dd/images/dd-trace-py/profiling_native)
- PROFILING_NATIVE_IMAGE: "registry.ddbuild.io/dd-trace-py:v103334885-be1888c-profiling_native"
- # Repository URL for CI Visibility
- DD_GIT_REPOSITORY_URL: "https://github.com/DataDog/dd-trace-py.git"
-
- # One pipeline injection package size ratchet
- OCI_PACKAGE_MAX_SIZE_BYTES: 80_000_000
- LIB_INJECTION_IMAGE_MAX_SIZE_BYTES: 100_000_000
+# Monorepo root CI entrypoint. GitLab loads this file from the repository root by default.
+#
+# Project setting: If CI/CD was previously configured to use only dd-trace-py/.gitlab-ci.yml
+# (Settings → CI/CD → General pipelines → CI/CD configuration file), clear that field or set
+# it to .gitlab-ci.yml so this root file is picked up.
default:
- interruptible: true
-
-
-.is_main: $CI_COMMIT_REF_NAME == "main"
-.is_release: $CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+(rc[0-9]+)?$/
-.is_non_rc_release: $CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+$/
-.is_release_branch: $CI_COMMIT_BRANCH =~ /^[0-9]+\.[0-9]+$/
-.is_gh_merge_queue: $CI_COMMIT_BRANCH =~ /^gh-readonly-queue\/.*$/
-.is_devflow_merge_queue: $CI_COMMIT_BRANCH =~ /^mq-working-branch-.*$/
-
-# trigger new commit cancel
-workflow:
- auto_cancel:
- on_new_commit: interruptible
- rules:
- - if: !reference [.is_main]
- auto_cancel:
- on_new_commit: none
- - if: !reference [.is_release_branch]
- auto_cancel:
- on_new_commit: none
- - when: always
-
-include:
- - local: ".gitlab/ci-templates.yml" # Reusable templates (setup_ci_deps, etc.)
- - local: ".gitlab/one-pipeline.locked.yml"
- - local: ".gitlab/services.yml" # Include early so others can use the definitions
- - local: ".gitlab/package.yml"
- - local: ".gitlab/release.yml"
- - local: ".gitlab/testrunner.yml"
- - local: ".gitlab/debugging-exploration.yml"
- - local: ".gitlab/multi-os-tests.yml"
- - local: ".gitlab/benchmarks/serverless.yml"
- - local: ".gitlab/native.yml"
- - local: ".gitlab/system-tests.yml"
- - local: ".gitlab/fuzz.yml"
-
-"pipeline variables":
- stage: .pre
- tags: [ "arch:amd64" ]
- script:
- - |
- echo "CURRENT_YEAR=$(date +%Y)" >> pipeline_variables.env
- echo "CURRENT_MONTH=$(date +%-m)" >> pipeline_variables.env
- echo "CURRENT_WEEK=$(date +%-V)" >> pipeline_variables.env
- echo "CURRENT_BIWEEK=$(( $(date +%-V) / 2 ))" >> pipeline_variables.env
- cat pipeline_variables.env
- artifacts:
- reports:
- dotenv: pipeline_variables.env
-
-tests-gen:
- stage: tests
- extends: .testrunner
- variables:
- UNPIN_DEPENDENCIES: "${UNPIN_DEPENDENCIES:-}"
- NIGHTLY_BUILD: "${NIGHTLY_BUILD:-}"
- id_tokens:
- DDOCTOSTS_ID_TOKEN:
- aud: dd-octo-sts
- script:
- - |
- echo "UNPIN_DEPENDENCIES: ${UNPIN_DEPENDENCIES:-}"
- echo "NIGHTLY_BUILD: ${NIGHTLY_BUILD:-}"
- - |
- if [ -z ${GH_TOKEN} ]
- then
- # Use dd-octo-sts to get GitHub token
- export GH_TOKEN=$(dd-octo-sts token --scope DataDog/dd-trace-py --policy gitlab.github-access.read)
- fi
- - scripts/gen_gitlab_config.py --verbose
- needs: []
- artifacts:
- paths:
- - .gitlab/tests-gen.yml
- - .gitlab/benchmarks/microbenchmarks-gen.yml
- - .gitlab/benchmarks/bp-runner.microbenchmarks.fail-on-breach.yml
-
-run-tests-trigger:
- stage: tests
- needs: [ tests-gen ]
- variables:
- UNPIN_DEPENDENCIES: "${UNPIN_DEPENDENCIES:-}"
- NIGHTLY_BUILD: "${NIGHTLY_BUILD:-}"
- # Allow the child job to fail if explicitly asked
- rules:
- - if: $RELEASE_ALLOW_TEST_FAILURES == "true"
- allow_failure: true
- - allow_failure: false
- trigger:
- include:
- - artifact: .gitlab/tests-gen.yml
- job: tests-gen
- strategy: depend
-
-serverless lambda tests:
- stage: tests
- trigger:
- project: DataDog/datadog-lambda-python
- strategy: depend
- branch: main
- needs:
- - job: "upload serverless"
- variables:
- UPSTREAM_PIPELINE_ID: $CI_PIPELINE_ID
- UPSTREAM_PROJECT_URL: $CI_PROJECT_URL
- UPSTREAM_COMMIT_BRANCH: $CI_COMMIT_BRANCH
- UPSTREAM_COMMIT_AUTHOR: $CI_COMMIT_AUTHOR
- UPSTREAM_COMMIT_TITLE: $CI_COMMIT_TITLE
- UPSTREAM_COMMIT_TAG: $CI_COMMIT_TAG
- UPSTREAM_PROJECT_NAME: $CI_PROJECT_NAME
- UPSTREAM_GITLAB_USER_LOGIN: $GITLAB_USER_LOGIN
- UPSTREAM_GITLAB_USER_EMAIL: $GITLAB_USER_EMAIL
- SKIP_E2E_TESTS: "true"
-
-# Validate the ast-grep rule's test suite in .sg/tests
-"ast-grep rules":
- extends: .testrunner
- stage: tests
- needs: []
- script:
- script:
- - |
- echo -e "\e[0Ksection_start:`date +%s`:sg_test[collapsed=true]\r\e[0KValidate ast-grep rules"
- hatch run lint:sg-test
- echo -e "\e[0Ksection_end:`date +%s`:sg_test\r\e[0K"
- - |
- echo -e "\e[0Ksection_start:`date +%s`:sg_scan[collapsed=true]\r\e[0Kast-grep scan"
- hatch run lint:sg
- echo -e "\e[0Ksection_end:`date +%s`:sg_scan\r\e[0K"
-
-microbenchmarks:
- stage: benchmarks
- needs:
- - job: tests-gen
- - job: "build linux"
- parallel:
- matrix:
- - ARCH_TAG: "amd64"
- PYTHON_TAG: "cp39-cp39"
- IMAGE_TAG: "v85383392-751efc0-manylinux2014_x86_64"
- rules:
- # Allow failures if explicitly asked
- - if: $RELEASE_ALLOW_BENCHMARK_FAILURES == "true"
- allow_failure: true
- - allow_failure: false
- trigger:
- include:
- - artifact: .gitlab/benchmarks/microbenchmarks-gen.yml
- job: tests-gen
- strategy: depend
- variables:
- PARENT_PIPELINE_ID: $CI_PIPELINE_ID
- # Disable VPA for benchmarks
- DD_DISABLE_VPA: true
-
-apm-sdk-benchmarks:
- stage: benchmarks
- when: manual
- allow_failure: true
- needs:
- - job: "upload all"
- trigger:
- project: DataDog/apm-reliability/apm-sdks-benchmarks
- branch: main
- variables:
- TARGET_REF: $CI_PIPELINE_ID
-
-macrobenchmarks:
- stage: benchmarks
- needs:
- - job: "build linux"
- parallel:
- matrix:
- - ARCH_TAG: "amd64"
- PYTHON_TAG: "cp39-cp39"
- IMAGE_TAG: "v85383392-751efc0-manylinux2014_x86_64"
- trigger:
- include: .gitlab/benchmarks/macrobenchmarks.yml
- variables:
- PARENT_PIPELINE_ID: $CI_PIPELINE_ID
- # Disable VPA for benchmarks
- DD_DISABLE_VPA: true
- allow_failure: false
- rules:
- # Always run on nightly schedule or API triggered pipelines
- - if: $NIGHTLY_BUILD == "true"
- when: always
- # Allow failures if explicitly asked
- - if: $RELEASE_ALLOW_BENCHMARK_FAILURES == "true"
- allow_failure: true
- # Always run on tagged releases and release branches
- - if: $CI_COMMIT_BRANCH =~ /^[0-9]+\.[0-9]+$/
- when: always
- - if: !reference [.is_release]
- when: always
- # Otherwise, run manually
- - when: manual
- allow_failure: true
-
-check_new_flaky_tests:
- stage: tests
- needs: ["run-tests-trigger"]
- extends: .testrunner
- script:
- - export DD_SITE=datadoghq.com
- - export DD_API_KEY=$(aws ssm get-parameter --region us-east-1 --name ci.${CI_PROJECT_NAME}.dd-api-key-qualitygate --with-decryption --query "Parameter.Value" --out text)
- - export DD_APP_KEY=$(aws ssm get-parameter --region us-east-1 --name ci.${CI_PROJECT_NAME}.dd-app-key-qualitygate --with-decryption --query "Parameter.Value" --out text)
- - datadog-ci gate evaluate
- rules:
- - if: !reference [.is_main]
- when: never
- - if: !reference [.is_release]
- when: never
- - if: !reference [.is_release_branch]
- when: never
- - if: !reference [.is_gh_merge_queue]
- when: never
- - if: !reference [.is_devflow_merge_queue]
- when: never
- - when: on_success
-
-codeql-scan:
- timeout: 30m
- stage: tests
- needs: []
- image:
- name: registry.ddbuild.io/images/code-scanning:v76675231-865a08a-default
- tags: [ "arch:amd64" ]
- id_tokens:
- DDOCTOSTS_ID_TOKEN:
- aud: dd-octo-sts
- rules:
- - if: !reference [.is_release]
- when: never
- - if: $NIGHTLY_BUILD == "true"
- when: never
- - when: on_success
- variables:
- AWS_REGION: us-east-1
- BASE_REF: main
- GOMAXPROCS: 10
- KUBERNETES_CPU_REQUEST: 10
- KUBERNETES_CPU_LIMIT: 10
- KUBERNETES_MEMORY_REQUEST: 96Gi
- KUBERNETES_MEMORY_LIMIT: 96Gi
- CI_PROJECT_NAMESPACE: DataDog
- CODEQL: /usr/local/codeql/codeql
- CODEQL_DB: /tmp/dd-trace-py.codeql
- PYTHON_CUSTOM_QLPACK: /tmp/codescanning/qlpacks/python/codeql-suites/python-code-scanning.qls
- DB_CONFIGS: --threads 8 --ram 96000 --language=python --quiet
- SCAN_CONFIGS: --format sarifv2.1.0 --threads 8 --ram 96000 --no-tuple-counting --quiet
- UPLOAD_CONFIGS: -upload_sarif=true
- script:
- - ./scripts/codeql_scan.sh
-
-requirements_json_test:
- rules:
- - when: on_success
- variables:
- REQUIREMENTS_BLOCK_JSON_PATH: ".gitlab/requirements_block.json"
- REQUIREMENTS_ALLOW_JSON_PATH: ".gitlab/requirements_allow.json"
-
-check_requirements_lockfiles:
- stage: tests
- needs: []
- extends: .testrunner
- variables:
- # DD_DISABLE_VPA is required: without it VPA overrides KUBERNETES_MEMORY_*
- # (see "overridden by VPA" in runner logs) and clamps the build container
- # down to ~4 GiB based on its learned model. compile-and-prune-test-
- # requirements pip-compiles every riot lockfile sequentially and peaks
- # above that when resolving the full venv matrix (including 3.15 venvs),
- # causing OOMKilled (exit 137).
- DD_DISABLE_VPA: "true"
- KUBERNETES_MEMORY_REQUEST: "8Gi"
- KUBERNETES_MEMORY_LIMIT: "8Gi"
- script:
- - pip install toml==0.10.2
- - scripts/compile-and-prune-test-requirements
- - scripts/check-diff '.riot/requirements/' 'Mismatches found between .riot/requirements/*.txt and riotfile.py. Run scripts/compile-and-prune-test-requirements and commit the result.'
- - python scripts/requirements_to_csv.py
- - scripts/check-diff 'requirements.csv' 'Tracer dependency requirements in requirements.csv is out of date. Run `python scripts/requirements_to_csv.py` and commit the result.'
-
-check_ci_dependencies:
- stage: tests
- needs: []
- extends: .testrunner
- script:
- - scripts/check-ci-dependencies
-
-codeowners:
- stage: tests
- needs: []
- tags: ["arch:amd64"]
- image: registry.ddbuild.io/images/mirror/ubuntu:25.04
- script:
- # Validate that each file entry only exists once in CODEOWNERS to prevent confusion about ownership.
- # The file is evaluated from top to bottom where the last match wins, so duplicate entries can lead to unexpected owners being assigned.
- # Normalize patterns before checking for duplicates:
- # - Remove trailing slashes (tests/tracer and tests/tracer/ are equivalent)
- # - Remove leading ./ (./path and path are equivalent)
- # - Collapse multiple consecutive slashes (path//file becomes path/file)
- - |
- # All non-comment/empty lines from .github/CODEOWNERS
- awk '!/^#|^$/ {print $1}' .github/CODEOWNERS | \
- # Remove any leading `./` in the line
- sed 's|^\./||' | \
- # Remove any duplicate `/`, e.g. `//` -> `/`
- sed -E 's|/+|/|g' | \
- # Remove any trailing `/`
- sed 's:/*$::' | \
- # Sort and return only duplicate entries
- sort | uniq -d > /tmp/duplicate_codeowners.txt
- if [ -s /tmp/duplicate_codeowners.txt ]; then
- echo "Duplicate entries found in .github/CODEOWNERS for patterns (after normalization):"
- cat /tmp/duplicate_codeowners.txt | sed 's/^/ - /'
- echo ""
- echo "Each file pattern should only be listed once to ensure clear ownership."
- echo "Normalization applied: removed trailing slashes, leading './', and collapsed multiple slashes."
- echo "Please remove duplicates from .github/CODEOWNERS."
- exit 1
- fi
- - apt-get update && apt install ca-certificates git wget curl -y
- - wget https://github.com/hmarr/codeowners/releases/download/v1.2.1/codeowners_1.2.1_linux_amd64.tar.gz
- - tar -xvzf codeowners_1.2.1_linux_amd64.tar.gz
- - git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA > /tmp/changed_all.txt
- # Filter to only files that exist on disk (deleted files cause codeowners to crash)
- - |
- > /tmp/changed_files.txt
- while IFS= read -r f; do
- [ -f "$f" ] && echo "$f" >> /tmp/changed_files.txt
- done < /tmp/changed_all.txt
- - |
- if [ -s /tmp/changed_files.txt ]; then
- echo '```' > codeowners.txt
- xargs ./codeowners < /tmp/changed_files.txt | tee -a codeowners.txt
- echo '```' >> codeowners.txt
- fi
- - .gitlab/scripts/post-pr-comment.sh "Codeowners resolved as" codeowners.txt
-
-detect_circular_imports:
- stage: tests
- needs: []
- extends: .testrunner
- script:
- - pip install uv
- - cd ..
- # Keep copies of PR scripts so they survive the git checkout main below
- - cp dd-trace-py/scripts/import-analysis/cycles.py cycles.py
- - cp dd-trace-py/.gitlab/scripts/post-pr-comment.sh post-pr-comment.sh
- - uv run --script cycles.py analyze --root dd-trace-py/ddtrace cycles-pr.json
- - cat cycles-pr.json
- - cd dd-trace-py && git checkout main && cd ..
- # Analyse main branch ddtrace using the PR version of cycles.py (has uv metadata)
- - uv run --script cycles.py analyze --root dd-trace-py/ddtrace cycles-base.json
- - cat cycles-base.json
- - |
- set +e
- uv run --script cycles.py compare cycles-base.json cycles-pr.json > cycles_report.txt
- COMPARE_EXIT=$?
- set -e
- - cat cycles_report.txt
- - ./post-pr-comment.sh "Circular import analysis" cycles_report.txt
- - exit $COMPARE_EXIT
-
-
-package-oci:
- needs:
- - job: "package version"
- artifacts: true
- - job: "build linux"
- artifacts: true
- - job: "download_dependency_wheels"
- artifacts: true
-
-promote-oci-to-prod:
- stage: release
- rules:
- - if: !reference [.is_non_rc_release]
- when: on_success
- - when: never
- needs:
- - job: release_pypi_prod
- - job: package-oci
- artifacts: true
- - job: oci-internal-publish
- artifacts: true
-
-promote-oci-to-prod-beta:
- stage: release
- needs:
- - job: package-oci
- artifacts: true
- - job: oci-internal-publish
- artifacts: true
-
-promote-oci-to-staging:
- stage: release
- needs:
- - job: package-oci
- artifacts: true
- - job: oci-internal-publish
- artifacts: true
-
-publish-lib-init-pinned-tags:
- stage: release
- rules:
- - if: !reference [.is_non_rc_release]
- when: on_success
- - when: never
- needs:
- - job: release_pypi_prod
- - job: create-multiarch-lib-injection-image
- - job: generate-lib-init-pinned-tag-values
- artifacts: true
-
-configure_system_tests:
- needs: []
- variables:
- SYSTEM_TESTS_SCENARIOS_GROUPS: "simple_onboarding,simple_onboarding_profiling,simple_onboarding_appsec,docker-ssi,lib-injection"
-
-system_tests:
- needs: ["configure_system_tests", "oci-internal-test-publish", "kubernetes-injection-test-ecr-publish"]
-
-deploy_to_reliability_env:
- needs: []
- rules:
- # Always deploy on main nightly builds
- - if: $NIGHTLY_BUILD == "true" && $CI_COMMIT_REF_NAME == "main"
- when: always
- # Original rules from one-pipeline.yml
- - if: $CI_PIPELINE_SOURCE == "schedule"
- when: on_success
- - when: manual
- allow_failure: true
-
-deploy_to_di_backend:manual:
- stage: shared-pipeline
- rules:
- - when: manual
- allow_failure: true
- trigger:
- project: DataDog/debugger-demos
- branch: main
- variables:
- UPSTREAM_PROJECT_ID: $CI_PROJECT_ID
- UPSTREAM_PROJECT_NAME: $CI_PROJECT_NAME
- UPSTREAM_COMMIT_SHORT_SHA: $CI_COMMIT_SHORT_SHA
- UPSTREAM_PIPELINE_ID: $CI_PIPELINE_ID
- UPSTREAM_COMMIT_AUTHOR: $CI_COMMIT_AUTHOR
- UPSTREAM_TAG: $CI_COMMIT_TAG
- UPSTREAM_PACKAGE_JOB: build
-
-# Trigger profiling correctness tests with just-built wheels.
-# Runs the prof-correctness test suite (Python scenarios) against the wheels
-# uploaded to S3 for this commit.
-prof-correctness:
- stage: shared-pipeline
- image: registry.ddbuild.io/images/dd-octo-sts-ci-base:2025.06-1
- tags: ["arch:amd64"]
- needs:
- - job: "upload all"
- allow_failure: true
- rules:
- - if: $CI_PIPELINE_SOURCE == "schedule"
- - if: $CI_COMMIT_REF_NAME == "main"
- - changes:
- - .gitlab-ci.yml
- - ddtrace/internal/datadog/profiling/**/*
- - ddtrace/profiling/**/*
- - src/native/**/*
- - when: manual
- allow_failure: true
- id_tokens:
- DDOCTOSTS_ID_TOKEN:
- aud: dd-octo-sts
- script:
+ before_script:
+ # When the repo root is a monorepo, the Python project lives under dd-trace-py/.
+ # Repoint CI_PROJECT_DIR for jobs using bash/sh (Linux/macOS and Git Bash on Windows).
- |
- if [ -z "${GH_TOKEN:-}" ]; then
- export GH_TOKEN=$(dd-octo-sts token --scope DataDog/prof-correctness --policy dd-trace-py.gitlab.trigger-ci)
+ if [ -d "${CI_PROJECT_DIR}/dd-trace-py" ]; then
+ cd "${CI_PROJECT_DIR}/dd-trace-py"
+ export CI_PROJECT_DIR="$(pwd)"
fi
- - |
- echo "Triggering prof-correctness for commit ${CI_COMMIT_SHA}"
- # Trigger pipeline, but do not wait for the job to complete
- gh workflow run downstream-python.yml \
- --repo DataDog/prof-correctness \
- -f dd_trace_py_commit_sha="${CI_COMMIT_SHA}"
-lib_injection_tests:
- # tests for sitecustomize safety that intentionally run outside of riot to simulate a fresh system
- needs: []
- stage: tests
- tags: [ "arch:amd64" ]
- image: registry.ddbuild.io/dd-trace-py:v106957811-b912d74-lib_injection@sha256:d381042ec0c5d8ba617453feec7ccdffefca8ef0e3011d980728fe1a7a9425eb
- script: |
- echo -e "\e[0Ksection_start:`date +%s`:info[collapsed=true]\r\e[0KPython versions"
- pyenv --version
- pyenv versions --bare
- echo -e "\e[0Ksection_end:`date +%s`:info\r\e[0K"
-
- for python_version in $(pyenv versions --bare); do
- echo -e "\e[0Ksection_start:`date +%s`:test_${python_version}[collapsed=true]\r\e[0KTesting with Python ${python_version}"
- pyenv global "${python_version}"
- pyenv exec python --version
- pyenv exec python lib-injection/sources/sitecustomize.py
- echo -e "\e[0Ksection_end:`date +%s`:test_${python_version}\r\e[0K"
- done
-
-# Profiling native tests with sanitizers
-# Uses dedicated profiling-native image with Python, Rust, valgrind, and clang pre-installed
-# Image built from: dd/images/dd-trace-py/profiling_native
-# Only runs when profiling-related files change
-.profiling_native_base:
- needs: []
- stage: tests
- tags: [ "arch:amd64" ]
- image: ${PROFILING_NATIVE_IMAGE}
- timeout: 15m
- variables:
- CMAKE_BUILD_PARALLEL_LEVEL: "12"
- CARGO_BUILD_JOBS: "12"
- before_script:
- - ulimit -c unlimited
- - git config --global --add safe.directory ${CI_PROJECT_DIR}
- - export PYENV_VERSION=${PYTHON_VERSION}
- script:
- - python --version
- # All profiling tests use EXPECT_EXIT (death tests) which fork child processes.
- # LSAN's signal handler in forked children conflicts with gtest, causing spurious crashes.
- # Disable leak detection for "safety" - Valgrind jobs already cover leak detection.
- - if [ "${SANITIZER}" == "safety" ]; then export ASAN_OPTIONS=detect_leaks=0; fi
- - ./ddtrace/internal/datadog/profiling/build_standalone.sh --${SANITIZER} RelWithDebInfo stack_test
-
-# Run on PRs where files in the native Profiling build graph changed.
-# build_standalone.sh compiles Rust (setup.py build_rust) then builds C++ tests
-# via CMake, so Rust, C/C++, Cython, and CMake files should all trigger it.
-# Extension-based patterns keep Python and docs out automatically; non-extension
-# build files (CMakeLists.txt, .sh, .supp) are listed separately.
-profiling_native:
- extends: .profiling_native_base
- retry: 2
- rules:
- - if: $CI_PIPELINE_SOURCE == "schedule"
- - if: $CI_COMMIT_REF_NAME == "main"
- - changes:
- - .gitlab-ci.yml
- # Native source files by extension (C, C++, Cython, CMake modules)
- - ddtrace/internal/datadog/profiling/**/*.cpp
- - ddtrace/internal/datadog/profiling/**/*.cc
- - ddtrace/internal/datadog/profiling/**/*.h
- - ddtrace/internal/datadog/profiling/**/*.hpp
- - ddtrace/internal/datadog/profiling/**/*.pyx
- - ddtrace/internal/datadog/profiling/**/*.cmake
- - ddtrace/profiling/**/*.cpp
- - ddtrace/profiling/**/*.cc
- - ddtrace/profiling/**/*.h
- - ddtrace/profiling/**/*.hpp
- - ddtrace/profiling/**/*.pyx
- # Build/test config files (not matchable by extension alone)
- - ddtrace/internal/datadog/profiling/**/CMakeLists.txt
- - ddtrace/internal/datadog/profiling/**/*.sh
- - ddtrace/internal/datadog/profiling/**/*.supp
- - ddtrace/profiling/**/CMakeLists.txt
- # Rust source (build_standalone.sh compiles Rust first; CMake links
- # against generated FFI headers from src/native/target/.../include/)
- - src/native/**/*.rs
- - src/native/**/*.toml
- - src/native/**/Cargo.lock
- # Top-level build config
- - setup.py
- - pyproject.toml
- parallel:
- matrix:
- - PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
- SANITIZER: ["safety", "thread", ""]
- # Valgrind on subset only: ASAN/LSAN (in "safety") already cover leaks, buffer overflows,
- # and use-after-free. Valgrind's main added value is detecting uninitialized memory usage,
- # which is worth checking on a few versions without the slowdown on all runs.
- # If needed, please add more versions to the list.
- - PYTHON_VERSION: ["3.12", "3.14"]
- SANITIZER: ["valgrind"]
-
-test-dd-sts:
- stage: tests
- needs: []
- tags: ["arch:amd64"]
- when: manual
- allow_failure: true
- image: registry.ddbuild.io/images/mirror/ubuntu:24.04
- id_tokens:
- DD_STS_OIDC_TOKEN:
- aud: rapid-seceng-sit
- script:
- - apt-get update && apt-get install -y curl
- - 'curl -s -o /dev/null -w "API key request http status code: %{http_code}\n" -H "Authorization: Bearer ${DD_STS_OIDC_TOKEN}" "https://dd-sts.us1.ddbuild.io/sts/datadog/exchange?policy=dd-trace-py-gitlab"'
- - 'curl -s -o /dev/null -w "APP key request http status code: %{http_code}\n" -H "Authorization: Bearer ${DD_STS_OIDC_TOKEN}" "https://dd-sts.us1.ddbuild.io/sts/datadog/exchange?policy=dd-trace-py-gitlab-app-key"'
+include:
+ - local: dd-trace-py/.gitlab-ci.yml
diff --git a/README.md b/README.md
index 32273825b3a..e69de29bb2d 100644
--- a/README.md
+++ b/README.md
@@ -1,29 +0,0 @@
-# `ddtrace`
-
-[](https://circleci.com/gh/DataDog/dd-trace-py/tree/main)
-[](https://pypi.org/project/ddtrace/)
-[](https://pypi.org/project/ddtrace/)
-
-
-
-This library powers [Distributed Tracing](https://docs.datadoghq.com/tracing/),
- [Continuous Profiling](https://docs.datadoghq.com/tracing/profiler/),
- [Error Tracking](https://docs.datadoghq.com/tracing/error_tracking/),
- [Test Optimization](https://docs.datadoghq.com/tests/),
- [Deployment Tracking](https://docs.datadoghq.com/tracing/deployment_tracking/),
- [Code Hotspots](https://docs.datadoghq.com/tracing/profiler/connect_traces_and_profiles/),
- [Dynamic Instrumentation](https://docs.datadoghq.com/dynamic_instrumentation/),
- and more.
-
-To get started with tracing, check out the [product documentation][setup docs] or the [glossary][visualization docs].
-
-For advanced usage and configuration information, check out the [library documentation][api docs].
-
-To get started as a contributor, see [the contributing docs](https://ddtrace.readthedocs.io/en/stable/contributing.html) first.
-
-For information about the bug/security fix and maintenance policy, see the [versioning docs][versioning docs].
-
-[setup docs]: https://docs.datadoghq.com/tracing/setup/python/
-[api docs]: https://ddtrace.readthedocs.io/
-[visualization docs]: https://docs.datadoghq.com/tracing/visualization/
-[versioning docs]: https://github.com/DataDog/dd-trace-py/blob/main/docs/versioning.rst#release-support
diff --git a/.clang-format b/dd-trace-py/.clang-format
similarity index 100%
rename from .clang-format
rename to dd-trace-py/.clang-format
diff --git a/.claude/CLAUDE.md b/dd-trace-py/.claude/CLAUDE.md
similarity index 100%
rename from .claude/CLAUDE.md
rename to dd-trace-py/.claude/CLAUDE.md
diff --git a/.claude/settings.json b/dd-trace-py/.claude/settings.json
similarity index 100%
rename from .claude/settings.json
rename to dd-trace-py/.claude/settings.json
diff --git a/.claude/skills/circular-import-analysis/SKILL.md b/dd-trace-py/.claude/skills/circular-import-analysis/SKILL.md
similarity index 100%
rename from .claude/skills/circular-import-analysis/SKILL.md
rename to dd-trace-py/.claude/skills/circular-import-analysis/SKILL.md
diff --git a/.claude/skills/compare-cpython-versions/SKILL.md b/dd-trace-py/.claude/skills/compare-cpython-versions/SKILL.md
similarity index 100%
rename from .claude/skills/compare-cpython-versions/SKILL.md
rename to dd-trace-py/.claude/skills/compare-cpython-versions/SKILL.md
diff --git a/.claude/skills/debug-build-times/SKILL.md b/dd-trace-py/.claude/skills/debug-build-times/SKILL.md
similarity index 100%
rename from .claude/skills/debug-build-times/SKILL.md
rename to dd-trace-py/.claude/skills/debug-build-times/SKILL.md
diff --git a/.claude/skills/find-cpython-usage/SKILL.md b/dd-trace-py/.claude/skills/find-cpython-usage/SKILL.md
similarity index 100%
rename from .claude/skills/find-cpython-usage/SKILL.md
rename to dd-trace-py/.claude/skills/find-cpython-usage/SKILL.md
diff --git a/.claude/skills/lint/SKILL.md b/dd-trace-py/.claude/skills/lint/SKILL.md
similarity index 100%
rename from .claude/skills/lint/SKILL.md
rename to dd-trace-py/.claude/skills/lint/SKILL.md
diff --git a/.claude/skills/releasenote/SKILL.md b/dd-trace-py/.claude/skills/releasenote/SKILL.md
similarity index 100%
rename from .claude/skills/releasenote/SKILL.md
rename to dd-trace-py/.claude/skills/releasenote/SKILL.md
diff --git a/.claude/skills/review-ci/SKILL.md b/dd-trace-py/.claude/skills/review-ci/SKILL.md
similarity index 100%
rename from .claude/skills/review-ci/SKILL.md
rename to dd-trace-py/.claude/skills/review-ci/SKILL.md
diff --git a/.claude/skills/run-benchmarks/SKILL.md b/dd-trace-py/.claude/skills/run-benchmarks/SKILL.md
similarity index 100%
rename from .claude/skills/run-benchmarks/SKILL.md
rename to dd-trace-py/.claude/skills/run-benchmarks/SKILL.md
diff --git a/.claude/skills/run-tests/SKILL.md b/dd-trace-py/.claude/skills/run-tests/SKILL.md
similarity index 100%
rename from .claude/skills/run-tests/SKILL.md
rename to dd-trace-py/.claude/skills/run-tests/SKILL.md
diff --git a/.codespellignorelines b/dd-trace-py/.codespellignorelines
similarity index 100%
rename from .codespellignorelines
rename to dd-trace-py/.codespellignorelines
diff --git a/.coveragerc b/dd-trace-py/.coveragerc
similarity index 100%
rename from .coveragerc
rename to dd-trace-py/.coveragerc
diff --git a/.cursor/rules/appsec.mdc b/dd-trace-py/.cursor/rules/appsec.mdc
similarity index 100%
rename from .cursor/rules/appsec.mdc
rename to dd-trace-py/.cursor/rules/appsec.mdc
diff --git a/.cursor/rules/dd-trace-py.mdc b/dd-trace-py/.cursor/rules/dd-trace-py.mdc
similarity index 100%
rename from .cursor/rules/dd-trace-py.mdc
rename to dd-trace-py/.cursor/rules/dd-trace-py.mdc
diff --git a/.cursor/rules/iast.mdc b/dd-trace-py/.cursor/rules/iast.mdc
similarity index 100%
rename from .cursor/rules/iast.mdc
rename to dd-trace-py/.cursor/rules/iast.mdc
diff --git a/.cursor/rules/linting.mdc b/dd-trace-py/.cursor/rules/linting.mdc
similarity index 100%
rename from .cursor/rules/linting.mdc
rename to dd-trace-py/.cursor/rules/linting.mdc
diff --git a/.cursor/rules/native-code.mdc b/dd-trace-py/.cursor/rules/native-code.mdc
similarity index 100%
rename from .cursor/rules/native-code.mdc
rename to dd-trace-py/.cursor/rules/native-code.mdc
diff --git a/.cursor/rules/repo-structure.mdc b/dd-trace-py/.cursor/rules/repo-structure.mdc
similarity index 100%
rename from .cursor/rules/repo-structure.mdc
rename to dd-trace-py/.cursor/rules/repo-structure.mdc
diff --git a/.cursor/rules/review-ci.mdc b/dd-trace-py/.cursor/rules/review-ci.mdc
similarity index 100%
rename from .cursor/rules/review-ci.mdc
rename to dd-trace-py/.cursor/rules/review-ci.mdc
diff --git a/.cursor/rules/testing.mdc b/dd-trace-py/.cursor/rules/testing.mdc
similarity index 100%
rename from .cursor/rules/testing.mdc
rename to dd-trace-py/.cursor/rules/testing.mdc
diff --git a/.gitconfig b/dd-trace-py/.gitconfig
similarity index 100%
rename from .gitconfig
rename to dd-trace-py/.gitconfig
diff --git a/.github/CODEOWNERS b/dd-trace-py/.github/CODEOWNERS
similarity index 100%
rename from .github/CODEOWNERS
rename to dd-trace-py/.github/CODEOWNERS
diff --git a/.github/COMMIT_TEMPLATE.txt b/dd-trace-py/.github/COMMIT_TEMPLATE.txt
similarity index 100%
rename from .github/COMMIT_TEMPLATE.txt
rename to dd-trace-py/.github/COMMIT_TEMPLATE.txt
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/dd-trace-py/.github/ISSUE_TEMPLATE/bug_report.yaml
similarity index 100%
rename from .github/ISSUE_TEMPLATE/bug_report.yaml
rename to dd-trace-py/.github/ISSUE_TEMPLATE/bug_report.yaml
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/dd-trace-py/.github/ISSUE_TEMPLATE/config.yml
similarity index 100%
rename from .github/ISSUE_TEMPLATE/config.yml
rename to dd-trace-py/.github/ISSUE_TEMPLATE/config.yml
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/dd-trace-py/.github/ISSUE_TEMPLATE/feature_request.yaml
similarity index 100%
rename from .github/ISSUE_TEMPLATE/feature_request.yaml
rename to dd-trace-py/.github/ISSUE_TEMPLATE/feature_request.yaml
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/dd-trace-py/.github/PULL_REQUEST_TEMPLATE.md
similarity index 100%
rename from .github/PULL_REQUEST_TEMPLATE.md
rename to dd-trace-py/.github/PULL_REQUEST_TEMPLATE.md
diff --git a/.github/PULL_REQUEST_TEMPLATE/python_315_bump.md b/dd-trace-py/.github/PULL_REQUEST_TEMPLATE/python_315_bump.md
similarity index 100%
rename from .github/PULL_REQUEST_TEMPLATE/python_315_bump.md
rename to dd-trace-py/.github/PULL_REQUEST_TEMPLATE/python_315_bump.md
diff --git a/.github/actions/setup-ci-deps/action.yml b/dd-trace-py/.github/actions/setup-ci-deps/action.yml
similarity index 100%
rename from .github/actions/setup-ci-deps/action.yml
rename to dd-trace-py/.github/actions/setup-ci-deps/action.yml
diff --git a/.github/chainguard/codeql.sts.yaml b/dd-trace-py/.github/chainguard/codeql.sts.yaml
similarity index 100%
rename from .github/chainguard/codeql.sts.yaml
rename to dd-trace-py/.github/chainguard/codeql.sts.yaml
diff --git a/.github/chainguard/gitlab.github-access.read.sts.yaml b/dd-trace-py/.github/chainguard/gitlab.github-access.read.sts.yaml
similarity index 100%
rename from .github/chainguard/gitlab.github-access.read.sts.yaml
rename to dd-trace-py/.github/chainguard/gitlab.github-access.read.sts.yaml
diff --git a/.github/chainguard/self.backport.create-pr.sts.yaml b/dd-trace-py/.github/chainguard/self.backport.create-pr.sts.yaml
similarity index 100%
rename from .github/chainguard/self.backport.create-pr.sts.yaml
rename to dd-trace-py/.github/chainguard/self.backport.create-pr.sts.yaml
diff --git a/.github/chainguard/self.generate-package-versions.create-pr.sts.yaml b/dd-trace-py/.github/chainguard/self.generate-package-versions.create-pr.sts.yaml
similarity index 100%
rename from .github/chainguard/self.generate-package-versions.create-pr.sts.yaml
rename to dd-trace-py/.github/chainguard/self.generate-package-versions.create-pr.sts.yaml
diff --git a/.github/chainguard/self.generate-supported-versions.create-pr.sts.yaml b/dd-trace-py/.github/chainguard/self.generate-supported-versions.create-pr.sts.yaml
similarity index 100%
rename from .github/chainguard/self.generate-supported-versions.create-pr.sts.yaml
rename to dd-trace-py/.github/chainguard/self.generate-supported-versions.create-pr.sts.yaml
diff --git a/.github/codeql-config.yml b/dd-trace-py/.github/codeql-config.yml
similarity index 100%
rename from .github/codeql-config.yml
rename to dd-trace-py/.github/codeql-config.yml
diff --git a/.github/dependabot.yml b/dd-trace-py/.github/dependabot.yml
similarity index 100%
rename from .github/dependabot.yml
rename to dd-trace-py/.github/dependabot.yml
diff --git a/.github/scripts/should-run.sh b/dd-trace-py/.github/scripts/should-run.sh
similarity index 100%
rename from .github/scripts/should-run.sh
rename to dd-trace-py/.github/scripts/should-run.sh
diff --git a/.github/workflows/backport-validate.yml b/dd-trace-py/.github/workflows/backport-validate.yml
similarity index 100%
rename from .github/workflows/backport-validate.yml
rename to dd-trace-py/.github/workflows/backport-validate.yml
diff --git a/.github/workflows/backport.yml b/dd-trace-py/.github/workflows/backport.yml
similarity index 100%
rename from .github/workflows/backport.yml
rename to dd-trace-py/.github/workflows/backport.yml
diff --git a/.github/workflows/build-and-publish-image.yml b/dd-trace-py/.github/workflows/build-and-publish-image.yml
similarity index 100%
rename from .github/workflows/build-and-publish-image.yml
rename to dd-trace-py/.github/workflows/build-and-publish-image.yml
diff --git a/.github/workflows/build-windows-docker.yml b/dd-trace-py/.github/workflows/build-windows-docker.yml
similarity index 100%
rename from .github/workflows/build-windows-docker.yml
rename to dd-trace-py/.github/workflows/build-windows-docker.yml
diff --git a/.github/workflows/build_deploy.yml b/dd-trace-py/.github/workflows/build_deploy.yml
similarity index 100%
rename from .github/workflows/build_deploy.yml
rename to dd-trace-py/.github/workflows/build_deploy.yml
diff --git a/.github/workflows/build_python_3.yml b/dd-trace-py/.github/workflows/build_python_3.yml
similarity index 100%
rename from .github/workflows/build_python_3.yml
rename to dd-trace-py/.github/workflows/build_python_3.yml
diff --git a/.github/workflows/changelog.yml b/dd-trace-py/.github/workflows/changelog.yml
similarity index 100%
rename from .github/workflows/changelog.yml
rename to dd-trace-py/.github/workflows/changelog.yml
diff --git a/.github/workflows/generate-package-versions.yml b/dd-trace-py/.github/workflows/generate-package-versions.yml
similarity index 100%
rename from .github/workflows/generate-package-versions.yml
rename to dd-trace-py/.github/workflows/generate-package-versions.yml
diff --git a/.github/workflows/generate-supported-versions.yml b/dd-trace-py/.github/workflows/generate-supported-versions.yml
similarity index 100%
rename from .github/workflows/generate-supported-versions.yml
rename to dd-trace-py/.github/workflows/generate-supported-versions.yml
diff --git a/.github/workflows/lib-inject-prune.yml b/dd-trace-py/.github/workflows/lib-inject-prune.yml
similarity index 100%
rename from .github/workflows/lib-inject-prune.yml
rename to dd-trace-py/.github/workflows/lib-inject-prune.yml
diff --git a/.github/workflows/pr-name.yml b/dd-trace-py/.github/workflows/pr-name.yml
similarity index 100%
rename from .github/workflows/pr-name.yml
rename to dd-trace-py/.github/workflows/pr-name.yml
diff --git a/.github/workflows/prune_workflow.yml b/dd-trace-py/.github/workflows/prune_workflow.yml
similarity index 100%
rename from .github/workflows/prune_workflow.yml
rename to dd-trace-py/.github/workflows/prune_workflow.yml
diff --git a/.github/workflows/pytorch_gpu_tests.yml b/dd-trace-py/.github/workflows/pytorch_gpu_tests.yml
similarity index 100%
rename from .github/workflows/pytorch_gpu_tests.yml
rename to dd-trace-py/.github/workflows/pytorch_gpu_tests.yml
diff --git a/.github/workflows/report-skipped-flaky.yml b/dd-trace-py/.github/workflows/report-skipped-flaky.yml
similarity index 100%
rename from .github/workflows/report-skipped-flaky.yml
rename to dd-trace-py/.github/workflows/report-skipped-flaky.yml
diff --git a/.github/workflows/stale.yml b/dd-trace-py/.github/workflows/stale.yml
similarity index 100%
rename from .github/workflows/stale.yml
rename to dd-trace-py/.github/workflows/stale.yml
diff --git a/.github/workflows/system-tests.yml b/dd-trace-py/.github/workflows/system-tests.yml
similarity index 100%
rename from .github/workflows/system-tests.yml
rename to dd-trace-py/.github/workflows/system-tests.yml
diff --git a/.github/workflows/testrunner.yml b/dd-trace-py/.github/workflows/testrunner.yml
similarity index 100%
rename from .github/workflows/testrunner.yml
rename to dd-trace-py/.github/workflows/testrunner.yml
diff --git a/.gitignore b/dd-trace-py/.gitignore
similarity index 100%
rename from .gitignore
rename to dd-trace-py/.gitignore
diff --git a/dd-trace-py/.gitlab-ci.yml b/dd-trace-py/.gitlab-ci.yml
new file mode 100644
index 00000000000..d8287724703
--- /dev/null
+++ b/dd-trace-py/.gitlab-ci.yml
@@ -0,0 +1,626 @@
+stages:
+ - package
+ - tests
+ - system-tests
+ - fuzz
+ - shared-pipeline
+ - benchmarks
+ - release
+
+variables:
+ REPO_LANG: python # "python" is used everywhere rather than "py"
+ REPO_NOTIFICATION_CHANNEL: "#apm-python-release"
+ RELEASE_ALLOW_TEST_FAILURES: false
+ RELEASE_ALLOW_BENCHMARK_FAILURES: false
+ # VPA Template configuration
+ DD_VPA_TEMPLATE: "vpa-template-cpu-p70-10percent-2x-oom-min-cap"
+ # CI_DEBUG_SERVICES: "true"
+ # Automatically managed, use scripts/update-system-tests-version to update
+ SYSTEM_TESTS_REF: "0526d7eb6ad321c14f7d4c7574cf8970089757c6"
+
+ # Profiling native build image (built from dd/images/dd-trace-py/profiling_native)
+ PROFILING_NATIVE_IMAGE: "registry.ddbuild.io/dd-trace-py:v103334885-be1888c-profiling_native"
+ # Repository URL for CI Visibility
+ DD_GIT_REPOSITORY_URL: "https://github.com/DataDog/dd-trace-py.git"
+
+ # One pipeline injection package size ratchet
+ OCI_PACKAGE_MAX_SIZE_BYTES: 80_000_000
+ LIB_INJECTION_IMAGE_MAX_SIZE_BYTES: 100_000_000
+
+default:
+ interruptible: true
+
+
+.is_main: $CI_COMMIT_REF_NAME == "main"
+.is_release: $CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+(rc[0-9]+)?$/
+.is_non_rc_release: $CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+$/
+.is_release_branch: $CI_COMMIT_BRANCH =~ /^[0-9]+\.[0-9]+$/
+.is_gh_merge_queue: $CI_COMMIT_BRANCH =~ /^gh-readonly-queue\/.*$/
+.is_devflow_merge_queue: $CI_COMMIT_BRANCH =~ /^mq-working-branch-.*$/
+
+# trigger new commit cancel
+workflow:
+ auto_cancel:
+ on_new_commit: interruptible
+ rules:
+ - if: !reference [.is_main]
+ auto_cancel:
+ on_new_commit: none
+ - if: !reference [.is_release_branch]
+ auto_cancel:
+ on_new_commit: none
+ - when: always
+
+include:
+ - local: dd-trace-py/.gitlab/ci-templates.yml # Reusable templates (setup_ci_deps, etc.)
+ - local: dd-trace-py/.gitlab/one-pipeline.locked.yml
+ - local: dd-trace-py/.gitlab/services.yml # Include early so others can use the definitions
+ - local: dd-trace-py/.gitlab/package.yml
+ - local: dd-trace-py/.gitlab/release.yml
+ - local: dd-trace-py/.gitlab/testrunner.yml
+ - local: dd-trace-py/.gitlab/debugging-exploration.yml
+ - local: dd-trace-py/.gitlab/multi-os-tests.yml
+ - local: dd-trace-py/.gitlab/benchmarks/serverless.yml
+ - local: dd-trace-py/.gitlab/native.yml
+ - local: dd-trace-py/.gitlab/system-tests.yml
+ - local: dd-trace-py/.gitlab/fuzz.yml
+
+"pipeline variables":
+ stage: .pre
+ tags: [ "arch:amd64" ]
+ script:
+ - |
+ echo "CURRENT_YEAR=$(date +%Y)" >> pipeline_variables.env
+ echo "CURRENT_MONTH=$(date +%-m)" >> pipeline_variables.env
+ echo "CURRENT_WEEK=$(date +%-V)" >> pipeline_variables.env
+ echo "CURRENT_BIWEEK=$(( $(date +%-V) / 2 ))" >> pipeline_variables.env
+ cat pipeline_variables.env
+ artifacts:
+ reports:
+ dotenv: pipeline_variables.env
+
+tests-gen:
+ stage: tests
+ extends: .testrunner
+ variables:
+ UNPIN_DEPENDENCIES: "${UNPIN_DEPENDENCIES:-}"
+ NIGHTLY_BUILD: "${NIGHTLY_BUILD:-}"
+ id_tokens:
+ DDOCTOSTS_ID_TOKEN:
+ aud: dd-octo-sts
+ script:
+ - |
+ echo "UNPIN_DEPENDENCIES: ${UNPIN_DEPENDENCIES:-}"
+ echo "NIGHTLY_BUILD: ${NIGHTLY_BUILD:-}"
+ - |
+ if [ -z ${GH_TOKEN} ]
+ then
+ # Use dd-octo-sts to get GitHub token
+ export GH_TOKEN=$(dd-octo-sts token --scope DataDog/dd-trace-py --policy gitlab.github-access.read)
+ fi
+ - scripts/gen_gitlab_config.py --verbose
+ needs: []
+ artifacts:
+ paths:
+ - .gitlab/tests-gen.yml
+ - .gitlab/benchmarks/microbenchmarks-gen.yml
+ - .gitlab/benchmarks/bp-runner.microbenchmarks.fail-on-breach.yml
+
+run-tests-trigger:
+ stage: tests
+ needs: [ tests-gen ]
+ variables:
+ UNPIN_DEPENDENCIES: "${UNPIN_DEPENDENCIES:-}"
+ NIGHTLY_BUILD: "${NIGHTLY_BUILD:-}"
+ # Allow the child job to fail if explicitly asked
+ rules:
+ - if: $RELEASE_ALLOW_TEST_FAILURES == "true"
+ allow_failure: true
+ - allow_failure: false
+ trigger:
+ include:
+ - artifact: .gitlab/tests-gen.yml
+ job: tests-gen
+ strategy: depend
+
+serverless lambda tests:
+ stage: tests
+ trigger:
+ project: DataDog/datadog-lambda-python
+ strategy: depend
+ branch: main
+ needs:
+ - job: "upload serverless"
+ variables:
+ UPSTREAM_PIPELINE_ID: $CI_PIPELINE_ID
+ UPSTREAM_PROJECT_URL: $CI_PROJECT_URL
+ UPSTREAM_COMMIT_BRANCH: $CI_COMMIT_BRANCH
+ UPSTREAM_COMMIT_AUTHOR: $CI_COMMIT_AUTHOR
+ UPSTREAM_COMMIT_TITLE: $CI_COMMIT_TITLE
+ UPSTREAM_COMMIT_TAG: $CI_COMMIT_TAG
+ UPSTREAM_PROJECT_NAME: $CI_PROJECT_NAME
+ UPSTREAM_GITLAB_USER_LOGIN: $GITLAB_USER_LOGIN
+ UPSTREAM_GITLAB_USER_EMAIL: $GITLAB_USER_EMAIL
+ SKIP_E2E_TESTS: "true"
+
+# Validate the ast-grep rule's test suite in .sg/tests
+"ast-grep rules":
+ extends: .testrunner
+ stage: tests
+ needs: []
+ script:
+ - |
+ echo -e "\e[0Ksection_start:`date +%s`:sg_test[collapsed=true]\r\e[0KValidate ast-grep rules"
+ hatch run lint:sg-test
+ echo -e "\e[0Ksection_end:`date +%s`:sg_test\r\e[0K"
+ - |
+ echo -e "\e[0Ksection_start:`date +%s`:sg_scan[collapsed=true]\r\e[0Kast-grep scan"
+ hatch run lint:sg
+ echo -e "\e[0Ksection_end:`date +%s`:sg_scan\r\e[0K"
+
+microbenchmarks:
+ stage: benchmarks
+ needs:
+ - job: tests-gen
+ - job: "build linux"
+ parallel:
+ matrix:
+ - ARCH_TAG: "amd64"
+ PYTHON_TAG: "cp39-cp39"
+ IMAGE_TAG: "v85383392-751efc0-manylinux2014_x86_64"
+ rules:
+ # Allow failures if explicitly asked
+ - if: $RELEASE_ALLOW_BENCHMARK_FAILURES == "true"
+ allow_failure: true
+ - allow_failure: false
+ trigger:
+ include:
+ - artifact: .gitlab/benchmarks/microbenchmarks-gen.yml
+ job: tests-gen
+ strategy: depend
+ variables:
+ PARENT_PIPELINE_ID: $CI_PIPELINE_ID
+ # Disable VPA for benchmarks
+ DD_DISABLE_VPA: true
+
+apm-sdk-benchmarks:
+ stage: benchmarks
+ when: manual
+ allow_failure: true
+ needs:
+ - job: "upload all"
+ trigger:
+ project: DataDog/apm-reliability/apm-sdks-benchmarks
+ branch: main
+ variables:
+ TARGET_REF: $CI_PIPELINE_ID
+
+macrobenchmarks:
+ stage: benchmarks
+ needs:
+ - job: "build linux"
+ parallel:
+ matrix:
+ - ARCH_TAG: "amd64"
+ PYTHON_TAG: "cp39-cp39"
+ IMAGE_TAG: "v85383392-751efc0-manylinux2014_x86_64"
+ trigger:
+ include: .gitlab/benchmarks/macrobenchmarks.yml
+ variables:
+ PARENT_PIPELINE_ID: $CI_PIPELINE_ID
+ # Disable VPA for benchmarks
+ DD_DISABLE_VPA: true
+ allow_failure: false
+ rules:
+ # Always run on nightly schedule or API triggered pipelines
+ - if: $NIGHTLY_BUILD == "true"
+ when: always
+ # Allow failures if explicitly asked
+ - if: $RELEASE_ALLOW_BENCHMARK_FAILURES == "true"
+ allow_failure: true
+ # Always run on tagged releases and release branches
+ - if: $CI_COMMIT_BRANCH =~ /^[0-9]+\.[0-9]+$/
+ when: always
+ - if: !reference [.is_release]
+ when: always
+ # Otherwise, run manually
+ - when: manual
+ allow_failure: true
+
+check_new_flaky_tests:
+ stage: tests
+ needs: ["run-tests-trigger"]
+ extends: .testrunner
+ script:
+ - export DD_SITE=datadoghq.com
+ - export DD_API_KEY=$(aws ssm get-parameter --region us-east-1 --name ci.${CI_PROJECT_NAME}.dd-api-key-qualitygate --with-decryption --query "Parameter.Value" --out text)
+ - export DD_APP_KEY=$(aws ssm get-parameter --region us-east-1 --name ci.${CI_PROJECT_NAME}.dd-app-key-qualitygate --with-decryption --query "Parameter.Value" --out text)
+ - datadog-ci gate evaluate
+ rules:
+ - if: !reference [.is_main]
+ when: never
+ - if: !reference [.is_release]
+ when: never
+ - if: !reference [.is_release_branch]
+ when: never
+ - if: !reference [.is_gh_merge_queue]
+ when: never
+ - if: !reference [.is_devflow_merge_queue]
+ when: never
+ - when: on_success
+
+codeql-scan:
+ timeout: 30m
+ stage: tests
+ needs: []
+ image:
+ name: registry.ddbuild.io/images/code-scanning:v76675231-865a08a-default
+ tags: [ "arch:amd64" ]
+ id_tokens:
+ DDOCTOSTS_ID_TOKEN:
+ aud: dd-octo-sts
+ rules:
+ - if: !reference [.is_release]
+ when: never
+ - if: $NIGHTLY_BUILD == "true"
+ when: never
+ - when: on_success
+ variables:
+ AWS_REGION: us-east-1
+ BASE_REF: main
+ GOMAXPROCS: 10
+ KUBERNETES_CPU_REQUEST: 10
+ KUBERNETES_CPU_LIMIT: 10
+ KUBERNETES_MEMORY_REQUEST: 96Gi
+ KUBERNETES_MEMORY_LIMIT: 96Gi
+ CI_PROJECT_NAMESPACE: DataDog
+ CODEQL: /usr/local/codeql/codeql
+ CODEQL_DB: /tmp/dd-trace-py.codeql
+ PYTHON_CUSTOM_QLPACK: /tmp/codescanning/qlpacks/python/codeql-suites/python-code-scanning.qls
+ DB_CONFIGS: --threads 8 --ram 96000 --language=python --quiet
+ SCAN_CONFIGS: --format sarifv2.1.0 --threads 8 --ram 96000 --no-tuple-counting --quiet
+ UPLOAD_CONFIGS: -upload_sarif=true
+ script:
+ - ./scripts/codeql_scan.sh
+
+requirements_json_test:
+ rules:
+ - when: on_success
+ variables:
+ REQUIREMENTS_BLOCK_JSON_PATH: ".gitlab/requirements_block.json"
+ REQUIREMENTS_ALLOW_JSON_PATH: ".gitlab/requirements_allow.json"
+
+check_requirements_lockfiles:
+ stage: tests
+ needs: []
+ extends: .testrunner
+ variables:
+ # DD_DISABLE_VPA is required: without it VPA overrides KUBERNETES_MEMORY_*
+ # (see "overridden by VPA" in runner logs) and clamps the build container
+ # down to ~4 GiB based on its learned model. compile-and-prune-test-
+ # requirements pip-compiles every riot lockfile sequentially and peaks
+ # above that when resolving the full venv matrix (including 3.15 venvs),
+ # causing OOMKilled (exit 137).
+ DD_DISABLE_VPA: "true"
+ KUBERNETES_MEMORY_REQUEST: "8Gi"
+ KUBERNETES_MEMORY_LIMIT: "8Gi"
+ script:
+ - pip install toml==0.10.2
+ - scripts/compile-and-prune-test-requirements
+ - scripts/check-diff '.riot/requirements/' 'Mismatches found between .riot/requirements/*.txt and riotfile.py. Run scripts/compile-and-prune-test-requirements and commit the result.'
+ - python scripts/requirements_to_csv.py
+ - scripts/check-diff 'requirements.csv' 'Tracer dependency requirements in requirements.csv is out of date. Run `python scripts/requirements_to_csv.py` and commit the result.'
+
+check_ci_dependencies:
+ stage: tests
+ needs: []
+ extends: .testrunner
+ script:
+ - scripts/check-ci-dependencies
+
+codeowners:
+ stage: tests
+ needs: []
+ tags: ["arch:amd64"]
+ image: registry.ddbuild.io/images/mirror/ubuntu:25.04
+ script:
+ # Validate that each file entry only exists once in CODEOWNERS to prevent confusion about ownership.
+ # The file is evaluated from top to bottom where the last match wins, so duplicate entries can lead to unexpected owners being assigned.
+ # Normalize patterns before checking for duplicates:
+ # - Remove trailing slashes (tests/tracer and tests/tracer/ are equivalent)
+ # - Remove leading ./ (./path and path are equivalent)
+ # - Collapse multiple consecutive slashes (path//file becomes path/file)
+ - |
+ # All non-comment/empty lines from .github/CODEOWNERS
+ awk '!/^#|^$/ {print $1}' .github/CODEOWNERS | \
+ # Remove any leading `./` in the line
+ sed 's|^\./||' | \
+ # Remove any duplicate `/`, e.g. `//` -> `/`
+ sed -E 's|/+|/|g' | \
+ # Remove any trailing `/`
+ sed 's:/*$::' | \
+ # Sort and return only duplicate entries
+ sort | uniq -d > /tmp/duplicate_codeowners.txt
+ if [ -s /tmp/duplicate_codeowners.txt ]; then
+ echo "Duplicate entries found in .github/CODEOWNERS for patterns (after normalization):"
+ cat /tmp/duplicate_codeowners.txt | sed 's/^/ - /'
+ echo ""
+ echo "Each file pattern should only be listed once to ensure clear ownership."
+ echo "Normalization applied: removed trailing slashes, leading './', and collapsed multiple slashes."
+ echo "Please remove duplicates from .github/CODEOWNERS."
+ exit 1
+ fi
+ - apt-get update && apt install ca-certificates git wget curl -y
+ - wget https://github.com/hmarr/codeowners/releases/download/v1.2.1/codeowners_1.2.1_linux_amd64.tar.gz
+ - tar -xvzf codeowners_1.2.1_linux_amd64.tar.gz
+ - git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA > /tmp/changed_all.txt
+ # Filter to only files that exist on disk (deleted files cause codeowners to crash)
+ - |
+ > /tmp/changed_files.txt
+ while IFS= read -r f; do
+ [ -f "$f" ] && echo "$f" >> /tmp/changed_files.txt
+ done < /tmp/changed_all.txt
+ - |
+ if [ -s /tmp/changed_files.txt ]; then
+ echo '```' > codeowners.txt
+ xargs ./codeowners < /tmp/changed_files.txt | tee -a codeowners.txt
+ echo '```' >> codeowners.txt
+ fi
+ - .gitlab/scripts/post-pr-comment.sh "Codeowners resolved as" codeowners.txt
+
+detect_circular_imports:
+ stage: tests
+ needs: []
+ extends: .testrunner
+ script:
+ - pip install uv
+ - cd ..
+ # Keep copies of PR scripts so they survive the git checkout main below
+ - cp dd-trace-py/scripts/import-analysis/cycles.py cycles.py
+ - cp dd-trace-py/.gitlab/scripts/post-pr-comment.sh post-pr-comment.sh
+ - uv run --script cycles.py analyze --root dd-trace-py/ddtrace cycles-pr.json
+ - cat cycles-pr.json
+ - cd dd-trace-py && git checkout main && cd ..
+ # Analyse main branch ddtrace using the PR version of cycles.py (has uv metadata)
+ - uv run --script cycles.py analyze --root dd-trace-py/ddtrace cycles-base.json
+ - cat cycles-base.json
+ - |
+ set +e
+ uv run --script cycles.py compare cycles-base.json cycles-pr.json > cycles_report.txt
+ COMPARE_EXIT=$?
+ set -e
+ - cat cycles_report.txt
+ - ./post-pr-comment.sh "Circular import analysis" cycles_report.txt
+ - exit $COMPARE_EXIT
+
+
+package-oci:
+ needs:
+ - job: "package version"
+ artifacts: true
+ - job: "build linux"
+ artifacts: true
+ - job: "download_dependency_wheels"
+ artifacts: true
+
+promote-oci-to-prod:
+ stage: release
+ rules:
+ - if: !reference [.is_non_rc_release]
+ when: on_success
+ - when: never
+ needs:
+ - job: release_pypi_prod
+ - job: package-oci
+ artifacts: true
+ - job: oci-internal-publish
+ artifacts: true
+
+promote-oci-to-prod-beta:
+ stage: release
+ needs:
+ - job: package-oci
+ artifacts: true
+ - job: oci-internal-publish
+ artifacts: true
+
+promote-oci-to-staging:
+ stage: release
+ needs:
+ - job: package-oci
+ artifacts: true
+ - job: oci-internal-publish
+ artifacts: true
+
+publish-lib-init-pinned-tags:
+ stage: release
+ rules:
+ - if: !reference [.is_non_rc_release]
+ when: on_success
+ - when: never
+ needs:
+ - job: release_pypi_prod
+ - job: create-multiarch-lib-injection-image
+ - job: generate-lib-init-pinned-tag-values
+ artifacts: true
+
+configure_system_tests:
+ needs: []
+ variables:
+ SYSTEM_TESTS_SCENARIOS_GROUPS: "simple_onboarding,simple_onboarding_profiling,simple_onboarding_appsec,docker-ssi,lib-injection"
+
+system_tests:
+ needs: ["configure_system_tests", "oci-internal-test-publish", "kubernetes-injection-test-ecr-publish"]
+
+deploy_to_reliability_env:
+ needs: []
+ rules:
+ # Always deploy on main nightly builds
+ - if: $NIGHTLY_BUILD == "true" && $CI_COMMIT_REF_NAME == "main"
+ when: always
+ # Original rules from one-pipeline.yml
+ - if: $CI_PIPELINE_SOURCE == "schedule"
+ when: on_success
+ - when: manual
+ allow_failure: true
+
+deploy_to_di_backend:manual:
+ stage: shared-pipeline
+ rules:
+ - when: manual
+ allow_failure: true
+ trigger:
+ project: DataDog/debugger-demos
+ branch: main
+ variables:
+ UPSTREAM_PROJECT_ID: $CI_PROJECT_ID
+ UPSTREAM_PROJECT_NAME: $CI_PROJECT_NAME
+ UPSTREAM_COMMIT_SHORT_SHA: $CI_COMMIT_SHORT_SHA
+ UPSTREAM_PIPELINE_ID: $CI_PIPELINE_ID
+ UPSTREAM_COMMIT_AUTHOR: $CI_COMMIT_AUTHOR
+ UPSTREAM_TAG: $CI_COMMIT_TAG
+ UPSTREAM_PACKAGE_JOB: build
+
+# Trigger profiling correctness tests with just-built wheels.
+# Runs the prof-correctness test suite (Python scenarios) against the wheels
+# uploaded to S3 for this commit.
+prof-correctness:
+ stage: shared-pipeline
+ image: registry.ddbuild.io/images/dd-octo-sts-ci-base:2025.06-1
+ tags: ["arch:amd64"]
+ needs:
+ - job: "upload all"
+ allow_failure: true
+ rules:
+ - if: $CI_PIPELINE_SOURCE == "schedule"
+ - if: $CI_COMMIT_REF_NAME == "main"
+ - changes:
+ - .gitlab-ci.yml
+ - ddtrace/internal/datadog/profiling/**/*
+ - ddtrace/profiling/**/*
+ - src/native/**/*
+ - when: manual
+ allow_failure: true
+ id_tokens:
+ DDOCTOSTS_ID_TOKEN:
+ aud: dd-octo-sts
+ script:
+ - |
+ if [ -z "${GH_TOKEN:-}" ]; then
+ export GH_TOKEN=$(dd-octo-sts token --scope DataDog/prof-correctness --policy dd-trace-py.gitlab.trigger-ci)
+ fi
+ - |
+ echo "Triggering prof-correctness for commit ${CI_COMMIT_SHA}"
+ # Trigger pipeline, but do not wait for the job to complete
+ gh workflow run downstream-python.yml \
+ --repo DataDog/prof-correctness \
+ -f dd_trace_py_commit_sha="${CI_COMMIT_SHA}"
+
+lib_injection_tests:
+ # tests for sitecustomize safety that intentionally run outside of riot to simulate a fresh system
+ needs: []
+ stage: tests
+ tags: [ "arch:amd64" ]
+ image: registry.ddbuild.io/dd-trace-py:v106957811-b912d74-lib_injection@sha256:d381042ec0c5d8ba617453feec7ccdffefca8ef0e3011d980728fe1a7a9425eb
+ script: |
+ echo -e "\e[0Ksection_start:`date +%s`:info[collapsed=true]\r\e[0KPython versions"
+ pyenv --version
+ pyenv versions --bare
+ echo -e "\e[0Ksection_end:`date +%s`:info\r\e[0K"
+
+ for python_version in $(pyenv versions --bare); do
+ echo -e "\e[0Ksection_start:`date +%s`:test_${python_version}[collapsed=true]\r\e[0KTesting with Python ${python_version}"
+ pyenv global "${python_version}"
+ pyenv exec python --version
+ pyenv exec python lib-injection/sources/sitecustomize.py
+ echo -e "\e[0Ksection_end:`date +%s`:test_${python_version}\r\e[0K"
+ done
+
+# Profiling native tests with sanitizers
+# Uses dedicated profiling-native image with Python, Rust, valgrind, and clang pre-installed
+# Image built from: dd/images/dd-trace-py/profiling_native
+# Only runs when profiling-related files change
+.profiling_native_base:
+ needs: []
+ stage: tests
+ tags: [ "arch:amd64" ]
+ image: ${PROFILING_NATIVE_IMAGE}
+ timeout: 15m
+ variables:
+ CMAKE_BUILD_PARALLEL_LEVEL: "12"
+ CARGO_BUILD_JOBS: "12"
+ before_script:
+ - ulimit -c unlimited
+ - git config --global --add safe.directory ${CI_PROJECT_DIR}
+ - export PYENV_VERSION=${PYTHON_VERSION}
+ script:
+ - python --version
+ # All profiling tests use EXPECT_EXIT (death tests) which fork child processes.
+ # LSAN's signal handler in forked children conflicts with gtest, causing spurious crashes.
+ # Disable leak detection for "safety" - Valgrind jobs already cover leak detection.
+ - if [ "${SANITIZER}" == "safety" ]; then export ASAN_OPTIONS=detect_leaks=0; fi
+ - ./ddtrace/internal/datadog/profiling/build_standalone.sh --${SANITIZER} RelWithDebInfo stack_test
+
+# Run on PRs where files in the native Profiling build graph changed.
+# build_standalone.sh compiles Rust (setup.py build_rust) then builds C++ tests
+# via CMake, so Rust, C/C++, Cython, and CMake files should all trigger it.
+# Extension-based patterns keep Python and docs out automatically; non-extension
+# build files (CMakeLists.txt, .sh, .supp) are listed separately.
+profiling_native:
+ extends: .profiling_native_base
+ retry: 2
+ rules:
+ - if: $CI_PIPELINE_SOURCE == "schedule"
+ - if: $CI_COMMIT_REF_NAME == "main"
+ - changes:
+ - .gitlab-ci.yml
+ # Native source files by extension (C, C++, Cython, CMake modules)
+ - ddtrace/internal/datadog/profiling/**/*.cpp
+ - ddtrace/internal/datadog/profiling/**/*.cc
+ - ddtrace/internal/datadog/profiling/**/*.h
+ - ddtrace/internal/datadog/profiling/**/*.hpp
+ - ddtrace/internal/datadog/profiling/**/*.pyx
+ - ddtrace/internal/datadog/profiling/**/*.cmake
+ - ddtrace/profiling/**/*.cpp
+ - ddtrace/profiling/**/*.cc
+ - ddtrace/profiling/**/*.h
+ - ddtrace/profiling/**/*.hpp
+ - ddtrace/profiling/**/*.pyx
+ # Build/test config files (not matchable by extension alone)
+ - ddtrace/internal/datadog/profiling/**/CMakeLists.txt
+ - ddtrace/internal/datadog/profiling/**/*.sh
+ - ddtrace/internal/datadog/profiling/**/*.supp
+ - ddtrace/profiling/**/CMakeLists.txt
+ # Rust source (build_standalone.sh compiles Rust first; CMake links
+ # against generated FFI headers from src/native/target/.../include/)
+ - src/native/**/*.rs
+ - src/native/**/*.toml
+ - src/native/**/Cargo.lock
+ # Top-level build config
+ - setup.py
+ - pyproject.toml
+ parallel:
+ matrix:
+ - PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
+ SANITIZER: ["safety", "thread", ""]
+ # Valgrind on subset only: ASAN/LSAN (in "safety") already cover leaks, buffer overflows,
+ # and use-after-free. Valgrind's main added value is detecting uninitialized memory usage,
+ # which is worth checking on a few versions without the slowdown on all runs.
+ # If needed, please add more versions to the list.
+ - PYTHON_VERSION: ["3.12", "3.14"]
+ SANITIZER: ["valgrind"]
+
+test-dd-sts:
+ stage: tests
+ needs: []
+ tags: ["arch:amd64"]
+ when: manual
+ allow_failure: true
+ image: registry.ddbuild.io/images/mirror/ubuntu:24.04
+ id_tokens:
+ DD_STS_OIDC_TOKEN:
+ aud: rapid-seceng-sit
+ script:
+ - apt-get update && apt-get install -y curl
+ - 'curl -s -o /dev/null -w "API key request http status code: %{http_code}\n" -H "Authorization: Bearer ${DD_STS_OIDC_TOKEN}" "https://dd-sts.us1.ddbuild.io/sts/datadog/exchange?policy=dd-trace-py-gitlab"'
+ - 'curl -s -o /dev/null -w "APP key request http status code: %{http_code}\n" -H "Authorization: Bearer ${DD_STS_OIDC_TOKEN}" "https://dd-sts.us1.ddbuild.io/sts/datadog/exchange?policy=dd-trace-py-gitlab-app-key"'
diff --git a/.gitlab/benchmarks/bp-runner.macrobenchmarks.fail-on-breach.yml b/dd-trace-py/.gitlab/benchmarks/bp-runner.macrobenchmarks.fail-on-breach.yml
similarity index 100%
rename from .gitlab/benchmarks/bp-runner.macrobenchmarks.fail-on-breach.yml
rename to dd-trace-py/.gitlab/benchmarks/bp-runner.macrobenchmarks.fail-on-breach.yml
diff --git a/.gitlab/benchmarks/bp-runner.microbenchmarks.fail-on-breach.template.yml b/dd-trace-py/.gitlab/benchmarks/bp-runner.microbenchmarks.fail-on-breach.template.yml
similarity index 100%
rename from .gitlab/benchmarks/bp-runner.microbenchmarks.fail-on-breach.template.yml
rename to dd-trace-py/.gitlab/benchmarks/bp-runner.microbenchmarks.fail-on-breach.template.yml
diff --git a/.gitlab/benchmarks/bp-runner.yml b/dd-trace-py/.gitlab/benchmarks/bp-runner.yml
similarity index 100%
rename from .gitlab/benchmarks/bp-runner.yml
rename to dd-trace-py/.gitlab/benchmarks/bp-runner.yml
diff --git a/.gitlab/benchmarks/macrobenchmarks.yml b/dd-trace-py/.gitlab/benchmarks/macrobenchmarks.yml
similarity index 100%
rename from .gitlab/benchmarks/macrobenchmarks.yml
rename to dd-trace-py/.gitlab/benchmarks/macrobenchmarks.yml
diff --git a/.gitlab/benchmarks/microbenchmarks.yml b/dd-trace-py/.gitlab/benchmarks/microbenchmarks.yml
similarity index 100%
rename from .gitlab/benchmarks/microbenchmarks.yml
rename to dd-trace-py/.gitlab/benchmarks/microbenchmarks.yml
diff --git a/.gitlab/benchmarks/serverless.yml b/dd-trace-py/.gitlab/benchmarks/serverless.yml
similarity index 100%
rename from .gitlab/benchmarks/serverless.yml
rename to dd-trace-py/.gitlab/benchmarks/serverless.yml
diff --git a/.gitlab/benchmarks/steps/build-baseline.sh b/dd-trace-py/.gitlab/benchmarks/steps/build-baseline.sh
similarity index 100%
rename from .gitlab/benchmarks/steps/build-baseline.sh
rename to dd-trace-py/.gitlab/benchmarks/steps/build-baseline.sh
diff --git a/.gitlab/benchmarks/steps/combine-results.sh b/dd-trace-py/.gitlab/benchmarks/steps/combine-results.sh
similarity index 100%
rename from .gitlab/benchmarks/steps/combine-results.sh
rename to dd-trace-py/.gitlab/benchmarks/steps/combine-results.sh
diff --git a/.gitlab/benchmarks/steps/detect-baseline.sh b/dd-trace-py/.gitlab/benchmarks/steps/detect-baseline.sh
similarity index 100%
rename from .gitlab/benchmarks/steps/detect-baseline.sh
rename to dd-trace-py/.gitlab/benchmarks/steps/detect-baseline.sh
diff --git a/.gitlab/ci-split-input.sh b/dd-trace-py/.gitlab/ci-split-input.sh
similarity index 100%
rename from .gitlab/ci-split-input.sh
rename to dd-trace-py/.gitlab/ci-split-input.sh
diff --git a/.gitlab/ci-templates.yml b/dd-trace-py/.gitlab/ci-templates.yml
similarity index 100%
rename from .gitlab/ci-templates.yml
rename to dd-trace-py/.gitlab/ci-templates.yml
diff --git a/.gitlab/debugging-exploration.yml b/dd-trace-py/.gitlab/debugging-exploration.yml
similarity index 100%
rename from .gitlab/debugging-exploration.yml
rename to dd-trace-py/.gitlab/debugging-exploration.yml
diff --git a/.gitlab/download-dependency-wheels.sh b/dd-trace-py/.gitlab/download-dependency-wheels.sh
similarity index 100%
rename from .gitlab/download-dependency-wheels.sh
rename to dd-trace-py/.gitlab/download-dependency-wheels.sh
diff --git a/.gitlab/download-library-version-from-gh-actions.sh b/dd-trace-py/.gitlab/download-library-version-from-gh-actions.sh
similarity index 100%
rename from .gitlab/download-library-version-from-gh-actions.sh
rename to dd-trace-py/.gitlab/download-library-version-from-gh-actions.sh
diff --git a/.gitlab/download-wheels-from-gh-actions.sh b/dd-trace-py/.gitlab/download-wheels-from-gh-actions.sh
similarity index 100%
rename from .gitlab/download-wheels-from-gh-actions.sh
rename to dd-trace-py/.gitlab/download-wheels-from-gh-actions.sh
diff --git a/.gitlab/fuzz.yml b/dd-trace-py/.gitlab/fuzz.yml
similarity index 100%
rename from .gitlab/fuzz.yml
rename to dd-trace-py/.gitlab/fuzz.yml
diff --git a/.gitlab/gha-utils.sh b/dd-trace-py/.gitlab/gha-utils.sh
similarity index 100%
rename from .gitlab/gha-utils.sh
rename to dd-trace-py/.gitlab/gha-utils.sh
diff --git a/.gitlab/multi-os-tests.yml b/dd-trace-py/.gitlab/multi-os-tests.yml
similarity index 100%
rename from .gitlab/multi-os-tests.yml
rename to dd-trace-py/.gitlab/multi-os-tests.yml
diff --git a/.gitlab/native.yml b/dd-trace-py/.gitlab/native.yml
similarity index 96%
rename from .gitlab/native.yml
rename to dd-trace-py/.gitlab/native.yml
index 80950cc491d..384fc890bb9 100644
--- a/.gitlab/native.yml
+++ b/dd-trace-py/.gitlab/native.yml
@@ -1,5 +1,5 @@
include:
- - local: ".gitlab/testrunner.yml"
+ - local: dd-trace-py/.gitlab/testrunner.yml
"rust ci":
stage: tests
diff --git a/.gitlab/one-pipeline.locked.yml b/dd-trace-py/.gitlab/one-pipeline.locked.yml
similarity index 100%
rename from .gitlab/one-pipeline.locked.yml
rename to dd-trace-py/.gitlab/one-pipeline.locked.yml
diff --git a/.gitlab/package.yml b/dd-trace-py/.gitlab/package.yml
similarity index 100%
rename from .gitlab/package.yml
rename to dd-trace-py/.gitlab/package.yml
diff --git a/.gitlab/prepare-oci-package.sh b/dd-trace-py/.gitlab/prepare-oci-package.sh
similarity index 100%
rename from .gitlab/prepare-oci-package.sh
rename to dd-trace-py/.gitlab/prepare-oci-package.sh
diff --git a/.gitlab/release.yml b/dd-trace-py/.gitlab/release.yml
similarity index 100%
rename from .gitlab/release.yml
rename to dd-trace-py/.gitlab/release.yml
diff --git a/.gitlab/requirements/multi-os-tests.txt b/dd-trace-py/.gitlab/requirements/multi-os-tests.txt
similarity index 100%
rename from .gitlab/requirements/multi-os-tests.txt
rename to dd-trace-py/.gitlab/requirements/multi-os-tests.txt
diff --git a/.gitlab/requirements_allow.json b/dd-trace-py/.gitlab/requirements_allow.json
similarity index 100%
rename from .gitlab/requirements_allow.json
rename to dd-trace-py/.gitlab/requirements_allow.json
diff --git a/.gitlab/requirements_block.json b/dd-trace-py/.gitlab/requirements_block.json
similarity index 100%
rename from .gitlab/requirements_block.json
rename to dd-trace-py/.gitlab/requirements_block.json
diff --git a/.gitlab/scripts/build-sdist.sh b/dd-trace-py/.gitlab/scripts/build-sdist.sh
similarity index 100%
rename from .gitlab/scripts/build-sdist.sh
rename to dd-trace-py/.gitlab/scripts/build-sdist.sh
diff --git a/.gitlab/scripts/build-wheel-helpers.sh b/dd-trace-py/.gitlab/scripts/build-wheel-helpers.sh
similarity index 100%
rename from .gitlab/scripts/build-wheel-helpers.sh
rename to dd-trace-py/.gitlab/scripts/build-wheel-helpers.sh
diff --git a/.gitlab/scripts/build-wheel-windows.sh b/dd-trace-py/.gitlab/scripts/build-wheel-windows.sh
similarity index 91%
rename from .gitlab/scripts/build-wheel-windows.sh
rename to dd-trace-py/.gitlab/scripts/build-wheel-windows.sh
index bfbc8c2c1ce..cf6211c75bc 100644
--- a/.gitlab/scripts/build-wheel-windows.sh
+++ b/dd-trace-py/.gitlab/scripts/build-wheel-windows.sh
@@ -8,6 +8,12 @@
set -euo pipefail
+# Monorepo layout: clone root contains dd-trace-py/ as the Python project directory.
+if [[ -d "${CI_PROJECT_DIR}/dd-trace-py" ]]; then
+ cd "${CI_PROJECT_DIR}/dd-trace-py"
+ export CI_PROJECT_DIR="$(pwd)"
+fi
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${SCRIPT_DIR}/build-wheel-helpers.sh"
diff --git a/.gitlab/scripts/build-wheel.sh b/dd-trace-py/.gitlab/scripts/build-wheel.sh
similarity index 100%
rename from .gitlab/scripts/build-wheel.sh
rename to dd-trace-py/.gitlab/scripts/build-wheel.sh
diff --git a/.gitlab/scripts/fuzz_infra.py b/dd-trace-py/.gitlab/scripts/fuzz_infra.py
similarity index 100%
rename from .gitlab/scripts/fuzz_infra.py
rename to dd-trace-py/.gitlab/scripts/fuzz_infra.py
diff --git a/.gitlab/scripts/generate-core-backtraces.sh b/dd-trace-py/.gitlab/scripts/generate-core-backtraces.sh
similarity index 100%
rename from .gitlab/scripts/generate-core-backtraces.sh
rename to dd-trace-py/.gitlab/scripts/generate-core-backtraces.sh
diff --git a/.gitlab/scripts/generate-download-script.sh b/dd-trace-py/.gitlab/scripts/generate-download-script.sh
similarity index 100%
rename from .gitlab/scripts/generate-download-script.sh
rename to dd-trace-py/.gitlab/scripts/generate-download-script.sh
diff --git a/.gitlab/scripts/generate-index-html.sh b/dd-trace-py/.gitlab/scripts/generate-index-html.sh
similarity index 100%
rename from .gitlab/scripts/generate-index-html.sh
rename to dd-trace-py/.gitlab/scripts/generate-index-html.sh
diff --git a/.gitlab/scripts/generate-install-script.sh b/dd-trace-py/.gitlab/scripts/generate-install-script.sh
similarity index 100%
rename from .gitlab/scripts/generate-install-script.sh
rename to dd-trace-py/.gitlab/scripts/generate-install-script.sh
diff --git a/.gitlab/scripts/generate-metadata-txt.sh b/dd-trace-py/.gitlab/scripts/generate-metadata-txt.sh
similarity index 100%
rename from .gitlab/scripts/generate-metadata-txt.sh
rename to dd-trace-py/.gitlab/scripts/generate-metadata-txt.sh
diff --git a/.gitlab/scripts/generate-s3-helper-scripts.sh b/dd-trace-py/.gitlab/scripts/generate-s3-helper-scripts.sh
similarity index 100%
rename from .gitlab/scripts/generate-s3-helper-scripts.sh
rename to dd-trace-py/.gitlab/scripts/generate-s3-helper-scripts.sh
diff --git a/.gitlab/scripts/get-riot-hashes.sh b/dd-trace-py/.gitlab/scripts/get-riot-hashes.sh
similarity index 100%
rename from .gitlab/scripts/get-riot-hashes.sh
rename to dd-trace-py/.gitlab/scripts/get-riot-hashes.sh
diff --git a/.gitlab/scripts/get-riot-pip-cache-key.sh b/dd-trace-py/.gitlab/scripts/get-riot-pip-cache-key.sh
similarity index 100%
rename from .gitlab/scripts/get-riot-pip-cache-key.sh
rename to dd-trace-py/.gitlab/scripts/get-riot-pip-cache-key.sh
diff --git a/.gitlab/scripts/multi-os-tests.ps1 b/dd-trace-py/.gitlab/scripts/multi-os-tests.ps1
similarity index 82%
rename from .gitlab/scripts/multi-os-tests.ps1
rename to dd-trace-py/.gitlab/scripts/multi-os-tests.ps1
index fd9d199a1fc..8246a22d042 100755
--- a/.gitlab/scripts/multi-os-tests.ps1
+++ b/dd-trace-py/.gitlab/scripts/multi-os-tests.ps1
@@ -1,6 +1,13 @@
# Multi-OS test script for Windows
$ErrorActionPreference = "Stop"
+# Monorepo layout: repo root contains dd-trace-py/ as the Python project directory.
+$ddTracePyRoot = Join-Path $env:CI_PROJECT_DIR 'dd-trace-py'
+if (Test-Path -LiteralPath $ddTracePyRoot) {
+ Set-Location $ddTracePyRoot
+ $env:CI_PROJECT_DIR = (Get-Location).Path
+}
+
# Install uv
Write-Host "Installing uv..."
powershell -Command "irm https://astral.sh/uv/install.ps1 | iex"
diff --git a/.gitlab/scripts/multi-os-tests.sh b/dd-trace-py/.gitlab/scripts/multi-os-tests.sh
similarity index 100%
rename from .gitlab/scripts/multi-os-tests.sh
rename to dd-trace-py/.gitlab/scripts/multi-os-tests.sh
diff --git a/.gitlab/scripts/post-pr-comment.sh b/dd-trace-py/.gitlab/scripts/post-pr-comment.sh
similarity index 100%
rename from .gitlab/scripts/post-pr-comment.sh
rename to dd-trace-py/.gitlab/scripts/post-pr-comment.sh
diff --git a/.gitlab/scripts/upload-debug-symbols-to-backend.sh b/dd-trace-py/.gitlab/scripts/upload-debug-symbols-to-backend.sh
similarity index 100%
rename from .gitlab/scripts/upload-debug-symbols-to-backend.sh
rename to dd-trace-py/.gitlab/scripts/upload-debug-symbols-to-backend.sh
diff --git a/.gitlab/scripts/upload-wheels-to-s3.sh b/dd-trace-py/.gitlab/scripts/upload-wheels-to-s3.sh
similarity index 100%
rename from .gitlab/scripts/upload-wheels-to-s3.sh
rename to dd-trace-py/.gitlab/scripts/upload-wheels-to-s3.sh
diff --git a/.gitlab/scripts/windows-docker-build.ps1 b/dd-trace-py/.gitlab/scripts/windows-docker-build.ps1
similarity index 100%
rename from .gitlab/scripts/windows-docker-build.ps1
rename to dd-trace-py/.gitlab/scripts/windows-docker-build.ps1
diff --git a/.gitlab/scripts/windows-docker-test.ps1 b/dd-trace-py/.gitlab/scripts/windows-docker-test.ps1
similarity index 100%
rename from .gitlab/scripts/windows-docker-test.ps1
rename to dd-trace-py/.gitlab/scripts/windows-docker-test.ps1
diff --git a/.gitlab/services.yml b/dd-trace-py/.gitlab/services.yml
similarity index 100%
rename from .gitlab/services.yml
rename to dd-trace-py/.gitlab/services.yml
diff --git a/.gitlab/system-tests.yml b/dd-trace-py/.gitlab/system-tests.yml
similarity index 100%
rename from .gitlab/system-tests.yml
rename to dd-trace-py/.gitlab/system-tests.yml
diff --git a/.gitlab/templates/build-base-venvs.yml b/dd-trace-py/.gitlab/templates/build-base-venvs.yml
similarity index 100%
rename from .gitlab/templates/build-base-venvs.yml
rename to dd-trace-py/.gitlab/templates/build-base-venvs.yml
diff --git a/.gitlab/templates/cached-testrunner.yml b/dd-trace-py/.gitlab/templates/cached-testrunner.yml
similarity index 100%
rename from .gitlab/templates/cached-testrunner.yml
rename to dd-trace-py/.gitlab/templates/cached-testrunner.yml
diff --git a/.gitlab/testrunner.yml b/dd-trace-py/.gitlab/testrunner.yml
similarity index 100%
rename from .gitlab/testrunner.yml
rename to dd-trace-py/.gitlab/testrunner.yml
diff --git a/.gitlab/tests.yml b/dd-trace-py/.gitlab/tests.yml
similarity index 97%
rename from .gitlab/tests.yml
rename to dd-trace-py/.gitlab/tests.yml
index 3bc346efc4a..3ea45211c79 100644
--- a/.gitlab/tests.yml
+++ b/dd-trace-py/.gitlab/tests.yml
@@ -9,8 +9,8 @@ variables:
# CI_DEBUG_SERVICES: "true"
include:
- - local: ".gitlab/services.yml"
- - local: ".gitlab/testrunner.yml"
+ - local: dd-trace-py/.gitlab/services.yml
+ - local: dd-trace-py/.gitlab/testrunner.yml
# Do not define a `needs:` in order to depend on the whole `precheck` stage
.test_base_riot:
diff --git a/.gitlab/validate-ddtrace-package.py b/dd-trace-py/.gitlab/validate-ddtrace-package.py
similarity index 100%
rename from .gitlab/validate-ddtrace-package.py
rename to dd-trace-py/.gitlab/validate-ddtrace-package.py
diff --git a/.readthedocs.yml b/dd-trace-py/.readthedocs.yml
similarity index 100%
rename from .readthedocs.yml
rename to dd-trace-py/.readthedocs.yml
diff --git a/.riot/requirements/1010ab9.txt b/dd-trace-py/.riot/requirements/1010ab9.txt
similarity index 100%
rename from .riot/requirements/1010ab9.txt
rename to dd-trace-py/.riot/requirements/1010ab9.txt
diff --git a/.riot/requirements/1014499.txt b/dd-trace-py/.riot/requirements/1014499.txt
similarity index 100%
rename from .riot/requirements/1014499.txt
rename to dd-trace-py/.riot/requirements/1014499.txt
diff --git a/.riot/requirements/101b183.txt b/dd-trace-py/.riot/requirements/101b183.txt
similarity index 100%
rename from .riot/requirements/101b183.txt
rename to dd-trace-py/.riot/requirements/101b183.txt
diff --git a/.riot/requirements/101f000.txt b/dd-trace-py/.riot/requirements/101f000.txt
similarity index 100%
rename from .riot/requirements/101f000.txt
rename to dd-trace-py/.riot/requirements/101f000.txt
diff --git a/.riot/requirements/102b951.txt b/dd-trace-py/.riot/requirements/102b951.txt
similarity index 100%
rename from .riot/requirements/102b951.txt
rename to dd-trace-py/.riot/requirements/102b951.txt
diff --git a/.riot/requirements/102dfdd.txt b/dd-trace-py/.riot/requirements/102dfdd.txt
similarity index 100%
rename from .riot/requirements/102dfdd.txt
rename to dd-trace-py/.riot/requirements/102dfdd.txt
diff --git a/.riot/requirements/1030725.txt b/dd-trace-py/.riot/requirements/1030725.txt
similarity index 100%
rename from .riot/requirements/1030725.txt
rename to dd-trace-py/.riot/requirements/1030725.txt
diff --git a/.riot/requirements/1030eb8.txt b/dd-trace-py/.riot/requirements/1030eb8.txt
similarity index 100%
rename from .riot/requirements/1030eb8.txt
rename to dd-trace-py/.riot/requirements/1030eb8.txt
diff --git a/.riot/requirements/1036e18.txt b/dd-trace-py/.riot/requirements/1036e18.txt
similarity index 100%
rename from .riot/requirements/1036e18.txt
rename to dd-trace-py/.riot/requirements/1036e18.txt
diff --git a/.riot/requirements/1038948.txt b/dd-trace-py/.riot/requirements/1038948.txt
similarity index 100%
rename from .riot/requirements/1038948.txt
rename to dd-trace-py/.riot/requirements/1038948.txt
diff --git a/.riot/requirements/103ef63.txt b/dd-trace-py/.riot/requirements/103ef63.txt
similarity index 100%
rename from .riot/requirements/103ef63.txt
rename to dd-trace-py/.riot/requirements/103ef63.txt
diff --git a/.riot/requirements/104f450.txt b/dd-trace-py/.riot/requirements/104f450.txt
similarity index 100%
rename from .riot/requirements/104f450.txt
rename to dd-trace-py/.riot/requirements/104f450.txt
diff --git a/.riot/requirements/1050efa.txt b/dd-trace-py/.riot/requirements/1050efa.txt
similarity index 100%
rename from .riot/requirements/1050efa.txt
rename to dd-trace-py/.riot/requirements/1050efa.txt
diff --git a/.riot/requirements/1053a29.txt b/dd-trace-py/.riot/requirements/1053a29.txt
similarity index 100%
rename from .riot/requirements/1053a29.txt
rename to dd-trace-py/.riot/requirements/1053a29.txt
diff --git a/.riot/requirements/1053dc0.txt b/dd-trace-py/.riot/requirements/1053dc0.txt
similarity index 100%
rename from .riot/requirements/1053dc0.txt
rename to dd-trace-py/.riot/requirements/1053dc0.txt
diff --git a/.riot/requirements/1053dce.txt b/dd-trace-py/.riot/requirements/1053dce.txt
similarity index 100%
rename from .riot/requirements/1053dce.txt
rename to dd-trace-py/.riot/requirements/1053dce.txt
diff --git a/.riot/requirements/1059060.txt b/dd-trace-py/.riot/requirements/1059060.txt
similarity index 100%
rename from .riot/requirements/1059060.txt
rename to dd-trace-py/.riot/requirements/1059060.txt
diff --git a/.riot/requirements/105c431.txt b/dd-trace-py/.riot/requirements/105c431.txt
similarity index 100%
rename from .riot/requirements/105c431.txt
rename to dd-trace-py/.riot/requirements/105c431.txt
diff --git a/.riot/requirements/1064582.txt b/dd-trace-py/.riot/requirements/1064582.txt
similarity index 100%
rename from .riot/requirements/1064582.txt
rename to dd-trace-py/.riot/requirements/1064582.txt
diff --git a/.riot/requirements/106bf5d.txt b/dd-trace-py/.riot/requirements/106bf5d.txt
similarity index 100%
rename from .riot/requirements/106bf5d.txt
rename to dd-trace-py/.riot/requirements/106bf5d.txt
diff --git a/.riot/requirements/106f2d7.txt b/dd-trace-py/.riot/requirements/106f2d7.txt
similarity index 100%
rename from .riot/requirements/106f2d7.txt
rename to dd-trace-py/.riot/requirements/106f2d7.txt
diff --git a/.riot/requirements/1072660.txt b/dd-trace-py/.riot/requirements/1072660.txt
similarity index 100%
rename from .riot/requirements/1072660.txt
rename to dd-trace-py/.riot/requirements/1072660.txt
diff --git a/.riot/requirements/107d2ec.txt b/dd-trace-py/.riot/requirements/107d2ec.txt
similarity index 100%
rename from .riot/requirements/107d2ec.txt
rename to dd-trace-py/.riot/requirements/107d2ec.txt
diff --git a/.riot/requirements/107e1ae.txt b/dd-trace-py/.riot/requirements/107e1ae.txt
similarity index 100%
rename from .riot/requirements/107e1ae.txt
rename to dd-trace-py/.riot/requirements/107e1ae.txt
diff --git a/.riot/requirements/10852ec.txt b/dd-trace-py/.riot/requirements/10852ec.txt
similarity index 100%
rename from .riot/requirements/10852ec.txt
rename to dd-trace-py/.riot/requirements/10852ec.txt
diff --git a/.riot/requirements/10853b3.txt b/dd-trace-py/.riot/requirements/10853b3.txt
similarity index 100%
rename from .riot/requirements/10853b3.txt
rename to dd-trace-py/.riot/requirements/10853b3.txt
diff --git a/.riot/requirements/108afed.txt b/dd-trace-py/.riot/requirements/108afed.txt
similarity index 100%
rename from .riot/requirements/108afed.txt
rename to dd-trace-py/.riot/requirements/108afed.txt
diff --git a/.riot/requirements/109a45b.txt b/dd-trace-py/.riot/requirements/109a45b.txt
similarity index 100%
rename from .riot/requirements/109a45b.txt
rename to dd-trace-py/.riot/requirements/109a45b.txt
diff --git a/.riot/requirements/109d638.txt b/dd-trace-py/.riot/requirements/109d638.txt
similarity index 100%
rename from .riot/requirements/109d638.txt
rename to dd-trace-py/.riot/requirements/109d638.txt
diff --git a/.riot/requirements/10a0ca1.txt b/dd-trace-py/.riot/requirements/10a0ca1.txt
similarity index 100%
rename from .riot/requirements/10a0ca1.txt
rename to dd-trace-py/.riot/requirements/10a0ca1.txt
diff --git a/.riot/requirements/10b3343.txt b/dd-trace-py/.riot/requirements/10b3343.txt
similarity index 100%
rename from .riot/requirements/10b3343.txt
rename to dd-trace-py/.riot/requirements/10b3343.txt
diff --git a/.riot/requirements/10b643c.txt b/dd-trace-py/.riot/requirements/10b643c.txt
similarity index 100%
rename from .riot/requirements/10b643c.txt
rename to dd-trace-py/.riot/requirements/10b643c.txt
diff --git a/.riot/requirements/10b7fd9.txt b/dd-trace-py/.riot/requirements/10b7fd9.txt
similarity index 100%
rename from .riot/requirements/10b7fd9.txt
rename to dd-trace-py/.riot/requirements/10b7fd9.txt
diff --git a/.riot/requirements/10ba4fc.txt b/dd-trace-py/.riot/requirements/10ba4fc.txt
similarity index 100%
rename from .riot/requirements/10ba4fc.txt
rename to dd-trace-py/.riot/requirements/10ba4fc.txt
diff --git a/.riot/requirements/10bb064.txt b/dd-trace-py/.riot/requirements/10bb064.txt
similarity index 100%
rename from .riot/requirements/10bb064.txt
rename to dd-trace-py/.riot/requirements/10bb064.txt
diff --git a/.riot/requirements/10bb96a.txt b/dd-trace-py/.riot/requirements/10bb96a.txt
similarity index 100%
rename from .riot/requirements/10bb96a.txt
rename to dd-trace-py/.riot/requirements/10bb96a.txt
diff --git a/.riot/requirements/10bdae9.txt b/dd-trace-py/.riot/requirements/10bdae9.txt
similarity index 100%
rename from .riot/requirements/10bdae9.txt
rename to dd-trace-py/.riot/requirements/10bdae9.txt
diff --git a/.riot/requirements/10c216c.txt b/dd-trace-py/.riot/requirements/10c216c.txt
similarity index 100%
rename from .riot/requirements/10c216c.txt
rename to dd-trace-py/.riot/requirements/10c216c.txt
diff --git a/.riot/requirements/10c6e12.txt b/dd-trace-py/.riot/requirements/10c6e12.txt
similarity index 100%
rename from .riot/requirements/10c6e12.txt
rename to dd-trace-py/.riot/requirements/10c6e12.txt
diff --git a/.riot/requirements/10d1da4.txt b/dd-trace-py/.riot/requirements/10d1da4.txt
similarity index 100%
rename from .riot/requirements/10d1da4.txt
rename to dd-trace-py/.riot/requirements/10d1da4.txt
diff --git a/.riot/requirements/10d379e.txt b/dd-trace-py/.riot/requirements/10d379e.txt
similarity index 100%
rename from .riot/requirements/10d379e.txt
rename to dd-trace-py/.riot/requirements/10d379e.txt
diff --git a/.riot/requirements/10d8f51.txt b/dd-trace-py/.riot/requirements/10d8f51.txt
similarity index 100%
rename from .riot/requirements/10d8f51.txt
rename to dd-trace-py/.riot/requirements/10d8f51.txt
diff --git a/.riot/requirements/10d90c0.txt b/dd-trace-py/.riot/requirements/10d90c0.txt
similarity index 100%
rename from .riot/requirements/10d90c0.txt
rename to dd-trace-py/.riot/requirements/10d90c0.txt
diff --git a/.riot/requirements/10da678.txt b/dd-trace-py/.riot/requirements/10da678.txt
similarity index 100%
rename from .riot/requirements/10da678.txt
rename to dd-trace-py/.riot/requirements/10da678.txt
diff --git a/.riot/requirements/10ddcfd.txt b/dd-trace-py/.riot/requirements/10ddcfd.txt
similarity index 100%
rename from .riot/requirements/10ddcfd.txt
rename to dd-trace-py/.riot/requirements/10ddcfd.txt
diff --git a/.riot/requirements/10e0262.txt b/dd-trace-py/.riot/requirements/10e0262.txt
similarity index 100%
rename from .riot/requirements/10e0262.txt
rename to dd-trace-py/.riot/requirements/10e0262.txt
diff --git a/.riot/requirements/10e0b19.txt b/dd-trace-py/.riot/requirements/10e0b19.txt
similarity index 100%
rename from .riot/requirements/10e0b19.txt
rename to dd-trace-py/.riot/requirements/10e0b19.txt
diff --git a/.riot/requirements/10e0bde.txt b/dd-trace-py/.riot/requirements/10e0bde.txt
similarity index 100%
rename from .riot/requirements/10e0bde.txt
rename to dd-trace-py/.riot/requirements/10e0bde.txt
diff --git a/.riot/requirements/10e2453.txt b/dd-trace-py/.riot/requirements/10e2453.txt
similarity index 100%
rename from .riot/requirements/10e2453.txt
rename to dd-trace-py/.riot/requirements/10e2453.txt
diff --git a/.riot/requirements/10e57ab.txt b/dd-trace-py/.riot/requirements/10e57ab.txt
similarity index 100%
rename from .riot/requirements/10e57ab.txt
rename to dd-trace-py/.riot/requirements/10e57ab.txt
diff --git a/.riot/requirements/10ebbfc.txt b/dd-trace-py/.riot/requirements/10ebbfc.txt
similarity index 100%
rename from .riot/requirements/10ebbfc.txt
rename to dd-trace-py/.riot/requirements/10ebbfc.txt
diff --git a/.riot/requirements/10ed886.txt b/dd-trace-py/.riot/requirements/10ed886.txt
similarity index 100%
rename from .riot/requirements/10ed886.txt
rename to dd-trace-py/.riot/requirements/10ed886.txt
diff --git a/.riot/requirements/10f023c.txt b/dd-trace-py/.riot/requirements/10f023c.txt
similarity index 100%
rename from .riot/requirements/10f023c.txt
rename to dd-trace-py/.riot/requirements/10f023c.txt
diff --git a/.riot/requirements/10f2939.txt b/dd-trace-py/.riot/requirements/10f2939.txt
similarity index 100%
rename from .riot/requirements/10f2939.txt
rename to dd-trace-py/.riot/requirements/10f2939.txt
diff --git a/.riot/requirements/10f2f3e.txt b/dd-trace-py/.riot/requirements/10f2f3e.txt
similarity index 100%
rename from .riot/requirements/10f2f3e.txt
rename to dd-trace-py/.riot/requirements/10f2f3e.txt
diff --git a/.riot/requirements/10f565a.txt b/dd-trace-py/.riot/requirements/10f565a.txt
similarity index 100%
rename from .riot/requirements/10f565a.txt
rename to dd-trace-py/.riot/requirements/10f565a.txt
diff --git a/.riot/requirements/10f75ab.txt b/dd-trace-py/.riot/requirements/10f75ab.txt
similarity index 100%
rename from .riot/requirements/10f75ab.txt
rename to dd-trace-py/.riot/requirements/10f75ab.txt
diff --git a/.riot/requirements/10fe0d5.txt b/dd-trace-py/.riot/requirements/10fe0d5.txt
similarity index 100%
rename from .riot/requirements/10fe0d5.txt
rename to dd-trace-py/.riot/requirements/10fe0d5.txt
diff --git a/.riot/requirements/1101787.txt b/dd-trace-py/.riot/requirements/1101787.txt
similarity index 100%
rename from .riot/requirements/1101787.txt
rename to dd-trace-py/.riot/requirements/1101787.txt
diff --git a/.riot/requirements/1102e86.txt b/dd-trace-py/.riot/requirements/1102e86.txt
similarity index 100%
rename from .riot/requirements/1102e86.txt
rename to dd-trace-py/.riot/requirements/1102e86.txt
diff --git a/.riot/requirements/1107e3b.txt b/dd-trace-py/.riot/requirements/1107e3b.txt
similarity index 100%
rename from .riot/requirements/1107e3b.txt
rename to dd-trace-py/.riot/requirements/1107e3b.txt
diff --git a/.riot/requirements/1110d0c.txt b/dd-trace-py/.riot/requirements/1110d0c.txt
similarity index 100%
rename from .riot/requirements/1110d0c.txt
rename to dd-trace-py/.riot/requirements/1110d0c.txt
diff --git a/.riot/requirements/111ed90.txt b/dd-trace-py/.riot/requirements/111ed90.txt
similarity index 100%
rename from .riot/requirements/111ed90.txt
rename to dd-trace-py/.riot/requirements/111ed90.txt
diff --git a/.riot/requirements/1127dcb.txt b/dd-trace-py/.riot/requirements/1127dcb.txt
similarity index 100%
rename from .riot/requirements/1127dcb.txt
rename to dd-trace-py/.riot/requirements/1127dcb.txt
diff --git a/.riot/requirements/112b805.txt b/dd-trace-py/.riot/requirements/112b805.txt
similarity index 100%
rename from .riot/requirements/112b805.txt
rename to dd-trace-py/.riot/requirements/112b805.txt
diff --git a/.riot/requirements/112cf54.txt b/dd-trace-py/.riot/requirements/112cf54.txt
similarity index 100%
rename from .riot/requirements/112cf54.txt
rename to dd-trace-py/.riot/requirements/112cf54.txt
diff --git a/.riot/requirements/11335dd.txt b/dd-trace-py/.riot/requirements/11335dd.txt
similarity index 100%
rename from .riot/requirements/11335dd.txt
rename to dd-trace-py/.riot/requirements/11335dd.txt
diff --git a/.riot/requirements/113966a.txt b/dd-trace-py/.riot/requirements/113966a.txt
similarity index 100%
rename from .riot/requirements/113966a.txt
rename to dd-trace-py/.riot/requirements/113966a.txt
diff --git a/.riot/requirements/113ca1f.txt b/dd-trace-py/.riot/requirements/113ca1f.txt
similarity index 100%
rename from .riot/requirements/113ca1f.txt
rename to dd-trace-py/.riot/requirements/113ca1f.txt
diff --git a/.riot/requirements/1148df5.txt b/dd-trace-py/.riot/requirements/1148df5.txt
similarity index 100%
rename from .riot/requirements/1148df5.txt
rename to dd-trace-py/.riot/requirements/1148df5.txt
diff --git a/.riot/requirements/114bad8.txt b/dd-trace-py/.riot/requirements/114bad8.txt
similarity index 100%
rename from .riot/requirements/114bad8.txt
rename to dd-trace-py/.riot/requirements/114bad8.txt
diff --git a/.riot/requirements/11518a9.txt b/dd-trace-py/.riot/requirements/11518a9.txt
similarity index 100%
rename from .riot/requirements/11518a9.txt
rename to dd-trace-py/.riot/requirements/11518a9.txt
diff --git a/.riot/requirements/1151ca8.txt b/dd-trace-py/.riot/requirements/1151ca8.txt
similarity index 100%
rename from .riot/requirements/1151ca8.txt
rename to dd-trace-py/.riot/requirements/1151ca8.txt
diff --git a/.riot/requirements/115595c.txt b/dd-trace-py/.riot/requirements/115595c.txt
similarity index 100%
rename from .riot/requirements/115595c.txt
rename to dd-trace-py/.riot/requirements/115595c.txt
diff --git a/.riot/requirements/1156e38.txt b/dd-trace-py/.riot/requirements/1156e38.txt
similarity index 100%
rename from .riot/requirements/1156e38.txt
rename to dd-trace-py/.riot/requirements/1156e38.txt
diff --git a/.riot/requirements/115915a.txt b/dd-trace-py/.riot/requirements/115915a.txt
similarity index 100%
rename from .riot/requirements/115915a.txt
rename to dd-trace-py/.riot/requirements/115915a.txt
diff --git a/.riot/requirements/11594bd.txt b/dd-trace-py/.riot/requirements/11594bd.txt
similarity index 100%
rename from .riot/requirements/11594bd.txt
rename to dd-trace-py/.riot/requirements/11594bd.txt
diff --git a/.riot/requirements/1159a5a.txt b/dd-trace-py/.riot/requirements/1159a5a.txt
similarity index 100%
rename from .riot/requirements/1159a5a.txt
rename to dd-trace-py/.riot/requirements/1159a5a.txt
diff --git a/.riot/requirements/115d290.txt b/dd-trace-py/.riot/requirements/115d290.txt
similarity index 100%
rename from .riot/requirements/115d290.txt
rename to dd-trace-py/.riot/requirements/115d290.txt
diff --git a/.riot/requirements/115e19f.txt b/dd-trace-py/.riot/requirements/115e19f.txt
similarity index 100%
rename from .riot/requirements/115e19f.txt
rename to dd-trace-py/.riot/requirements/115e19f.txt
diff --git a/.riot/requirements/116a58c.txt b/dd-trace-py/.riot/requirements/116a58c.txt
similarity index 100%
rename from .riot/requirements/116a58c.txt
rename to dd-trace-py/.riot/requirements/116a58c.txt
diff --git a/.riot/requirements/116b0a1.txt b/dd-trace-py/.riot/requirements/116b0a1.txt
similarity index 100%
rename from .riot/requirements/116b0a1.txt
rename to dd-trace-py/.riot/requirements/116b0a1.txt
diff --git a/.riot/requirements/116f7b1.txt b/dd-trace-py/.riot/requirements/116f7b1.txt
similarity index 100%
rename from .riot/requirements/116f7b1.txt
rename to dd-trace-py/.riot/requirements/116f7b1.txt
diff --git a/.riot/requirements/118065f.txt b/dd-trace-py/.riot/requirements/118065f.txt
similarity index 100%
rename from .riot/requirements/118065f.txt
rename to dd-trace-py/.riot/requirements/118065f.txt
diff --git a/.riot/requirements/1182d01.txt b/dd-trace-py/.riot/requirements/1182d01.txt
similarity index 100%
rename from .riot/requirements/1182d01.txt
rename to dd-trace-py/.riot/requirements/1182d01.txt
diff --git a/.riot/requirements/1185b58.txt b/dd-trace-py/.riot/requirements/1185b58.txt
similarity index 100%
rename from .riot/requirements/1185b58.txt
rename to dd-trace-py/.riot/requirements/1185b58.txt
diff --git a/.riot/requirements/11868bf.txt b/dd-trace-py/.riot/requirements/11868bf.txt
similarity index 100%
rename from .riot/requirements/11868bf.txt
rename to dd-trace-py/.riot/requirements/11868bf.txt
diff --git a/.riot/requirements/118ddd5.txt b/dd-trace-py/.riot/requirements/118ddd5.txt
similarity index 100%
rename from .riot/requirements/118ddd5.txt
rename to dd-trace-py/.riot/requirements/118ddd5.txt
diff --git a/.riot/requirements/118f9a8.txt b/dd-trace-py/.riot/requirements/118f9a8.txt
similarity index 100%
rename from .riot/requirements/118f9a8.txt
rename to dd-trace-py/.riot/requirements/118f9a8.txt
diff --git a/.riot/requirements/118fec7.txt b/dd-trace-py/.riot/requirements/118fec7.txt
similarity index 100%
rename from .riot/requirements/118fec7.txt
rename to dd-trace-py/.riot/requirements/118fec7.txt
diff --git a/.riot/requirements/1193154.txt b/dd-trace-py/.riot/requirements/1193154.txt
similarity index 100%
rename from .riot/requirements/1193154.txt
rename to dd-trace-py/.riot/requirements/1193154.txt
diff --git a/.riot/requirements/1193aba.txt b/dd-trace-py/.riot/requirements/1193aba.txt
similarity index 100%
rename from .riot/requirements/1193aba.txt
rename to dd-trace-py/.riot/requirements/1193aba.txt
diff --git a/.riot/requirements/119431a.txt b/dd-trace-py/.riot/requirements/119431a.txt
similarity index 100%
rename from .riot/requirements/119431a.txt
rename to dd-trace-py/.riot/requirements/119431a.txt
diff --git a/.riot/requirements/1196ac3.txt b/dd-trace-py/.riot/requirements/1196ac3.txt
similarity index 100%
rename from .riot/requirements/1196ac3.txt
rename to dd-trace-py/.riot/requirements/1196ac3.txt
diff --git a/.riot/requirements/119ebc8.txt b/dd-trace-py/.riot/requirements/119ebc8.txt
similarity index 100%
rename from .riot/requirements/119ebc8.txt
rename to dd-trace-py/.riot/requirements/119ebc8.txt
diff --git a/.riot/requirements/11a0d76.txt b/dd-trace-py/.riot/requirements/11a0d76.txt
similarity index 100%
rename from .riot/requirements/11a0d76.txt
rename to dd-trace-py/.riot/requirements/11a0d76.txt
diff --git a/.riot/requirements/11ab0ab.txt b/dd-trace-py/.riot/requirements/11ab0ab.txt
similarity index 100%
rename from .riot/requirements/11ab0ab.txt
rename to dd-trace-py/.riot/requirements/11ab0ab.txt
diff --git a/.riot/requirements/11ab151.txt b/dd-trace-py/.riot/requirements/11ab151.txt
similarity index 100%
rename from .riot/requirements/11ab151.txt
rename to dd-trace-py/.riot/requirements/11ab151.txt
diff --git a/.riot/requirements/11b0623.txt b/dd-trace-py/.riot/requirements/11b0623.txt
similarity index 100%
rename from .riot/requirements/11b0623.txt
rename to dd-trace-py/.riot/requirements/11b0623.txt
diff --git a/.riot/requirements/11b45d7.txt b/dd-trace-py/.riot/requirements/11b45d7.txt
similarity index 100%
rename from .riot/requirements/11b45d7.txt
rename to dd-trace-py/.riot/requirements/11b45d7.txt
diff --git a/.riot/requirements/11b6e91.txt b/dd-trace-py/.riot/requirements/11b6e91.txt
similarity index 100%
rename from .riot/requirements/11b6e91.txt
rename to dd-trace-py/.riot/requirements/11b6e91.txt
diff --git a/.riot/requirements/11b941f.txt b/dd-trace-py/.riot/requirements/11b941f.txt
similarity index 100%
rename from .riot/requirements/11b941f.txt
rename to dd-trace-py/.riot/requirements/11b941f.txt
diff --git a/.riot/requirements/11bb2fd.txt b/dd-trace-py/.riot/requirements/11bb2fd.txt
similarity index 100%
rename from .riot/requirements/11bb2fd.txt
rename to dd-trace-py/.riot/requirements/11bb2fd.txt
diff --git a/.riot/requirements/11bd6c7.txt b/dd-trace-py/.riot/requirements/11bd6c7.txt
similarity index 100%
rename from .riot/requirements/11bd6c7.txt
rename to dd-trace-py/.riot/requirements/11bd6c7.txt
diff --git a/.riot/requirements/11c2588.txt b/dd-trace-py/.riot/requirements/11c2588.txt
similarity index 100%
rename from .riot/requirements/11c2588.txt
rename to dd-trace-py/.riot/requirements/11c2588.txt
diff --git a/.riot/requirements/11c313d.txt b/dd-trace-py/.riot/requirements/11c313d.txt
similarity index 100%
rename from .riot/requirements/11c313d.txt
rename to dd-trace-py/.riot/requirements/11c313d.txt
diff --git a/.riot/requirements/11c3907.txt b/dd-trace-py/.riot/requirements/11c3907.txt
similarity index 100%
rename from .riot/requirements/11c3907.txt
rename to dd-trace-py/.riot/requirements/11c3907.txt
diff --git a/.riot/requirements/11c7793.txt b/dd-trace-py/.riot/requirements/11c7793.txt
similarity index 100%
rename from .riot/requirements/11c7793.txt
rename to dd-trace-py/.riot/requirements/11c7793.txt
diff --git a/.riot/requirements/11c8584.txt b/dd-trace-py/.riot/requirements/11c8584.txt
similarity index 100%
rename from .riot/requirements/11c8584.txt
rename to dd-trace-py/.riot/requirements/11c8584.txt
diff --git a/.riot/requirements/11c88b9.txt b/dd-trace-py/.riot/requirements/11c88b9.txt
similarity index 100%
rename from .riot/requirements/11c88b9.txt
rename to dd-trace-py/.riot/requirements/11c88b9.txt
diff --git a/.riot/requirements/11cd1a5.txt b/dd-trace-py/.riot/requirements/11cd1a5.txt
similarity index 100%
rename from .riot/requirements/11cd1a5.txt
rename to dd-trace-py/.riot/requirements/11cd1a5.txt
diff --git a/.riot/requirements/11d1399.txt b/dd-trace-py/.riot/requirements/11d1399.txt
similarity index 100%
rename from .riot/requirements/11d1399.txt
rename to dd-trace-py/.riot/requirements/11d1399.txt
diff --git a/.riot/requirements/11d4944.txt b/dd-trace-py/.riot/requirements/11d4944.txt
similarity index 100%
rename from .riot/requirements/11d4944.txt
rename to dd-trace-py/.riot/requirements/11d4944.txt
diff --git a/.riot/requirements/11d5c8b.txt b/dd-trace-py/.riot/requirements/11d5c8b.txt
similarity index 100%
rename from .riot/requirements/11d5c8b.txt
rename to dd-trace-py/.riot/requirements/11d5c8b.txt
diff --git a/.riot/requirements/11e37fa.txt b/dd-trace-py/.riot/requirements/11e37fa.txt
similarity index 100%
rename from .riot/requirements/11e37fa.txt
rename to dd-trace-py/.riot/requirements/11e37fa.txt
diff --git a/.riot/requirements/11e4e8b.txt b/dd-trace-py/.riot/requirements/11e4e8b.txt
similarity index 100%
rename from .riot/requirements/11e4e8b.txt
rename to dd-trace-py/.riot/requirements/11e4e8b.txt
diff --git a/.riot/requirements/11e5b44.txt b/dd-trace-py/.riot/requirements/11e5b44.txt
similarity index 100%
rename from .riot/requirements/11e5b44.txt
rename to dd-trace-py/.riot/requirements/11e5b44.txt
diff --git a/.riot/requirements/11e6ad6.txt b/dd-trace-py/.riot/requirements/11e6ad6.txt
similarity index 100%
rename from .riot/requirements/11e6ad6.txt
rename to dd-trace-py/.riot/requirements/11e6ad6.txt
diff --git a/.riot/requirements/11e7bf8.txt b/dd-trace-py/.riot/requirements/11e7bf8.txt
similarity index 100%
rename from .riot/requirements/11e7bf8.txt
rename to dd-trace-py/.riot/requirements/11e7bf8.txt
diff --git a/.riot/requirements/11eae4e.txt b/dd-trace-py/.riot/requirements/11eae4e.txt
similarity index 100%
rename from .riot/requirements/11eae4e.txt
rename to dd-trace-py/.riot/requirements/11eae4e.txt
diff --git a/.riot/requirements/11edfa6.txt b/dd-trace-py/.riot/requirements/11edfa6.txt
similarity index 100%
rename from .riot/requirements/11edfa6.txt
rename to dd-trace-py/.riot/requirements/11edfa6.txt
diff --git a/.riot/requirements/11f7715.txt b/dd-trace-py/.riot/requirements/11f7715.txt
similarity index 100%
rename from .riot/requirements/11f7715.txt
rename to dd-trace-py/.riot/requirements/11f7715.txt
diff --git a/.riot/requirements/11f9495.txt b/dd-trace-py/.riot/requirements/11f9495.txt
similarity index 100%
rename from .riot/requirements/11f9495.txt
rename to dd-trace-py/.riot/requirements/11f9495.txt
diff --git a/.riot/requirements/11fd02a.txt b/dd-trace-py/.riot/requirements/11fd02a.txt
similarity index 100%
rename from .riot/requirements/11fd02a.txt
rename to dd-trace-py/.riot/requirements/11fd02a.txt
diff --git a/.riot/requirements/1204574.txt b/dd-trace-py/.riot/requirements/1204574.txt
similarity index 100%
rename from .riot/requirements/1204574.txt
rename to dd-trace-py/.riot/requirements/1204574.txt
diff --git a/.riot/requirements/1209b80.txt b/dd-trace-py/.riot/requirements/1209b80.txt
similarity index 100%
rename from .riot/requirements/1209b80.txt
rename to dd-trace-py/.riot/requirements/1209b80.txt
diff --git a/.riot/requirements/120e7d0.txt b/dd-trace-py/.riot/requirements/120e7d0.txt
similarity index 100%
rename from .riot/requirements/120e7d0.txt
rename to dd-trace-py/.riot/requirements/120e7d0.txt
diff --git a/.riot/requirements/120e7ea.txt b/dd-trace-py/.riot/requirements/120e7ea.txt
similarity index 100%
rename from .riot/requirements/120e7ea.txt
rename to dd-trace-py/.riot/requirements/120e7ea.txt
diff --git a/.riot/requirements/12113b3.txt b/dd-trace-py/.riot/requirements/12113b3.txt
similarity index 100%
rename from .riot/requirements/12113b3.txt
rename to dd-trace-py/.riot/requirements/12113b3.txt
diff --git a/.riot/requirements/1212ab8.txt b/dd-trace-py/.riot/requirements/1212ab8.txt
similarity index 100%
rename from .riot/requirements/1212ab8.txt
rename to dd-trace-py/.riot/requirements/1212ab8.txt
diff --git a/.riot/requirements/121518f.txt b/dd-trace-py/.riot/requirements/121518f.txt
similarity index 100%
rename from .riot/requirements/121518f.txt
rename to dd-trace-py/.riot/requirements/121518f.txt
diff --git a/.riot/requirements/121a519.txt b/dd-trace-py/.riot/requirements/121a519.txt
similarity index 100%
rename from .riot/requirements/121a519.txt
rename to dd-trace-py/.riot/requirements/121a519.txt
diff --git a/.riot/requirements/121fc8d.txt b/dd-trace-py/.riot/requirements/121fc8d.txt
similarity index 100%
rename from .riot/requirements/121fc8d.txt
rename to dd-trace-py/.riot/requirements/121fc8d.txt
diff --git a/.riot/requirements/1224f7d.txt b/dd-trace-py/.riot/requirements/1224f7d.txt
similarity index 100%
rename from .riot/requirements/1224f7d.txt
rename to dd-trace-py/.riot/requirements/1224f7d.txt
diff --git a/.riot/requirements/12263ee.txt b/dd-trace-py/.riot/requirements/12263ee.txt
similarity index 100%
rename from .riot/requirements/12263ee.txt
rename to dd-trace-py/.riot/requirements/12263ee.txt
diff --git a/.riot/requirements/1229e9a.txt b/dd-trace-py/.riot/requirements/1229e9a.txt
similarity index 100%
rename from .riot/requirements/1229e9a.txt
rename to dd-trace-py/.riot/requirements/1229e9a.txt
diff --git a/.riot/requirements/122cffd.txt b/dd-trace-py/.riot/requirements/122cffd.txt
similarity index 100%
rename from .riot/requirements/122cffd.txt
rename to dd-trace-py/.riot/requirements/122cffd.txt
diff --git a/.riot/requirements/122d3c5.txt b/dd-trace-py/.riot/requirements/122d3c5.txt
similarity index 100%
rename from .riot/requirements/122d3c5.txt
rename to dd-trace-py/.riot/requirements/122d3c5.txt
diff --git a/.riot/requirements/1235f1e.txt b/dd-trace-py/.riot/requirements/1235f1e.txt
similarity index 100%
rename from .riot/requirements/1235f1e.txt
rename to dd-trace-py/.riot/requirements/1235f1e.txt
diff --git a/.riot/requirements/1246b86.txt b/dd-trace-py/.riot/requirements/1246b86.txt
similarity index 100%
rename from .riot/requirements/1246b86.txt
rename to dd-trace-py/.riot/requirements/1246b86.txt
diff --git a/.riot/requirements/1246e96.txt b/dd-trace-py/.riot/requirements/1246e96.txt
similarity index 100%
rename from .riot/requirements/1246e96.txt
rename to dd-trace-py/.riot/requirements/1246e96.txt
diff --git a/.riot/requirements/124b91e.txt b/dd-trace-py/.riot/requirements/124b91e.txt
similarity index 100%
rename from .riot/requirements/124b91e.txt
rename to dd-trace-py/.riot/requirements/124b91e.txt
diff --git a/.riot/requirements/124d50b.txt b/dd-trace-py/.riot/requirements/124d50b.txt
similarity index 100%
rename from .riot/requirements/124d50b.txt
rename to dd-trace-py/.riot/requirements/124d50b.txt
diff --git a/.riot/requirements/12594bd.txt b/dd-trace-py/.riot/requirements/12594bd.txt
similarity index 100%
rename from .riot/requirements/12594bd.txt
rename to dd-trace-py/.riot/requirements/12594bd.txt
diff --git a/.riot/requirements/1260019.txt b/dd-trace-py/.riot/requirements/1260019.txt
similarity index 100%
rename from .riot/requirements/1260019.txt
rename to dd-trace-py/.riot/requirements/1260019.txt
diff --git a/.riot/requirements/12616cb.txt b/dd-trace-py/.riot/requirements/12616cb.txt
similarity index 100%
rename from .riot/requirements/12616cb.txt
rename to dd-trace-py/.riot/requirements/12616cb.txt
diff --git a/.riot/requirements/1272ddf.txt b/dd-trace-py/.riot/requirements/1272ddf.txt
similarity index 100%
rename from .riot/requirements/1272ddf.txt
rename to dd-trace-py/.riot/requirements/1272ddf.txt
diff --git a/.riot/requirements/127b67a.txt b/dd-trace-py/.riot/requirements/127b67a.txt
similarity index 100%
rename from .riot/requirements/127b67a.txt
rename to dd-trace-py/.riot/requirements/127b67a.txt
diff --git a/.riot/requirements/127eabf.txt b/dd-trace-py/.riot/requirements/127eabf.txt
similarity index 100%
rename from .riot/requirements/127eabf.txt
rename to dd-trace-py/.riot/requirements/127eabf.txt
diff --git a/.riot/requirements/127edb7.txt b/dd-trace-py/.riot/requirements/127edb7.txt
similarity index 100%
rename from .riot/requirements/127edb7.txt
rename to dd-trace-py/.riot/requirements/127edb7.txt
diff --git a/.riot/requirements/128b106.txt b/dd-trace-py/.riot/requirements/128b106.txt
similarity index 100%
rename from .riot/requirements/128b106.txt
rename to dd-trace-py/.riot/requirements/128b106.txt
diff --git a/.riot/requirements/128dc9b.txt b/dd-trace-py/.riot/requirements/128dc9b.txt
similarity index 100%
rename from .riot/requirements/128dc9b.txt
rename to dd-trace-py/.riot/requirements/128dc9b.txt
diff --git a/.riot/requirements/1290c29.txt b/dd-trace-py/.riot/requirements/1290c29.txt
similarity index 100%
rename from .riot/requirements/1290c29.txt
rename to dd-trace-py/.riot/requirements/1290c29.txt
diff --git a/.riot/requirements/12a25de.txt b/dd-trace-py/.riot/requirements/12a25de.txt
similarity index 100%
rename from .riot/requirements/12a25de.txt
rename to dd-trace-py/.riot/requirements/12a25de.txt
diff --git a/.riot/requirements/12a4316.txt b/dd-trace-py/.riot/requirements/12a4316.txt
similarity index 100%
rename from .riot/requirements/12a4316.txt
rename to dd-trace-py/.riot/requirements/12a4316.txt
diff --git a/.riot/requirements/12a51fd.txt b/dd-trace-py/.riot/requirements/12a51fd.txt
similarity index 100%
rename from .riot/requirements/12a51fd.txt
rename to dd-trace-py/.riot/requirements/12a51fd.txt
diff --git a/.riot/requirements/12aafe0.txt b/dd-trace-py/.riot/requirements/12aafe0.txt
similarity index 100%
rename from .riot/requirements/12aafe0.txt
rename to dd-trace-py/.riot/requirements/12aafe0.txt
diff --git a/.riot/requirements/12afae4.txt b/dd-trace-py/.riot/requirements/12afae4.txt
similarity index 100%
rename from .riot/requirements/12afae4.txt
rename to dd-trace-py/.riot/requirements/12afae4.txt
diff --git a/.riot/requirements/12b3167.txt b/dd-trace-py/.riot/requirements/12b3167.txt
similarity index 100%
rename from .riot/requirements/12b3167.txt
rename to dd-trace-py/.riot/requirements/12b3167.txt
diff --git a/.riot/requirements/12b9587.txt b/dd-trace-py/.riot/requirements/12b9587.txt
similarity index 100%
rename from .riot/requirements/12b9587.txt
rename to dd-trace-py/.riot/requirements/12b9587.txt
diff --git a/.riot/requirements/12b9e07.txt b/dd-trace-py/.riot/requirements/12b9e07.txt
similarity index 100%
rename from .riot/requirements/12b9e07.txt
rename to dd-trace-py/.riot/requirements/12b9e07.txt
diff --git a/.riot/requirements/12bb48f.txt b/dd-trace-py/.riot/requirements/12bb48f.txt
similarity index 100%
rename from .riot/requirements/12bb48f.txt
rename to dd-trace-py/.riot/requirements/12bb48f.txt
diff --git a/.riot/requirements/12bdba7.txt b/dd-trace-py/.riot/requirements/12bdba7.txt
similarity index 100%
rename from .riot/requirements/12bdba7.txt
rename to dd-trace-py/.riot/requirements/12bdba7.txt
diff --git a/.riot/requirements/12bf701.txt b/dd-trace-py/.riot/requirements/12bf701.txt
similarity index 100%
rename from .riot/requirements/12bf701.txt
rename to dd-trace-py/.riot/requirements/12bf701.txt
diff --git a/.riot/requirements/12c10e8.txt b/dd-trace-py/.riot/requirements/12c10e8.txt
similarity index 100%
rename from .riot/requirements/12c10e8.txt
rename to dd-trace-py/.riot/requirements/12c10e8.txt
diff --git a/.riot/requirements/12c877d.txt b/dd-trace-py/.riot/requirements/12c877d.txt
similarity index 100%
rename from .riot/requirements/12c877d.txt
rename to dd-trace-py/.riot/requirements/12c877d.txt
diff --git a/.riot/requirements/12cb0e7.txt b/dd-trace-py/.riot/requirements/12cb0e7.txt
similarity index 100%
rename from .riot/requirements/12cb0e7.txt
rename to dd-trace-py/.riot/requirements/12cb0e7.txt
diff --git a/.riot/requirements/12ce83b.txt b/dd-trace-py/.riot/requirements/12ce83b.txt
similarity index 100%
rename from .riot/requirements/12ce83b.txt
rename to dd-trace-py/.riot/requirements/12ce83b.txt
diff --git a/.riot/requirements/12cfbaa.txt b/dd-trace-py/.riot/requirements/12cfbaa.txt
similarity index 100%
rename from .riot/requirements/12cfbaa.txt
rename to dd-trace-py/.riot/requirements/12cfbaa.txt
diff --git a/.riot/requirements/12d24d7.txt b/dd-trace-py/.riot/requirements/12d24d7.txt
similarity index 100%
rename from .riot/requirements/12d24d7.txt
rename to dd-trace-py/.riot/requirements/12d24d7.txt
diff --git a/.riot/requirements/12d6455.txt b/dd-trace-py/.riot/requirements/12d6455.txt
similarity index 100%
rename from .riot/requirements/12d6455.txt
rename to dd-trace-py/.riot/requirements/12d6455.txt
diff --git a/.riot/requirements/12d6a82.txt b/dd-trace-py/.riot/requirements/12d6a82.txt
similarity index 100%
rename from .riot/requirements/12d6a82.txt
rename to dd-trace-py/.riot/requirements/12d6a82.txt
diff --git a/.riot/requirements/12dca17.txt b/dd-trace-py/.riot/requirements/12dca17.txt
similarity index 100%
rename from .riot/requirements/12dca17.txt
rename to dd-trace-py/.riot/requirements/12dca17.txt
diff --git a/.riot/requirements/12ee49d.txt b/dd-trace-py/.riot/requirements/12ee49d.txt
similarity index 100%
rename from .riot/requirements/12ee49d.txt
rename to dd-trace-py/.riot/requirements/12ee49d.txt
diff --git a/.riot/requirements/12f0825.txt b/dd-trace-py/.riot/requirements/12f0825.txt
similarity index 100%
rename from .riot/requirements/12f0825.txt
rename to dd-trace-py/.riot/requirements/12f0825.txt
diff --git a/.riot/requirements/12f38be.txt b/dd-trace-py/.riot/requirements/12f38be.txt
similarity index 100%
rename from .riot/requirements/12f38be.txt
rename to dd-trace-py/.riot/requirements/12f38be.txt
diff --git a/.riot/requirements/12f6833.txt b/dd-trace-py/.riot/requirements/12f6833.txt
similarity index 100%
rename from .riot/requirements/12f6833.txt
rename to dd-trace-py/.riot/requirements/12f6833.txt
diff --git a/.riot/requirements/1303be6.txt b/dd-trace-py/.riot/requirements/1303be6.txt
similarity index 100%
rename from .riot/requirements/1303be6.txt
rename to dd-trace-py/.riot/requirements/1303be6.txt
diff --git a/.riot/requirements/1307807.txt b/dd-trace-py/.riot/requirements/1307807.txt
similarity index 100%
rename from .riot/requirements/1307807.txt
rename to dd-trace-py/.riot/requirements/1307807.txt
diff --git a/.riot/requirements/130a7d6.txt b/dd-trace-py/.riot/requirements/130a7d6.txt
similarity index 100%
rename from .riot/requirements/130a7d6.txt
rename to dd-trace-py/.riot/requirements/130a7d6.txt
diff --git a/.riot/requirements/1315bb9.txt b/dd-trace-py/.riot/requirements/1315bb9.txt
similarity index 100%
rename from .riot/requirements/1315bb9.txt
rename to dd-trace-py/.riot/requirements/1315bb9.txt
diff --git a/.riot/requirements/1317b0e.txt b/dd-trace-py/.riot/requirements/1317b0e.txt
similarity index 100%
rename from .riot/requirements/1317b0e.txt
rename to dd-trace-py/.riot/requirements/1317b0e.txt
diff --git a/.riot/requirements/13180f0.txt b/dd-trace-py/.riot/requirements/13180f0.txt
similarity index 100%
rename from .riot/requirements/13180f0.txt
rename to dd-trace-py/.riot/requirements/13180f0.txt
diff --git a/.riot/requirements/131a701.txt b/dd-trace-py/.riot/requirements/131a701.txt
similarity index 100%
rename from .riot/requirements/131a701.txt
rename to dd-trace-py/.riot/requirements/131a701.txt
diff --git a/.riot/requirements/131fc77.txt b/dd-trace-py/.riot/requirements/131fc77.txt
similarity index 100%
rename from .riot/requirements/131fc77.txt
rename to dd-trace-py/.riot/requirements/131fc77.txt
diff --git a/.riot/requirements/132e4bd.txt b/dd-trace-py/.riot/requirements/132e4bd.txt
similarity index 100%
rename from .riot/requirements/132e4bd.txt
rename to dd-trace-py/.riot/requirements/132e4bd.txt
diff --git a/.riot/requirements/132eb35.txt b/dd-trace-py/.riot/requirements/132eb35.txt
similarity index 100%
rename from .riot/requirements/132eb35.txt
rename to dd-trace-py/.riot/requirements/132eb35.txt
diff --git a/.riot/requirements/132f162.txt b/dd-trace-py/.riot/requirements/132f162.txt
similarity index 100%
rename from .riot/requirements/132f162.txt
rename to dd-trace-py/.riot/requirements/132f162.txt
diff --git a/.riot/requirements/1330cf0.txt b/dd-trace-py/.riot/requirements/1330cf0.txt
similarity index 100%
rename from .riot/requirements/1330cf0.txt
rename to dd-trace-py/.riot/requirements/1330cf0.txt
diff --git a/.riot/requirements/1332b9d.txt b/dd-trace-py/.riot/requirements/1332b9d.txt
similarity index 100%
rename from .riot/requirements/1332b9d.txt
rename to dd-trace-py/.riot/requirements/1332b9d.txt
diff --git a/.riot/requirements/1334ad5.txt b/dd-trace-py/.riot/requirements/1334ad5.txt
similarity index 100%
rename from .riot/requirements/1334ad5.txt
rename to dd-trace-py/.riot/requirements/1334ad5.txt
diff --git a/.riot/requirements/1336cbd.txt b/dd-trace-py/.riot/requirements/1336cbd.txt
similarity index 100%
rename from .riot/requirements/1336cbd.txt
rename to dd-trace-py/.riot/requirements/1336cbd.txt
diff --git a/.riot/requirements/133c47b.txt b/dd-trace-py/.riot/requirements/133c47b.txt
similarity index 100%
rename from .riot/requirements/133c47b.txt
rename to dd-trace-py/.riot/requirements/133c47b.txt
diff --git a/.riot/requirements/13404e3.txt b/dd-trace-py/.riot/requirements/13404e3.txt
similarity index 100%
rename from .riot/requirements/13404e3.txt
rename to dd-trace-py/.riot/requirements/13404e3.txt
diff --git a/.riot/requirements/134082f.txt b/dd-trace-py/.riot/requirements/134082f.txt
similarity index 100%
rename from .riot/requirements/134082f.txt
rename to dd-trace-py/.riot/requirements/134082f.txt
diff --git a/.riot/requirements/134bcdd.txt b/dd-trace-py/.riot/requirements/134bcdd.txt
similarity index 100%
rename from .riot/requirements/134bcdd.txt
rename to dd-trace-py/.riot/requirements/134bcdd.txt
diff --git a/.riot/requirements/134deb1.txt b/dd-trace-py/.riot/requirements/134deb1.txt
similarity index 100%
rename from .riot/requirements/134deb1.txt
rename to dd-trace-py/.riot/requirements/134deb1.txt
diff --git a/.riot/requirements/1356db9.txt b/dd-trace-py/.riot/requirements/1356db9.txt
similarity index 100%
rename from .riot/requirements/1356db9.txt
rename to dd-trace-py/.riot/requirements/1356db9.txt
diff --git a/.riot/requirements/1360370.txt b/dd-trace-py/.riot/requirements/1360370.txt
similarity index 100%
rename from .riot/requirements/1360370.txt
rename to dd-trace-py/.riot/requirements/1360370.txt
diff --git a/.riot/requirements/1361e46.txt b/dd-trace-py/.riot/requirements/1361e46.txt
similarity index 100%
rename from .riot/requirements/1361e46.txt
rename to dd-trace-py/.riot/requirements/1361e46.txt
diff --git a/.riot/requirements/136293c.txt b/dd-trace-py/.riot/requirements/136293c.txt
similarity index 100%
rename from .riot/requirements/136293c.txt
rename to dd-trace-py/.riot/requirements/136293c.txt
diff --git a/.riot/requirements/136327d.txt b/dd-trace-py/.riot/requirements/136327d.txt
similarity index 100%
rename from .riot/requirements/136327d.txt
rename to dd-trace-py/.riot/requirements/136327d.txt
diff --git a/.riot/requirements/136fddd.txt b/dd-trace-py/.riot/requirements/136fddd.txt
similarity index 100%
rename from .riot/requirements/136fddd.txt
rename to dd-trace-py/.riot/requirements/136fddd.txt
diff --git a/.riot/requirements/1370206.txt b/dd-trace-py/.riot/requirements/1370206.txt
similarity index 100%
rename from .riot/requirements/1370206.txt
rename to dd-trace-py/.riot/requirements/1370206.txt
diff --git a/.riot/requirements/1373a22.txt b/dd-trace-py/.riot/requirements/1373a22.txt
similarity index 100%
rename from .riot/requirements/1373a22.txt
rename to dd-trace-py/.riot/requirements/1373a22.txt
diff --git a/.riot/requirements/1381214.txt b/dd-trace-py/.riot/requirements/1381214.txt
similarity index 100%
rename from .riot/requirements/1381214.txt
rename to dd-trace-py/.riot/requirements/1381214.txt
diff --git a/.riot/requirements/1384411.txt b/dd-trace-py/.riot/requirements/1384411.txt
similarity index 100%
rename from .riot/requirements/1384411.txt
rename to dd-trace-py/.riot/requirements/1384411.txt
diff --git a/.riot/requirements/13873ec.txt b/dd-trace-py/.riot/requirements/13873ec.txt
similarity index 100%
rename from .riot/requirements/13873ec.txt
rename to dd-trace-py/.riot/requirements/13873ec.txt
diff --git a/.riot/requirements/138c1ad.txt b/dd-trace-py/.riot/requirements/138c1ad.txt
similarity index 100%
rename from .riot/requirements/138c1ad.txt
rename to dd-trace-py/.riot/requirements/138c1ad.txt
diff --git a/.riot/requirements/1390f56.txt b/dd-trace-py/.riot/requirements/1390f56.txt
similarity index 100%
rename from .riot/requirements/1390f56.txt
rename to dd-trace-py/.riot/requirements/1390f56.txt
diff --git a/.riot/requirements/1391c58.txt b/dd-trace-py/.riot/requirements/1391c58.txt
similarity index 100%
rename from .riot/requirements/1391c58.txt
rename to dd-trace-py/.riot/requirements/1391c58.txt
diff --git a/.riot/requirements/1395a35.txt b/dd-trace-py/.riot/requirements/1395a35.txt
similarity index 100%
rename from .riot/requirements/1395a35.txt
rename to dd-trace-py/.riot/requirements/1395a35.txt
diff --git a/.riot/requirements/13991ca.txt b/dd-trace-py/.riot/requirements/13991ca.txt
similarity index 100%
rename from .riot/requirements/13991ca.txt
rename to dd-trace-py/.riot/requirements/13991ca.txt
diff --git a/.riot/requirements/13a379a.txt b/dd-trace-py/.riot/requirements/13a379a.txt
similarity index 100%
rename from .riot/requirements/13a379a.txt
rename to dd-trace-py/.riot/requirements/13a379a.txt
diff --git a/.riot/requirements/13ae267.txt b/dd-trace-py/.riot/requirements/13ae267.txt
similarity index 100%
rename from .riot/requirements/13ae267.txt
rename to dd-trace-py/.riot/requirements/13ae267.txt
diff --git a/.riot/requirements/13b8341.txt b/dd-trace-py/.riot/requirements/13b8341.txt
similarity index 100%
rename from .riot/requirements/13b8341.txt
rename to dd-trace-py/.riot/requirements/13b8341.txt
diff --git a/.riot/requirements/13c0fff.txt b/dd-trace-py/.riot/requirements/13c0fff.txt
similarity index 100%
rename from .riot/requirements/13c0fff.txt
rename to dd-trace-py/.riot/requirements/13c0fff.txt
diff --git a/.riot/requirements/13c4b39.txt b/dd-trace-py/.riot/requirements/13c4b39.txt
similarity index 100%
rename from .riot/requirements/13c4b39.txt
rename to dd-trace-py/.riot/requirements/13c4b39.txt
diff --git a/.riot/requirements/13cd3bb.txt b/dd-trace-py/.riot/requirements/13cd3bb.txt
similarity index 100%
rename from .riot/requirements/13cd3bb.txt
rename to dd-trace-py/.riot/requirements/13cd3bb.txt
diff --git a/.riot/requirements/13cf9b7.txt b/dd-trace-py/.riot/requirements/13cf9b7.txt
similarity index 100%
rename from .riot/requirements/13cf9b7.txt
rename to dd-trace-py/.riot/requirements/13cf9b7.txt
diff --git a/.riot/requirements/13de08c.txt b/dd-trace-py/.riot/requirements/13de08c.txt
similarity index 100%
rename from .riot/requirements/13de08c.txt
rename to dd-trace-py/.riot/requirements/13de08c.txt
diff --git a/.riot/requirements/13e0d21.txt b/dd-trace-py/.riot/requirements/13e0d21.txt
similarity index 100%
rename from .riot/requirements/13e0d21.txt
rename to dd-trace-py/.riot/requirements/13e0d21.txt
diff --git a/.riot/requirements/13ee970.txt b/dd-trace-py/.riot/requirements/13ee970.txt
similarity index 100%
rename from .riot/requirements/13ee970.txt
rename to dd-trace-py/.riot/requirements/13ee970.txt
diff --git a/.riot/requirements/13f9d79.txt b/dd-trace-py/.riot/requirements/13f9d79.txt
similarity index 100%
rename from .riot/requirements/13f9d79.txt
rename to dd-trace-py/.riot/requirements/13f9d79.txt
diff --git a/.riot/requirements/13fe884.txt b/dd-trace-py/.riot/requirements/13fe884.txt
similarity index 100%
rename from .riot/requirements/13fe884.txt
rename to dd-trace-py/.riot/requirements/13fe884.txt
diff --git a/.riot/requirements/1407476.txt b/dd-trace-py/.riot/requirements/1407476.txt
similarity index 100%
rename from .riot/requirements/1407476.txt
rename to dd-trace-py/.riot/requirements/1407476.txt
diff --git a/.riot/requirements/140ce37.txt b/dd-trace-py/.riot/requirements/140ce37.txt
similarity index 100%
rename from .riot/requirements/140ce37.txt
rename to dd-trace-py/.riot/requirements/140ce37.txt
diff --git a/.riot/requirements/14116fa.txt b/dd-trace-py/.riot/requirements/14116fa.txt
similarity index 100%
rename from .riot/requirements/14116fa.txt
rename to dd-trace-py/.riot/requirements/14116fa.txt
diff --git a/.riot/requirements/1418434.txt b/dd-trace-py/.riot/requirements/1418434.txt
similarity index 100%
rename from .riot/requirements/1418434.txt
rename to dd-trace-py/.riot/requirements/1418434.txt
diff --git a/.riot/requirements/142ded7.txt b/dd-trace-py/.riot/requirements/142ded7.txt
similarity index 100%
rename from .riot/requirements/142ded7.txt
rename to dd-trace-py/.riot/requirements/142ded7.txt
diff --git a/.riot/requirements/142fb86.txt b/dd-trace-py/.riot/requirements/142fb86.txt
similarity index 100%
rename from .riot/requirements/142fb86.txt
rename to dd-trace-py/.riot/requirements/142fb86.txt
diff --git a/.riot/requirements/14305cf.txt b/dd-trace-py/.riot/requirements/14305cf.txt
similarity index 100%
rename from .riot/requirements/14305cf.txt
rename to dd-trace-py/.riot/requirements/14305cf.txt
diff --git a/.riot/requirements/1431337.txt b/dd-trace-py/.riot/requirements/1431337.txt
similarity index 100%
rename from .riot/requirements/1431337.txt
rename to dd-trace-py/.riot/requirements/1431337.txt
diff --git a/.riot/requirements/1435097.txt b/dd-trace-py/.riot/requirements/1435097.txt
similarity index 100%
rename from .riot/requirements/1435097.txt
rename to dd-trace-py/.riot/requirements/1435097.txt
diff --git a/.riot/requirements/1436100.txt b/dd-trace-py/.riot/requirements/1436100.txt
similarity index 100%
rename from .riot/requirements/1436100.txt
rename to dd-trace-py/.riot/requirements/1436100.txt
diff --git a/.riot/requirements/1437520.txt b/dd-trace-py/.riot/requirements/1437520.txt
similarity index 100%
rename from .riot/requirements/1437520.txt
rename to dd-trace-py/.riot/requirements/1437520.txt
diff --git a/.riot/requirements/1441a01.txt b/dd-trace-py/.riot/requirements/1441a01.txt
similarity index 100%
rename from .riot/requirements/1441a01.txt
rename to dd-trace-py/.riot/requirements/1441a01.txt
diff --git a/.riot/requirements/1443b2d.txt b/dd-trace-py/.riot/requirements/1443b2d.txt
similarity index 100%
rename from .riot/requirements/1443b2d.txt
rename to dd-trace-py/.riot/requirements/1443b2d.txt
diff --git a/.riot/requirements/144e8b5.txt b/dd-trace-py/.riot/requirements/144e8b5.txt
similarity index 100%
rename from .riot/requirements/144e8b5.txt
rename to dd-trace-py/.riot/requirements/144e8b5.txt
diff --git a/.riot/requirements/1458d7e.txt b/dd-trace-py/.riot/requirements/1458d7e.txt
similarity index 100%
rename from .riot/requirements/1458d7e.txt
rename to dd-trace-py/.riot/requirements/1458d7e.txt
diff --git a/.riot/requirements/145ed9e.txt b/dd-trace-py/.riot/requirements/145ed9e.txt
similarity index 100%
rename from .riot/requirements/145ed9e.txt
rename to dd-trace-py/.riot/requirements/145ed9e.txt
diff --git a/.riot/requirements/145f918.txt b/dd-trace-py/.riot/requirements/145f918.txt
similarity index 100%
rename from .riot/requirements/145f918.txt
rename to dd-trace-py/.riot/requirements/145f918.txt
diff --git a/.riot/requirements/1463930.txt b/dd-trace-py/.riot/requirements/1463930.txt
similarity index 100%
rename from .riot/requirements/1463930.txt
rename to dd-trace-py/.riot/requirements/1463930.txt
diff --git a/.riot/requirements/1469bae.txt b/dd-trace-py/.riot/requirements/1469bae.txt
similarity index 100%
rename from .riot/requirements/1469bae.txt
rename to dd-trace-py/.riot/requirements/1469bae.txt
diff --git a/.riot/requirements/146f136.txt b/dd-trace-py/.riot/requirements/146f136.txt
similarity index 100%
rename from .riot/requirements/146f136.txt
rename to dd-trace-py/.riot/requirements/146f136.txt
diff --git a/.riot/requirements/1475020.txt b/dd-trace-py/.riot/requirements/1475020.txt
similarity index 100%
rename from .riot/requirements/1475020.txt
rename to dd-trace-py/.riot/requirements/1475020.txt
diff --git a/.riot/requirements/1475c1a.txt b/dd-trace-py/.riot/requirements/1475c1a.txt
similarity index 100%
rename from .riot/requirements/1475c1a.txt
rename to dd-trace-py/.riot/requirements/1475c1a.txt
diff --git a/.riot/requirements/1477633.txt b/dd-trace-py/.riot/requirements/1477633.txt
similarity index 100%
rename from .riot/requirements/1477633.txt
rename to dd-trace-py/.riot/requirements/1477633.txt
diff --git a/.riot/requirements/147a89a.txt b/dd-trace-py/.riot/requirements/147a89a.txt
similarity index 100%
rename from .riot/requirements/147a89a.txt
rename to dd-trace-py/.riot/requirements/147a89a.txt
diff --git a/.riot/requirements/147bedb.txt b/dd-trace-py/.riot/requirements/147bedb.txt
similarity index 100%
rename from .riot/requirements/147bedb.txt
rename to dd-trace-py/.riot/requirements/147bedb.txt
diff --git a/.riot/requirements/14859e9.txt b/dd-trace-py/.riot/requirements/14859e9.txt
similarity index 100%
rename from .riot/requirements/14859e9.txt
rename to dd-trace-py/.riot/requirements/14859e9.txt
diff --git a/.riot/requirements/148bd89.txt b/dd-trace-py/.riot/requirements/148bd89.txt
similarity index 100%
rename from .riot/requirements/148bd89.txt
rename to dd-trace-py/.riot/requirements/148bd89.txt
diff --git a/.riot/requirements/148c37a.txt b/dd-trace-py/.riot/requirements/148c37a.txt
similarity index 100%
rename from .riot/requirements/148c37a.txt
rename to dd-trace-py/.riot/requirements/148c37a.txt
diff --git a/.riot/requirements/148cc44.txt b/dd-trace-py/.riot/requirements/148cc44.txt
similarity index 100%
rename from .riot/requirements/148cc44.txt
rename to dd-trace-py/.riot/requirements/148cc44.txt
diff --git a/.riot/requirements/1498512.txt b/dd-trace-py/.riot/requirements/1498512.txt
similarity index 100%
rename from .riot/requirements/1498512.txt
rename to dd-trace-py/.riot/requirements/1498512.txt
diff --git a/.riot/requirements/149bd30.txt b/dd-trace-py/.riot/requirements/149bd30.txt
similarity index 100%
rename from .riot/requirements/149bd30.txt
rename to dd-trace-py/.riot/requirements/149bd30.txt
diff --git a/.riot/requirements/14a5b18.txt b/dd-trace-py/.riot/requirements/14a5b18.txt
similarity index 100%
rename from .riot/requirements/14a5b18.txt
rename to dd-trace-py/.riot/requirements/14a5b18.txt
diff --git a/.riot/requirements/14aa6df.txt b/dd-trace-py/.riot/requirements/14aa6df.txt
similarity index 100%
rename from .riot/requirements/14aa6df.txt
rename to dd-trace-py/.riot/requirements/14aa6df.txt
diff --git a/.riot/requirements/14b461b.txt b/dd-trace-py/.riot/requirements/14b461b.txt
similarity index 100%
rename from .riot/requirements/14b461b.txt
rename to dd-trace-py/.riot/requirements/14b461b.txt
diff --git a/.riot/requirements/14b54db.txt b/dd-trace-py/.riot/requirements/14b54db.txt
similarity index 100%
rename from .riot/requirements/14b54db.txt
rename to dd-trace-py/.riot/requirements/14b54db.txt
diff --git a/.riot/requirements/14b9202.txt b/dd-trace-py/.riot/requirements/14b9202.txt
similarity index 100%
rename from .riot/requirements/14b9202.txt
rename to dd-trace-py/.riot/requirements/14b9202.txt
diff --git a/.riot/requirements/14bb28e.txt b/dd-trace-py/.riot/requirements/14bb28e.txt
similarity index 100%
rename from .riot/requirements/14bb28e.txt
rename to dd-trace-py/.riot/requirements/14bb28e.txt
diff --git a/.riot/requirements/14be2f6.txt b/dd-trace-py/.riot/requirements/14be2f6.txt
similarity index 100%
rename from .riot/requirements/14be2f6.txt
rename to dd-trace-py/.riot/requirements/14be2f6.txt
diff --git a/.riot/requirements/14c34e9.txt b/dd-trace-py/.riot/requirements/14c34e9.txt
similarity index 100%
rename from .riot/requirements/14c34e9.txt
rename to dd-trace-py/.riot/requirements/14c34e9.txt
diff --git a/.riot/requirements/14c793e.txt b/dd-trace-py/.riot/requirements/14c793e.txt
similarity index 100%
rename from .riot/requirements/14c793e.txt
rename to dd-trace-py/.riot/requirements/14c793e.txt
diff --git a/.riot/requirements/14c9053.txt b/dd-trace-py/.riot/requirements/14c9053.txt
similarity index 100%
rename from .riot/requirements/14c9053.txt
rename to dd-trace-py/.riot/requirements/14c9053.txt
diff --git a/.riot/requirements/14cbe98.txt b/dd-trace-py/.riot/requirements/14cbe98.txt
similarity index 100%
rename from .riot/requirements/14cbe98.txt
rename to dd-trace-py/.riot/requirements/14cbe98.txt
diff --git a/.riot/requirements/14cfe2e.txt b/dd-trace-py/.riot/requirements/14cfe2e.txt
similarity index 100%
rename from .riot/requirements/14cfe2e.txt
rename to dd-trace-py/.riot/requirements/14cfe2e.txt
diff --git a/.riot/requirements/14d5c18.txt b/dd-trace-py/.riot/requirements/14d5c18.txt
similarity index 100%
rename from .riot/requirements/14d5c18.txt
rename to dd-trace-py/.riot/requirements/14d5c18.txt
diff --git a/.riot/requirements/14d6531.txt b/dd-trace-py/.riot/requirements/14d6531.txt
similarity index 100%
rename from .riot/requirements/14d6531.txt
rename to dd-trace-py/.riot/requirements/14d6531.txt
diff --git a/.riot/requirements/14d8da4.txt b/dd-trace-py/.riot/requirements/14d8da4.txt
similarity index 100%
rename from .riot/requirements/14d8da4.txt
rename to dd-trace-py/.riot/requirements/14d8da4.txt
diff --git a/.riot/requirements/14e26cb.txt b/dd-trace-py/.riot/requirements/14e26cb.txt
similarity index 100%
rename from .riot/requirements/14e26cb.txt
rename to dd-trace-py/.riot/requirements/14e26cb.txt
diff --git a/.riot/requirements/14e3100.txt b/dd-trace-py/.riot/requirements/14e3100.txt
similarity index 100%
rename from .riot/requirements/14e3100.txt
rename to dd-trace-py/.riot/requirements/14e3100.txt
diff --git a/.riot/requirements/14e5fc5.txt b/dd-trace-py/.riot/requirements/14e5fc5.txt
similarity index 100%
rename from .riot/requirements/14e5fc5.txt
rename to dd-trace-py/.riot/requirements/14e5fc5.txt
diff --git a/.riot/requirements/14e7a10.txt b/dd-trace-py/.riot/requirements/14e7a10.txt
similarity index 100%
rename from .riot/requirements/14e7a10.txt
rename to dd-trace-py/.riot/requirements/14e7a10.txt
diff --git a/.riot/requirements/14ebf3b.txt b/dd-trace-py/.riot/requirements/14ebf3b.txt
similarity index 100%
rename from .riot/requirements/14ebf3b.txt
rename to dd-trace-py/.riot/requirements/14ebf3b.txt
diff --git a/.riot/requirements/14f0a7d.txt b/dd-trace-py/.riot/requirements/14f0a7d.txt
similarity index 100%
rename from .riot/requirements/14f0a7d.txt
rename to dd-trace-py/.riot/requirements/14f0a7d.txt
diff --git a/.riot/requirements/14f1594.txt b/dd-trace-py/.riot/requirements/14f1594.txt
similarity index 100%
rename from .riot/requirements/14f1594.txt
rename to dd-trace-py/.riot/requirements/14f1594.txt
diff --git a/.riot/requirements/14fc413.txt b/dd-trace-py/.riot/requirements/14fc413.txt
similarity index 100%
rename from .riot/requirements/14fc413.txt
rename to dd-trace-py/.riot/requirements/14fc413.txt
diff --git a/.riot/requirements/14fceda.txt b/dd-trace-py/.riot/requirements/14fceda.txt
similarity index 100%
rename from .riot/requirements/14fceda.txt
rename to dd-trace-py/.riot/requirements/14fceda.txt
diff --git a/.riot/requirements/1504e4c.txt b/dd-trace-py/.riot/requirements/1504e4c.txt
similarity index 100%
rename from .riot/requirements/1504e4c.txt
rename to dd-trace-py/.riot/requirements/1504e4c.txt
diff --git a/.riot/requirements/1509aa1.txt b/dd-trace-py/.riot/requirements/1509aa1.txt
similarity index 100%
rename from .riot/requirements/1509aa1.txt
rename to dd-trace-py/.riot/requirements/1509aa1.txt
diff --git a/.riot/requirements/150beac.txt b/dd-trace-py/.riot/requirements/150beac.txt
similarity index 100%
rename from .riot/requirements/150beac.txt
rename to dd-trace-py/.riot/requirements/150beac.txt
diff --git a/.riot/requirements/151f23f.txt b/dd-trace-py/.riot/requirements/151f23f.txt
similarity index 100%
rename from .riot/requirements/151f23f.txt
rename to dd-trace-py/.riot/requirements/151f23f.txt
diff --git a/.riot/requirements/1522dd0.txt b/dd-trace-py/.riot/requirements/1522dd0.txt
similarity index 100%
rename from .riot/requirements/1522dd0.txt
rename to dd-trace-py/.riot/requirements/1522dd0.txt
diff --git a/.riot/requirements/1528286.txt b/dd-trace-py/.riot/requirements/1528286.txt
similarity index 100%
rename from .riot/requirements/1528286.txt
rename to dd-trace-py/.riot/requirements/1528286.txt
diff --git a/.riot/requirements/152e97f.txt b/dd-trace-py/.riot/requirements/152e97f.txt
similarity index 100%
rename from .riot/requirements/152e97f.txt
rename to dd-trace-py/.riot/requirements/152e97f.txt
diff --git a/.riot/requirements/1531241.txt b/dd-trace-py/.riot/requirements/1531241.txt
similarity index 100%
rename from .riot/requirements/1531241.txt
rename to dd-trace-py/.riot/requirements/1531241.txt
diff --git a/.riot/requirements/1532cbc.txt b/dd-trace-py/.riot/requirements/1532cbc.txt
similarity index 100%
rename from .riot/requirements/1532cbc.txt
rename to dd-trace-py/.riot/requirements/1532cbc.txt
diff --git a/.riot/requirements/153586b.txt b/dd-trace-py/.riot/requirements/153586b.txt
similarity index 100%
rename from .riot/requirements/153586b.txt
rename to dd-trace-py/.riot/requirements/153586b.txt
diff --git a/.riot/requirements/153608c.txt b/dd-trace-py/.riot/requirements/153608c.txt
similarity index 100%
rename from .riot/requirements/153608c.txt
rename to dd-trace-py/.riot/requirements/153608c.txt
diff --git a/.riot/requirements/1538bcb.txt b/dd-trace-py/.riot/requirements/1538bcb.txt
similarity index 100%
rename from .riot/requirements/1538bcb.txt
rename to dd-trace-py/.riot/requirements/1538bcb.txt
diff --git a/.riot/requirements/153b471.txt b/dd-trace-py/.riot/requirements/153b471.txt
similarity index 100%
rename from .riot/requirements/153b471.txt
rename to dd-trace-py/.riot/requirements/153b471.txt
diff --git a/.riot/requirements/153fe56.txt b/dd-trace-py/.riot/requirements/153fe56.txt
similarity index 100%
rename from .riot/requirements/153fe56.txt
rename to dd-trace-py/.riot/requirements/153fe56.txt
diff --git a/.riot/requirements/1540c33.txt b/dd-trace-py/.riot/requirements/1540c33.txt
similarity index 100%
rename from .riot/requirements/1540c33.txt
rename to dd-trace-py/.riot/requirements/1540c33.txt
diff --git a/.riot/requirements/1544047.txt b/dd-trace-py/.riot/requirements/1544047.txt
similarity index 100%
rename from .riot/requirements/1544047.txt
rename to dd-trace-py/.riot/requirements/1544047.txt
diff --git a/.riot/requirements/1544815.txt b/dd-trace-py/.riot/requirements/1544815.txt
similarity index 100%
rename from .riot/requirements/1544815.txt
rename to dd-trace-py/.riot/requirements/1544815.txt
diff --git a/.riot/requirements/1547cc9.txt b/dd-trace-py/.riot/requirements/1547cc9.txt
similarity index 100%
rename from .riot/requirements/1547cc9.txt
rename to dd-trace-py/.riot/requirements/1547cc9.txt
diff --git a/.riot/requirements/15558e4.txt b/dd-trace-py/.riot/requirements/15558e4.txt
similarity index 100%
rename from .riot/requirements/15558e4.txt
rename to dd-trace-py/.riot/requirements/15558e4.txt
diff --git a/.riot/requirements/1558546.txt b/dd-trace-py/.riot/requirements/1558546.txt
similarity index 100%
rename from .riot/requirements/1558546.txt
rename to dd-trace-py/.riot/requirements/1558546.txt
diff --git a/.riot/requirements/1560cbf.txt b/dd-trace-py/.riot/requirements/1560cbf.txt
similarity index 100%
rename from .riot/requirements/1560cbf.txt
rename to dd-trace-py/.riot/requirements/1560cbf.txt
diff --git a/.riot/requirements/1560cda.txt b/dd-trace-py/.riot/requirements/1560cda.txt
similarity index 100%
rename from .riot/requirements/1560cda.txt
rename to dd-trace-py/.riot/requirements/1560cda.txt
diff --git a/.riot/requirements/1564dd5.txt b/dd-trace-py/.riot/requirements/1564dd5.txt
similarity index 100%
rename from .riot/requirements/1564dd5.txt
rename to dd-trace-py/.riot/requirements/1564dd5.txt
diff --git a/.riot/requirements/1565727.txt b/dd-trace-py/.riot/requirements/1565727.txt
similarity index 100%
rename from .riot/requirements/1565727.txt
rename to dd-trace-py/.riot/requirements/1565727.txt
diff --git a/.riot/requirements/1567689.txt b/dd-trace-py/.riot/requirements/1567689.txt
similarity index 100%
rename from .riot/requirements/1567689.txt
rename to dd-trace-py/.riot/requirements/1567689.txt
diff --git a/.riot/requirements/15770fa.txt b/dd-trace-py/.riot/requirements/15770fa.txt
similarity index 100%
rename from .riot/requirements/15770fa.txt
rename to dd-trace-py/.riot/requirements/15770fa.txt
diff --git a/.riot/requirements/1577306.txt b/dd-trace-py/.riot/requirements/1577306.txt
similarity index 100%
rename from .riot/requirements/1577306.txt
rename to dd-trace-py/.riot/requirements/1577306.txt
diff --git a/.riot/requirements/157ee7b.txt b/dd-trace-py/.riot/requirements/157ee7b.txt
similarity index 100%
rename from .riot/requirements/157ee7b.txt
rename to dd-trace-py/.riot/requirements/157ee7b.txt
diff --git a/.riot/requirements/157ef2b.txt b/dd-trace-py/.riot/requirements/157ef2b.txt
similarity index 100%
rename from .riot/requirements/157ef2b.txt
rename to dd-trace-py/.riot/requirements/157ef2b.txt
diff --git a/.riot/requirements/1581ea5.txt b/dd-trace-py/.riot/requirements/1581ea5.txt
similarity index 100%
rename from .riot/requirements/1581ea5.txt
rename to dd-trace-py/.riot/requirements/1581ea5.txt
diff --git a/.riot/requirements/1586b69.txt b/dd-trace-py/.riot/requirements/1586b69.txt
similarity index 100%
rename from .riot/requirements/1586b69.txt
rename to dd-trace-py/.riot/requirements/1586b69.txt
diff --git a/.riot/requirements/1588200.txt b/dd-trace-py/.riot/requirements/1588200.txt
similarity index 100%
rename from .riot/requirements/1588200.txt
rename to dd-trace-py/.riot/requirements/1588200.txt
diff --git a/.riot/requirements/158b41a.txt b/dd-trace-py/.riot/requirements/158b41a.txt
similarity index 100%
rename from .riot/requirements/158b41a.txt
rename to dd-trace-py/.riot/requirements/158b41a.txt
diff --git a/.riot/requirements/158be47.txt b/dd-trace-py/.riot/requirements/158be47.txt
similarity index 100%
rename from .riot/requirements/158be47.txt
rename to dd-trace-py/.riot/requirements/158be47.txt
diff --git a/.riot/requirements/1591bf5.txt b/dd-trace-py/.riot/requirements/1591bf5.txt
similarity index 100%
rename from .riot/requirements/1591bf5.txt
rename to dd-trace-py/.riot/requirements/1591bf5.txt
diff --git a/.riot/requirements/1591c59.txt b/dd-trace-py/.riot/requirements/1591c59.txt
similarity index 100%
rename from .riot/requirements/1591c59.txt
rename to dd-trace-py/.riot/requirements/1591c59.txt
diff --git a/.riot/requirements/1592050.txt b/dd-trace-py/.riot/requirements/1592050.txt
similarity index 100%
rename from .riot/requirements/1592050.txt
rename to dd-trace-py/.riot/requirements/1592050.txt
diff --git a/.riot/requirements/159a2a4.txt b/dd-trace-py/.riot/requirements/159a2a4.txt
similarity index 100%
rename from .riot/requirements/159a2a4.txt
rename to dd-trace-py/.riot/requirements/159a2a4.txt
diff --git a/.riot/requirements/15a365d.txt b/dd-trace-py/.riot/requirements/15a365d.txt
similarity index 100%
rename from .riot/requirements/15a365d.txt
rename to dd-trace-py/.riot/requirements/15a365d.txt
diff --git a/.riot/requirements/15a503b.txt b/dd-trace-py/.riot/requirements/15a503b.txt
similarity index 100%
rename from .riot/requirements/15a503b.txt
rename to dd-trace-py/.riot/requirements/15a503b.txt
diff --git a/.riot/requirements/15a8df6.txt b/dd-trace-py/.riot/requirements/15a8df6.txt
similarity index 100%
rename from .riot/requirements/15a8df6.txt
rename to dd-trace-py/.riot/requirements/15a8df6.txt
diff --git a/.riot/requirements/15adb8d.txt b/dd-trace-py/.riot/requirements/15adb8d.txt
similarity index 100%
rename from .riot/requirements/15adb8d.txt
rename to dd-trace-py/.riot/requirements/15adb8d.txt
diff --git a/.riot/requirements/15afa58.txt b/dd-trace-py/.riot/requirements/15afa58.txt
similarity index 100%
rename from .riot/requirements/15afa58.txt
rename to dd-trace-py/.riot/requirements/15afa58.txt
diff --git a/.riot/requirements/15b093e.txt b/dd-trace-py/.riot/requirements/15b093e.txt
similarity index 100%
rename from .riot/requirements/15b093e.txt
rename to dd-trace-py/.riot/requirements/15b093e.txt
diff --git a/.riot/requirements/15b58f8.txt b/dd-trace-py/.riot/requirements/15b58f8.txt
similarity index 100%
rename from .riot/requirements/15b58f8.txt
rename to dd-trace-py/.riot/requirements/15b58f8.txt
diff --git a/.riot/requirements/15b8c41.txt b/dd-trace-py/.riot/requirements/15b8c41.txt
similarity index 100%
rename from .riot/requirements/15b8c41.txt
rename to dd-trace-py/.riot/requirements/15b8c41.txt
diff --git a/.riot/requirements/15cab00.txt b/dd-trace-py/.riot/requirements/15cab00.txt
similarity index 100%
rename from .riot/requirements/15cab00.txt
rename to dd-trace-py/.riot/requirements/15cab00.txt
diff --git a/.riot/requirements/15cc9b9.txt b/dd-trace-py/.riot/requirements/15cc9b9.txt
similarity index 100%
rename from .riot/requirements/15cc9b9.txt
rename to dd-trace-py/.riot/requirements/15cc9b9.txt
diff --git a/.riot/requirements/15db176.txt b/dd-trace-py/.riot/requirements/15db176.txt
similarity index 100%
rename from .riot/requirements/15db176.txt
rename to dd-trace-py/.riot/requirements/15db176.txt
diff --git a/.riot/requirements/15dee3b.txt b/dd-trace-py/.riot/requirements/15dee3b.txt
similarity index 100%
rename from .riot/requirements/15dee3b.txt
rename to dd-trace-py/.riot/requirements/15dee3b.txt
diff --git a/.riot/requirements/15e6955.txt b/dd-trace-py/.riot/requirements/15e6955.txt
similarity index 100%
rename from .riot/requirements/15e6955.txt
rename to dd-trace-py/.riot/requirements/15e6955.txt
diff --git a/.riot/requirements/15e7251.txt b/dd-trace-py/.riot/requirements/15e7251.txt
similarity index 100%
rename from .riot/requirements/15e7251.txt
rename to dd-trace-py/.riot/requirements/15e7251.txt
diff --git a/.riot/requirements/15e76f9.txt b/dd-trace-py/.riot/requirements/15e76f9.txt
similarity index 100%
rename from .riot/requirements/15e76f9.txt
rename to dd-trace-py/.riot/requirements/15e76f9.txt
diff --git a/.riot/requirements/15eae35.txt b/dd-trace-py/.riot/requirements/15eae35.txt
similarity index 100%
rename from .riot/requirements/15eae35.txt
rename to dd-trace-py/.riot/requirements/15eae35.txt
diff --git a/.riot/requirements/15fbf61.txt b/dd-trace-py/.riot/requirements/15fbf61.txt
similarity index 100%
rename from .riot/requirements/15fbf61.txt
rename to dd-trace-py/.riot/requirements/15fbf61.txt
diff --git a/.riot/requirements/15fd7ec.txt b/dd-trace-py/.riot/requirements/15fd7ec.txt
similarity index 100%
rename from .riot/requirements/15fd7ec.txt
rename to dd-trace-py/.riot/requirements/15fd7ec.txt
diff --git a/.riot/requirements/15fec28.txt b/dd-trace-py/.riot/requirements/15fec28.txt
similarity index 100%
rename from .riot/requirements/15fec28.txt
rename to dd-trace-py/.riot/requirements/15fec28.txt
diff --git a/.riot/requirements/1602479.txt b/dd-trace-py/.riot/requirements/1602479.txt
similarity index 100%
rename from .riot/requirements/1602479.txt
rename to dd-trace-py/.riot/requirements/1602479.txt
diff --git a/.riot/requirements/16054bb.txt b/dd-trace-py/.riot/requirements/16054bb.txt
similarity index 100%
rename from .riot/requirements/16054bb.txt
rename to dd-trace-py/.riot/requirements/16054bb.txt
diff --git a/.riot/requirements/1609bd2.txt b/dd-trace-py/.riot/requirements/1609bd2.txt
similarity index 100%
rename from .riot/requirements/1609bd2.txt
rename to dd-trace-py/.riot/requirements/1609bd2.txt
diff --git a/.riot/requirements/160bd16.txt b/dd-trace-py/.riot/requirements/160bd16.txt
similarity index 100%
rename from .riot/requirements/160bd16.txt
rename to dd-trace-py/.riot/requirements/160bd16.txt
diff --git a/.riot/requirements/160ea38.txt b/dd-trace-py/.riot/requirements/160ea38.txt
similarity index 100%
rename from .riot/requirements/160ea38.txt
rename to dd-trace-py/.riot/requirements/160ea38.txt
diff --git a/.riot/requirements/1611a53.txt b/dd-trace-py/.riot/requirements/1611a53.txt
similarity index 100%
rename from .riot/requirements/1611a53.txt
rename to dd-trace-py/.riot/requirements/1611a53.txt
diff --git a/.riot/requirements/16138c7.txt b/dd-trace-py/.riot/requirements/16138c7.txt
similarity index 100%
rename from .riot/requirements/16138c7.txt
rename to dd-trace-py/.riot/requirements/16138c7.txt
diff --git a/.riot/requirements/161aef0.txt b/dd-trace-py/.riot/requirements/161aef0.txt
similarity index 100%
rename from .riot/requirements/161aef0.txt
rename to dd-trace-py/.riot/requirements/161aef0.txt
diff --git a/.riot/requirements/161b2ce.txt b/dd-trace-py/.riot/requirements/161b2ce.txt
similarity index 100%
rename from .riot/requirements/161b2ce.txt
rename to dd-trace-py/.riot/requirements/161b2ce.txt
diff --git a/.riot/requirements/161f1c8.txt b/dd-trace-py/.riot/requirements/161f1c8.txt
similarity index 100%
rename from .riot/requirements/161f1c8.txt
rename to dd-trace-py/.riot/requirements/161f1c8.txt
diff --git a/.riot/requirements/1622fff.txt b/dd-trace-py/.riot/requirements/1622fff.txt
similarity index 100%
rename from .riot/requirements/1622fff.txt
rename to dd-trace-py/.riot/requirements/1622fff.txt
diff --git a/.riot/requirements/16250bb.txt b/dd-trace-py/.riot/requirements/16250bb.txt
similarity index 100%
rename from .riot/requirements/16250bb.txt
rename to dd-trace-py/.riot/requirements/16250bb.txt
diff --git a/.riot/requirements/1626f45.txt b/dd-trace-py/.riot/requirements/1626f45.txt
similarity index 100%
rename from .riot/requirements/1626f45.txt
rename to dd-trace-py/.riot/requirements/1626f45.txt
diff --git a/.riot/requirements/162b59e.txt b/dd-trace-py/.riot/requirements/162b59e.txt
similarity index 100%
rename from .riot/requirements/162b59e.txt
rename to dd-trace-py/.riot/requirements/162b59e.txt
diff --git a/.riot/requirements/162cf2e.txt b/dd-trace-py/.riot/requirements/162cf2e.txt
similarity index 100%
rename from .riot/requirements/162cf2e.txt
rename to dd-trace-py/.riot/requirements/162cf2e.txt
diff --git a/.riot/requirements/162f3ce.txt b/dd-trace-py/.riot/requirements/162f3ce.txt
similarity index 100%
rename from .riot/requirements/162f3ce.txt
rename to dd-trace-py/.riot/requirements/162f3ce.txt
diff --git a/.riot/requirements/16313f3.txt b/dd-trace-py/.riot/requirements/16313f3.txt
similarity index 100%
rename from .riot/requirements/16313f3.txt
rename to dd-trace-py/.riot/requirements/16313f3.txt
diff --git a/.riot/requirements/1631cdb.txt b/dd-trace-py/.riot/requirements/1631cdb.txt
similarity index 100%
rename from .riot/requirements/1631cdb.txt
rename to dd-trace-py/.riot/requirements/1631cdb.txt
diff --git a/.riot/requirements/1632a0e.txt b/dd-trace-py/.riot/requirements/1632a0e.txt
similarity index 100%
rename from .riot/requirements/1632a0e.txt
rename to dd-trace-py/.riot/requirements/1632a0e.txt
diff --git a/.riot/requirements/163bc46.txt b/dd-trace-py/.riot/requirements/163bc46.txt
similarity index 100%
rename from .riot/requirements/163bc46.txt
rename to dd-trace-py/.riot/requirements/163bc46.txt
diff --git a/.riot/requirements/163c8d2.txt b/dd-trace-py/.riot/requirements/163c8d2.txt
similarity index 100%
rename from .riot/requirements/163c8d2.txt
rename to dd-trace-py/.riot/requirements/163c8d2.txt
diff --git a/.riot/requirements/164d1f0.txt b/dd-trace-py/.riot/requirements/164d1f0.txt
similarity index 100%
rename from .riot/requirements/164d1f0.txt
rename to dd-trace-py/.riot/requirements/164d1f0.txt
diff --git a/.riot/requirements/1652e36.txt b/dd-trace-py/.riot/requirements/1652e36.txt
similarity index 100%
rename from .riot/requirements/1652e36.txt
rename to dd-trace-py/.riot/requirements/1652e36.txt
diff --git a/.riot/requirements/1659232.txt b/dd-trace-py/.riot/requirements/1659232.txt
similarity index 100%
rename from .riot/requirements/1659232.txt
rename to dd-trace-py/.riot/requirements/1659232.txt
diff --git a/.riot/requirements/165add9.txt b/dd-trace-py/.riot/requirements/165add9.txt
similarity index 100%
rename from .riot/requirements/165add9.txt
rename to dd-trace-py/.riot/requirements/165add9.txt
diff --git a/.riot/requirements/165d803.txt b/dd-trace-py/.riot/requirements/165d803.txt
similarity index 100%
rename from .riot/requirements/165d803.txt
rename to dd-trace-py/.riot/requirements/165d803.txt
diff --git a/.riot/requirements/165faec.txt b/dd-trace-py/.riot/requirements/165faec.txt
similarity index 100%
rename from .riot/requirements/165faec.txt
rename to dd-trace-py/.riot/requirements/165faec.txt
diff --git a/.riot/requirements/1661512.txt b/dd-trace-py/.riot/requirements/1661512.txt
similarity index 100%
rename from .riot/requirements/1661512.txt
rename to dd-trace-py/.riot/requirements/1661512.txt
diff --git a/.riot/requirements/166880c.txt b/dd-trace-py/.riot/requirements/166880c.txt
similarity index 100%
rename from .riot/requirements/166880c.txt
rename to dd-trace-py/.riot/requirements/166880c.txt
diff --git a/.riot/requirements/166aa1b.txt b/dd-trace-py/.riot/requirements/166aa1b.txt
similarity index 100%
rename from .riot/requirements/166aa1b.txt
rename to dd-trace-py/.riot/requirements/166aa1b.txt
diff --git a/.riot/requirements/166d447.txt b/dd-trace-py/.riot/requirements/166d447.txt
similarity index 100%
rename from .riot/requirements/166d447.txt
rename to dd-trace-py/.riot/requirements/166d447.txt
diff --git a/.riot/requirements/1673b3a.txt b/dd-trace-py/.riot/requirements/1673b3a.txt
similarity index 100%
rename from .riot/requirements/1673b3a.txt
rename to dd-trace-py/.riot/requirements/1673b3a.txt
diff --git a/.riot/requirements/1674af7.txt b/dd-trace-py/.riot/requirements/1674af7.txt
similarity index 100%
rename from .riot/requirements/1674af7.txt
rename to dd-trace-py/.riot/requirements/1674af7.txt
diff --git a/.riot/requirements/16781e7.txt b/dd-trace-py/.riot/requirements/16781e7.txt
similarity index 100%
rename from .riot/requirements/16781e7.txt
rename to dd-trace-py/.riot/requirements/16781e7.txt
diff --git a/.riot/requirements/167b853.txt b/dd-trace-py/.riot/requirements/167b853.txt
similarity index 100%
rename from .riot/requirements/167b853.txt
rename to dd-trace-py/.riot/requirements/167b853.txt
diff --git a/.riot/requirements/167bd61.txt b/dd-trace-py/.riot/requirements/167bd61.txt
similarity index 100%
rename from .riot/requirements/167bd61.txt
rename to dd-trace-py/.riot/requirements/167bd61.txt
diff --git a/.riot/requirements/167c1e6.txt b/dd-trace-py/.riot/requirements/167c1e6.txt
similarity index 100%
rename from .riot/requirements/167c1e6.txt
rename to dd-trace-py/.riot/requirements/167c1e6.txt
diff --git a/.riot/requirements/168abb5.txt b/dd-trace-py/.riot/requirements/168abb5.txt
similarity index 100%
rename from .riot/requirements/168abb5.txt
rename to dd-trace-py/.riot/requirements/168abb5.txt
diff --git a/.riot/requirements/168cc07.txt b/dd-trace-py/.riot/requirements/168cc07.txt
similarity index 100%
rename from .riot/requirements/168cc07.txt
rename to dd-trace-py/.riot/requirements/168cc07.txt
diff --git a/.riot/requirements/168ee03.txt b/dd-trace-py/.riot/requirements/168ee03.txt
similarity index 100%
rename from .riot/requirements/168ee03.txt
rename to dd-trace-py/.riot/requirements/168ee03.txt
diff --git a/.riot/requirements/169477d.txt b/dd-trace-py/.riot/requirements/169477d.txt
similarity index 100%
rename from .riot/requirements/169477d.txt
rename to dd-trace-py/.riot/requirements/169477d.txt
diff --git a/.riot/requirements/1694e39.txt b/dd-trace-py/.riot/requirements/1694e39.txt
similarity index 100%
rename from .riot/requirements/1694e39.txt
rename to dd-trace-py/.riot/requirements/1694e39.txt
diff --git a/.riot/requirements/16969ec.txt b/dd-trace-py/.riot/requirements/16969ec.txt
similarity index 100%
rename from .riot/requirements/16969ec.txt
rename to dd-trace-py/.riot/requirements/16969ec.txt
diff --git a/.riot/requirements/169ae94.txt b/dd-trace-py/.riot/requirements/169ae94.txt
similarity index 100%
rename from .riot/requirements/169ae94.txt
rename to dd-trace-py/.riot/requirements/169ae94.txt
diff --git a/.riot/requirements/169ce58.txt b/dd-trace-py/.riot/requirements/169ce58.txt
similarity index 100%
rename from .riot/requirements/169ce58.txt
rename to dd-trace-py/.riot/requirements/169ce58.txt
diff --git a/.riot/requirements/16a63d7.txt b/dd-trace-py/.riot/requirements/16a63d7.txt
similarity index 100%
rename from .riot/requirements/16a63d7.txt
rename to dd-trace-py/.riot/requirements/16a63d7.txt
diff --git a/.riot/requirements/16a6e70.txt b/dd-trace-py/.riot/requirements/16a6e70.txt
similarity index 100%
rename from .riot/requirements/16a6e70.txt
rename to dd-trace-py/.riot/requirements/16a6e70.txt
diff --git a/.riot/requirements/16ac1f1.txt b/dd-trace-py/.riot/requirements/16ac1f1.txt
similarity index 100%
rename from .riot/requirements/16ac1f1.txt
rename to dd-trace-py/.riot/requirements/16ac1f1.txt
diff --git a/.riot/requirements/16af3aa.txt b/dd-trace-py/.riot/requirements/16af3aa.txt
similarity index 100%
rename from .riot/requirements/16af3aa.txt
rename to dd-trace-py/.riot/requirements/16af3aa.txt
diff --git a/.riot/requirements/16b0319.txt b/dd-trace-py/.riot/requirements/16b0319.txt
similarity index 100%
rename from .riot/requirements/16b0319.txt
rename to dd-trace-py/.riot/requirements/16b0319.txt
diff --git a/.riot/requirements/16b04fe.txt b/dd-trace-py/.riot/requirements/16b04fe.txt
similarity index 100%
rename from .riot/requirements/16b04fe.txt
rename to dd-trace-py/.riot/requirements/16b04fe.txt
diff --git a/.riot/requirements/16b152c.txt b/dd-trace-py/.riot/requirements/16b152c.txt
similarity index 100%
rename from .riot/requirements/16b152c.txt
rename to dd-trace-py/.riot/requirements/16b152c.txt
diff --git a/.riot/requirements/16b741f.txt b/dd-trace-py/.riot/requirements/16b741f.txt
similarity index 100%
rename from .riot/requirements/16b741f.txt
rename to dd-trace-py/.riot/requirements/16b741f.txt
diff --git a/.riot/requirements/16bd71d.txt b/dd-trace-py/.riot/requirements/16bd71d.txt
similarity index 100%
rename from .riot/requirements/16bd71d.txt
rename to dd-trace-py/.riot/requirements/16bd71d.txt
diff --git a/.riot/requirements/16c1c69.txt b/dd-trace-py/.riot/requirements/16c1c69.txt
similarity index 100%
rename from .riot/requirements/16c1c69.txt
rename to dd-trace-py/.riot/requirements/16c1c69.txt
diff --git a/.riot/requirements/16ca618.txt b/dd-trace-py/.riot/requirements/16ca618.txt
similarity index 100%
rename from .riot/requirements/16ca618.txt
rename to dd-trace-py/.riot/requirements/16ca618.txt
diff --git a/.riot/requirements/16cc321.txt b/dd-trace-py/.riot/requirements/16cc321.txt
similarity index 100%
rename from .riot/requirements/16cc321.txt
rename to dd-trace-py/.riot/requirements/16cc321.txt
diff --git a/.riot/requirements/16cc81d.txt b/dd-trace-py/.riot/requirements/16cc81d.txt
similarity index 100%
rename from .riot/requirements/16cc81d.txt
rename to dd-trace-py/.riot/requirements/16cc81d.txt
diff --git a/.riot/requirements/16d286c.txt b/dd-trace-py/.riot/requirements/16d286c.txt
similarity index 100%
rename from .riot/requirements/16d286c.txt
rename to dd-trace-py/.riot/requirements/16d286c.txt
diff --git a/.riot/requirements/16d3c69.txt b/dd-trace-py/.riot/requirements/16d3c69.txt
similarity index 100%
rename from .riot/requirements/16d3c69.txt
rename to dd-trace-py/.riot/requirements/16d3c69.txt
diff --git a/.riot/requirements/16d58df.txt b/dd-trace-py/.riot/requirements/16d58df.txt
similarity index 100%
rename from .riot/requirements/16d58df.txt
rename to dd-trace-py/.riot/requirements/16d58df.txt
diff --git a/.riot/requirements/16d8026.txt b/dd-trace-py/.riot/requirements/16d8026.txt
similarity index 100%
rename from .riot/requirements/16d8026.txt
rename to dd-trace-py/.riot/requirements/16d8026.txt
diff --git a/.riot/requirements/16dd69c.txt b/dd-trace-py/.riot/requirements/16dd69c.txt
similarity index 100%
rename from .riot/requirements/16dd69c.txt
rename to dd-trace-py/.riot/requirements/16dd69c.txt
diff --git a/.riot/requirements/16e6824.txt b/dd-trace-py/.riot/requirements/16e6824.txt
similarity index 100%
rename from .riot/requirements/16e6824.txt
rename to dd-trace-py/.riot/requirements/16e6824.txt
diff --git a/.riot/requirements/16ec0c2.txt b/dd-trace-py/.riot/requirements/16ec0c2.txt
similarity index 100%
rename from .riot/requirements/16ec0c2.txt
rename to dd-trace-py/.riot/requirements/16ec0c2.txt
diff --git a/.riot/requirements/16f2923.txt b/dd-trace-py/.riot/requirements/16f2923.txt
similarity index 100%
rename from .riot/requirements/16f2923.txt
rename to dd-trace-py/.riot/requirements/16f2923.txt
diff --git a/.riot/requirements/16f33ce.txt b/dd-trace-py/.riot/requirements/16f33ce.txt
similarity index 100%
rename from .riot/requirements/16f33ce.txt
rename to dd-trace-py/.riot/requirements/16f33ce.txt
diff --git a/.riot/requirements/16f8e4b.txt b/dd-trace-py/.riot/requirements/16f8e4b.txt
similarity index 100%
rename from .riot/requirements/16f8e4b.txt
rename to dd-trace-py/.riot/requirements/16f8e4b.txt
diff --git a/.riot/requirements/16f97b5.txt b/dd-trace-py/.riot/requirements/16f97b5.txt
similarity index 100%
rename from .riot/requirements/16f97b5.txt
rename to dd-trace-py/.riot/requirements/16f97b5.txt
diff --git a/.riot/requirements/1703ea4.txt b/dd-trace-py/.riot/requirements/1703ea4.txt
similarity index 100%
rename from .riot/requirements/1703ea4.txt
rename to dd-trace-py/.riot/requirements/1703ea4.txt
diff --git a/.riot/requirements/170e1e9.txt b/dd-trace-py/.riot/requirements/170e1e9.txt
similarity index 100%
rename from .riot/requirements/170e1e9.txt
rename to dd-trace-py/.riot/requirements/170e1e9.txt
diff --git a/.riot/requirements/17148ee.txt b/dd-trace-py/.riot/requirements/17148ee.txt
similarity index 100%
rename from .riot/requirements/17148ee.txt
rename to dd-trace-py/.riot/requirements/17148ee.txt
diff --git a/.riot/requirements/171d43c.txt b/dd-trace-py/.riot/requirements/171d43c.txt
similarity index 100%
rename from .riot/requirements/171d43c.txt
rename to dd-trace-py/.riot/requirements/171d43c.txt
diff --git a/.riot/requirements/171d4b1.txt b/dd-trace-py/.riot/requirements/171d4b1.txt
similarity index 100%
rename from .riot/requirements/171d4b1.txt
rename to dd-trace-py/.riot/requirements/171d4b1.txt
diff --git a/.riot/requirements/171e4a4.txt b/dd-trace-py/.riot/requirements/171e4a4.txt
similarity index 100%
rename from .riot/requirements/171e4a4.txt
rename to dd-trace-py/.riot/requirements/171e4a4.txt
diff --git a/.riot/requirements/1721018.txt b/dd-trace-py/.riot/requirements/1721018.txt
similarity index 100%
rename from .riot/requirements/1721018.txt
rename to dd-trace-py/.riot/requirements/1721018.txt
diff --git a/.riot/requirements/172d362.txt b/dd-trace-py/.riot/requirements/172d362.txt
similarity index 100%
rename from .riot/requirements/172d362.txt
rename to dd-trace-py/.riot/requirements/172d362.txt
diff --git a/.riot/requirements/173260e.txt b/dd-trace-py/.riot/requirements/173260e.txt
similarity index 100%
rename from .riot/requirements/173260e.txt
rename to dd-trace-py/.riot/requirements/173260e.txt
diff --git a/.riot/requirements/173ba30.txt b/dd-trace-py/.riot/requirements/173ba30.txt
similarity index 100%
rename from .riot/requirements/173ba30.txt
rename to dd-trace-py/.riot/requirements/173ba30.txt
diff --git a/.riot/requirements/1746c1c.txt b/dd-trace-py/.riot/requirements/1746c1c.txt
similarity index 100%
rename from .riot/requirements/1746c1c.txt
rename to dd-trace-py/.riot/requirements/1746c1c.txt
diff --git a/.riot/requirements/1747b09.txt b/dd-trace-py/.riot/requirements/1747b09.txt
similarity index 100%
rename from .riot/requirements/1747b09.txt
rename to dd-trace-py/.riot/requirements/1747b09.txt
diff --git a/.riot/requirements/174d88f.txt b/dd-trace-py/.riot/requirements/174d88f.txt
similarity index 100%
rename from .riot/requirements/174d88f.txt
rename to dd-trace-py/.riot/requirements/174d88f.txt
diff --git a/.riot/requirements/17513e7.txt b/dd-trace-py/.riot/requirements/17513e7.txt
similarity index 100%
rename from .riot/requirements/17513e7.txt
rename to dd-trace-py/.riot/requirements/17513e7.txt
diff --git a/.riot/requirements/1753169.txt b/dd-trace-py/.riot/requirements/1753169.txt
similarity index 100%
rename from .riot/requirements/1753169.txt
rename to dd-trace-py/.riot/requirements/1753169.txt
diff --git a/.riot/requirements/175a6ba.txt b/dd-trace-py/.riot/requirements/175a6ba.txt
similarity index 100%
rename from .riot/requirements/175a6ba.txt
rename to dd-trace-py/.riot/requirements/175a6ba.txt
diff --git a/.riot/requirements/175d0d6.txt b/dd-trace-py/.riot/requirements/175d0d6.txt
similarity index 100%
rename from .riot/requirements/175d0d6.txt
rename to dd-trace-py/.riot/requirements/175d0d6.txt
diff --git a/.riot/requirements/175eeba.txt b/dd-trace-py/.riot/requirements/175eeba.txt
similarity index 100%
rename from .riot/requirements/175eeba.txt
rename to dd-trace-py/.riot/requirements/175eeba.txt
diff --git a/.riot/requirements/175f930.txt b/dd-trace-py/.riot/requirements/175f930.txt
similarity index 100%
rename from .riot/requirements/175f930.txt
rename to dd-trace-py/.riot/requirements/175f930.txt
diff --git a/.riot/requirements/176838a.txt b/dd-trace-py/.riot/requirements/176838a.txt
similarity index 100%
rename from .riot/requirements/176838a.txt
rename to dd-trace-py/.riot/requirements/176838a.txt
diff --git a/.riot/requirements/176aab2.txt b/dd-trace-py/.riot/requirements/176aab2.txt
similarity index 100%
rename from .riot/requirements/176aab2.txt
rename to dd-trace-py/.riot/requirements/176aab2.txt
diff --git a/.riot/requirements/1778c11.txt b/dd-trace-py/.riot/requirements/1778c11.txt
similarity index 100%
rename from .riot/requirements/1778c11.txt
rename to dd-trace-py/.riot/requirements/1778c11.txt
diff --git a/.riot/requirements/177912e.txt b/dd-trace-py/.riot/requirements/177912e.txt
similarity index 100%
rename from .riot/requirements/177912e.txt
rename to dd-trace-py/.riot/requirements/177912e.txt
diff --git a/.riot/requirements/177daf3.txt b/dd-trace-py/.riot/requirements/177daf3.txt
similarity index 100%
rename from .riot/requirements/177daf3.txt
rename to dd-trace-py/.riot/requirements/177daf3.txt
diff --git a/.riot/requirements/17806ff.txt b/dd-trace-py/.riot/requirements/17806ff.txt
similarity index 100%
rename from .riot/requirements/17806ff.txt
rename to dd-trace-py/.riot/requirements/17806ff.txt
diff --git a/.riot/requirements/1782179.txt b/dd-trace-py/.riot/requirements/1782179.txt
similarity index 100%
rename from .riot/requirements/1782179.txt
rename to dd-trace-py/.riot/requirements/1782179.txt
diff --git a/.riot/requirements/1785cfd.txt b/dd-trace-py/.riot/requirements/1785cfd.txt
similarity index 100%
rename from .riot/requirements/1785cfd.txt
rename to dd-trace-py/.riot/requirements/1785cfd.txt
diff --git a/.riot/requirements/17879d0.txt b/dd-trace-py/.riot/requirements/17879d0.txt
similarity index 100%
rename from .riot/requirements/17879d0.txt
rename to dd-trace-py/.riot/requirements/17879d0.txt
diff --git a/.riot/requirements/1787fb7.txt b/dd-trace-py/.riot/requirements/1787fb7.txt
similarity index 100%
rename from .riot/requirements/1787fb7.txt
rename to dd-trace-py/.riot/requirements/1787fb7.txt
diff --git a/.riot/requirements/178dbc8.txt b/dd-trace-py/.riot/requirements/178dbc8.txt
similarity index 100%
rename from .riot/requirements/178dbc8.txt
rename to dd-trace-py/.riot/requirements/178dbc8.txt
diff --git a/.riot/requirements/178f7d5.txt b/dd-trace-py/.riot/requirements/178f7d5.txt
similarity index 100%
rename from .riot/requirements/178f7d5.txt
rename to dd-trace-py/.riot/requirements/178f7d5.txt
diff --git a/.riot/requirements/179d78b.txt b/dd-trace-py/.riot/requirements/179d78b.txt
similarity index 100%
rename from .riot/requirements/179d78b.txt
rename to dd-trace-py/.riot/requirements/179d78b.txt
diff --git a/.riot/requirements/179eaa2.txt b/dd-trace-py/.riot/requirements/179eaa2.txt
similarity index 100%
rename from .riot/requirements/179eaa2.txt
rename to dd-trace-py/.riot/requirements/179eaa2.txt
diff --git a/.riot/requirements/17a194c.txt b/dd-trace-py/.riot/requirements/17a194c.txt
similarity index 100%
rename from .riot/requirements/17a194c.txt
rename to dd-trace-py/.riot/requirements/17a194c.txt
diff --git a/.riot/requirements/17a234c.txt b/dd-trace-py/.riot/requirements/17a234c.txt
similarity index 100%
rename from .riot/requirements/17a234c.txt
rename to dd-trace-py/.riot/requirements/17a234c.txt
diff --git a/.riot/requirements/17a868e.txt b/dd-trace-py/.riot/requirements/17a868e.txt
similarity index 100%
rename from .riot/requirements/17a868e.txt
rename to dd-trace-py/.riot/requirements/17a868e.txt
diff --git a/.riot/requirements/17ab061.txt b/dd-trace-py/.riot/requirements/17ab061.txt
similarity index 100%
rename from .riot/requirements/17ab061.txt
rename to dd-trace-py/.riot/requirements/17ab061.txt
diff --git a/.riot/requirements/17b66d6.txt b/dd-trace-py/.riot/requirements/17b66d6.txt
similarity index 100%
rename from .riot/requirements/17b66d6.txt
rename to dd-trace-py/.riot/requirements/17b66d6.txt
diff --git a/.riot/requirements/17b723d.txt b/dd-trace-py/.riot/requirements/17b723d.txt
similarity index 100%
rename from .riot/requirements/17b723d.txt
rename to dd-trace-py/.riot/requirements/17b723d.txt
diff --git a/.riot/requirements/17b7249.txt b/dd-trace-py/.riot/requirements/17b7249.txt
similarity index 100%
rename from .riot/requirements/17b7249.txt
rename to dd-trace-py/.riot/requirements/17b7249.txt
diff --git a/.riot/requirements/17c1db9.txt b/dd-trace-py/.riot/requirements/17c1db9.txt
similarity index 100%
rename from .riot/requirements/17c1db9.txt
rename to dd-trace-py/.riot/requirements/17c1db9.txt
diff --git a/.riot/requirements/17cb22b.txt b/dd-trace-py/.riot/requirements/17cb22b.txt
similarity index 100%
rename from .riot/requirements/17cb22b.txt
rename to dd-trace-py/.riot/requirements/17cb22b.txt
diff --git a/.riot/requirements/17cc7b7.txt b/dd-trace-py/.riot/requirements/17cc7b7.txt
similarity index 100%
rename from .riot/requirements/17cc7b7.txt
rename to dd-trace-py/.riot/requirements/17cc7b7.txt
diff --git a/.riot/requirements/17cd03c.txt b/dd-trace-py/.riot/requirements/17cd03c.txt
similarity index 100%
rename from .riot/requirements/17cd03c.txt
rename to dd-trace-py/.riot/requirements/17cd03c.txt
diff --git a/.riot/requirements/17d2144.txt b/dd-trace-py/.riot/requirements/17d2144.txt
similarity index 100%
rename from .riot/requirements/17d2144.txt
rename to dd-trace-py/.riot/requirements/17d2144.txt
diff --git a/.riot/requirements/17d40ef.txt b/dd-trace-py/.riot/requirements/17d40ef.txt
similarity index 100%
rename from .riot/requirements/17d40ef.txt
rename to dd-trace-py/.riot/requirements/17d40ef.txt
diff --git a/.riot/requirements/17d4731.txt b/dd-trace-py/.riot/requirements/17d4731.txt
similarity index 100%
rename from .riot/requirements/17d4731.txt
rename to dd-trace-py/.riot/requirements/17d4731.txt
diff --git a/.riot/requirements/17d5494.txt b/dd-trace-py/.riot/requirements/17d5494.txt
similarity index 100%
rename from .riot/requirements/17d5494.txt
rename to dd-trace-py/.riot/requirements/17d5494.txt
diff --git a/.riot/requirements/17d96ef.txt b/dd-trace-py/.riot/requirements/17d96ef.txt
similarity index 100%
rename from .riot/requirements/17d96ef.txt
rename to dd-trace-py/.riot/requirements/17d96ef.txt
diff --git a/.riot/requirements/17d9faf.txt b/dd-trace-py/.riot/requirements/17d9faf.txt
similarity index 100%
rename from .riot/requirements/17d9faf.txt
rename to dd-trace-py/.riot/requirements/17d9faf.txt
diff --git a/.riot/requirements/17dae6a.txt b/dd-trace-py/.riot/requirements/17dae6a.txt
similarity index 100%
rename from .riot/requirements/17dae6a.txt
rename to dd-trace-py/.riot/requirements/17dae6a.txt
diff --git a/.riot/requirements/17df13b.txt b/dd-trace-py/.riot/requirements/17df13b.txt
similarity index 100%
rename from .riot/requirements/17df13b.txt
rename to dd-trace-py/.riot/requirements/17df13b.txt
diff --git a/.riot/requirements/17ec3e0.txt b/dd-trace-py/.riot/requirements/17ec3e0.txt
similarity index 100%
rename from .riot/requirements/17ec3e0.txt
rename to dd-trace-py/.riot/requirements/17ec3e0.txt
diff --git a/.riot/requirements/17efeae.txt b/dd-trace-py/.riot/requirements/17efeae.txt
similarity index 100%
rename from .riot/requirements/17efeae.txt
rename to dd-trace-py/.riot/requirements/17efeae.txt
diff --git a/.riot/requirements/17f2a52.txt b/dd-trace-py/.riot/requirements/17f2a52.txt
similarity index 100%
rename from .riot/requirements/17f2a52.txt
rename to dd-trace-py/.riot/requirements/17f2a52.txt
diff --git a/.riot/requirements/17f7f1d.txt b/dd-trace-py/.riot/requirements/17f7f1d.txt
similarity index 100%
rename from .riot/requirements/17f7f1d.txt
rename to dd-trace-py/.riot/requirements/17f7f1d.txt
diff --git a/.riot/requirements/17fe359.txt b/dd-trace-py/.riot/requirements/17fe359.txt
similarity index 100%
rename from .riot/requirements/17fe359.txt
rename to dd-trace-py/.riot/requirements/17fe359.txt
diff --git a/.riot/requirements/18036be.txt b/dd-trace-py/.riot/requirements/18036be.txt
similarity index 100%
rename from .riot/requirements/18036be.txt
rename to dd-trace-py/.riot/requirements/18036be.txt
diff --git a/.riot/requirements/1807b73.txt b/dd-trace-py/.riot/requirements/1807b73.txt
similarity index 100%
rename from .riot/requirements/1807b73.txt
rename to dd-trace-py/.riot/requirements/1807b73.txt
diff --git a/.riot/requirements/181128c.txt b/dd-trace-py/.riot/requirements/181128c.txt
similarity index 100%
rename from .riot/requirements/181128c.txt
rename to dd-trace-py/.riot/requirements/181128c.txt
diff --git a/.riot/requirements/181184d.txt b/dd-trace-py/.riot/requirements/181184d.txt
similarity index 100%
rename from .riot/requirements/181184d.txt
rename to dd-trace-py/.riot/requirements/181184d.txt
diff --git a/.riot/requirements/1812e30.txt b/dd-trace-py/.riot/requirements/1812e30.txt
similarity index 100%
rename from .riot/requirements/1812e30.txt
rename to dd-trace-py/.riot/requirements/1812e30.txt
diff --git a/.riot/requirements/1814da7.txt b/dd-trace-py/.riot/requirements/1814da7.txt
similarity index 100%
rename from .riot/requirements/1814da7.txt
rename to dd-trace-py/.riot/requirements/1814da7.txt
diff --git a/.riot/requirements/181895c.txt b/dd-trace-py/.riot/requirements/181895c.txt
similarity index 100%
rename from .riot/requirements/181895c.txt
rename to dd-trace-py/.riot/requirements/181895c.txt
diff --git a/.riot/requirements/1819a02.txt b/dd-trace-py/.riot/requirements/1819a02.txt
similarity index 100%
rename from .riot/requirements/1819a02.txt
rename to dd-trace-py/.riot/requirements/1819a02.txt
diff --git a/.riot/requirements/1819cb6.txt b/dd-trace-py/.riot/requirements/1819cb6.txt
similarity index 100%
rename from .riot/requirements/1819cb6.txt
rename to dd-trace-py/.riot/requirements/1819cb6.txt
diff --git a/.riot/requirements/18269eb.txt b/dd-trace-py/.riot/requirements/18269eb.txt
similarity index 100%
rename from .riot/requirements/18269eb.txt
rename to dd-trace-py/.riot/requirements/18269eb.txt
diff --git a/.riot/requirements/18278c9.txt b/dd-trace-py/.riot/requirements/18278c9.txt
similarity index 100%
rename from .riot/requirements/18278c9.txt
rename to dd-trace-py/.riot/requirements/18278c9.txt
diff --git a/.riot/requirements/1829a8a.txt b/dd-trace-py/.riot/requirements/1829a8a.txt
similarity index 100%
rename from .riot/requirements/1829a8a.txt
rename to dd-trace-py/.riot/requirements/1829a8a.txt
diff --git a/.riot/requirements/182bf3a.txt b/dd-trace-py/.riot/requirements/182bf3a.txt
similarity index 100%
rename from .riot/requirements/182bf3a.txt
rename to dd-trace-py/.riot/requirements/182bf3a.txt
diff --git a/.riot/requirements/182dc13.txt b/dd-trace-py/.riot/requirements/182dc13.txt
similarity index 100%
rename from .riot/requirements/182dc13.txt
rename to dd-trace-py/.riot/requirements/182dc13.txt
diff --git a/.riot/requirements/1833817.txt b/dd-trace-py/.riot/requirements/1833817.txt
similarity index 100%
rename from .riot/requirements/1833817.txt
rename to dd-trace-py/.riot/requirements/1833817.txt
diff --git a/.riot/requirements/183e307.txt b/dd-trace-py/.riot/requirements/183e307.txt
similarity index 100%
rename from .riot/requirements/183e307.txt
rename to dd-trace-py/.riot/requirements/183e307.txt
diff --git a/.riot/requirements/18421e5.txt b/dd-trace-py/.riot/requirements/18421e5.txt
similarity index 100%
rename from .riot/requirements/18421e5.txt
rename to dd-trace-py/.riot/requirements/18421e5.txt
diff --git a/.riot/requirements/1842297.txt b/dd-trace-py/.riot/requirements/1842297.txt
similarity index 100%
rename from .riot/requirements/1842297.txt
rename to dd-trace-py/.riot/requirements/1842297.txt
diff --git a/.riot/requirements/1842452.txt b/dd-trace-py/.riot/requirements/1842452.txt
similarity index 100%
rename from .riot/requirements/1842452.txt
rename to dd-trace-py/.riot/requirements/1842452.txt
diff --git a/.riot/requirements/1844abd.txt b/dd-trace-py/.riot/requirements/1844abd.txt
similarity index 100%
rename from .riot/requirements/1844abd.txt
rename to dd-trace-py/.riot/requirements/1844abd.txt
diff --git a/.riot/requirements/1845af7.txt b/dd-trace-py/.riot/requirements/1845af7.txt
similarity index 100%
rename from .riot/requirements/1845af7.txt
rename to dd-trace-py/.riot/requirements/1845af7.txt
diff --git a/.riot/requirements/18515c6.txt b/dd-trace-py/.riot/requirements/18515c6.txt
similarity index 100%
rename from .riot/requirements/18515c6.txt
rename to dd-trace-py/.riot/requirements/18515c6.txt
diff --git a/.riot/requirements/18538d1.txt b/dd-trace-py/.riot/requirements/18538d1.txt
similarity index 100%
rename from .riot/requirements/18538d1.txt
rename to dd-trace-py/.riot/requirements/18538d1.txt
diff --git a/.riot/requirements/185a095.txt b/dd-trace-py/.riot/requirements/185a095.txt
similarity index 100%
rename from .riot/requirements/185a095.txt
rename to dd-trace-py/.riot/requirements/185a095.txt
diff --git a/.riot/requirements/1866b9b.txt b/dd-trace-py/.riot/requirements/1866b9b.txt
similarity index 100%
rename from .riot/requirements/1866b9b.txt
rename to dd-trace-py/.riot/requirements/1866b9b.txt
diff --git a/.riot/requirements/186acae.txt b/dd-trace-py/.riot/requirements/186acae.txt
similarity index 100%
rename from .riot/requirements/186acae.txt
rename to dd-trace-py/.riot/requirements/186acae.txt
diff --git a/.riot/requirements/18730a4.txt b/dd-trace-py/.riot/requirements/18730a4.txt
similarity index 100%
rename from .riot/requirements/18730a4.txt
rename to dd-trace-py/.riot/requirements/18730a4.txt
diff --git a/.riot/requirements/187aa61.txt b/dd-trace-py/.riot/requirements/187aa61.txt
similarity index 100%
rename from .riot/requirements/187aa61.txt
rename to dd-trace-py/.riot/requirements/187aa61.txt
diff --git a/.riot/requirements/187d6f8.txt b/dd-trace-py/.riot/requirements/187d6f8.txt
similarity index 100%
rename from .riot/requirements/187d6f8.txt
rename to dd-trace-py/.riot/requirements/187d6f8.txt
diff --git a/.riot/requirements/187df5b.txt b/dd-trace-py/.riot/requirements/187df5b.txt
similarity index 100%
rename from .riot/requirements/187df5b.txt
rename to dd-trace-py/.riot/requirements/187df5b.txt
diff --git a/.riot/requirements/188244e.txt b/dd-trace-py/.riot/requirements/188244e.txt
similarity index 100%
rename from .riot/requirements/188244e.txt
rename to dd-trace-py/.riot/requirements/188244e.txt
diff --git a/.riot/requirements/1882fe7.txt b/dd-trace-py/.riot/requirements/1882fe7.txt
similarity index 100%
rename from .riot/requirements/1882fe7.txt
rename to dd-trace-py/.riot/requirements/1882fe7.txt
diff --git a/.riot/requirements/188a403.txt b/dd-trace-py/.riot/requirements/188a403.txt
similarity index 100%
rename from .riot/requirements/188a403.txt
rename to dd-trace-py/.riot/requirements/188a403.txt
diff --git a/.riot/requirements/18913cd.txt b/dd-trace-py/.riot/requirements/18913cd.txt
similarity index 100%
rename from .riot/requirements/18913cd.txt
rename to dd-trace-py/.riot/requirements/18913cd.txt
diff --git a/.riot/requirements/18941c9.txt b/dd-trace-py/.riot/requirements/18941c9.txt
similarity index 100%
rename from .riot/requirements/18941c9.txt
rename to dd-trace-py/.riot/requirements/18941c9.txt
diff --git a/.riot/requirements/18a4a8d.txt b/dd-trace-py/.riot/requirements/18a4a8d.txt
similarity index 100%
rename from .riot/requirements/18a4a8d.txt
rename to dd-trace-py/.riot/requirements/18a4a8d.txt
diff --git a/.riot/requirements/18a6687.txt b/dd-trace-py/.riot/requirements/18a6687.txt
similarity index 100%
rename from .riot/requirements/18a6687.txt
rename to dd-trace-py/.riot/requirements/18a6687.txt
diff --git a/.riot/requirements/18ab9e9.txt b/dd-trace-py/.riot/requirements/18ab9e9.txt
similarity index 100%
rename from .riot/requirements/18ab9e9.txt
rename to dd-trace-py/.riot/requirements/18ab9e9.txt
diff --git a/.riot/requirements/18b32f4.txt b/dd-trace-py/.riot/requirements/18b32f4.txt
similarity index 100%
rename from .riot/requirements/18b32f4.txt
rename to dd-trace-py/.riot/requirements/18b32f4.txt
diff --git a/.riot/requirements/18b7202.txt b/dd-trace-py/.riot/requirements/18b7202.txt
similarity index 100%
rename from .riot/requirements/18b7202.txt
rename to dd-trace-py/.riot/requirements/18b7202.txt
diff --git a/.riot/requirements/18b8b8f.txt b/dd-trace-py/.riot/requirements/18b8b8f.txt
similarity index 100%
rename from .riot/requirements/18b8b8f.txt
rename to dd-trace-py/.riot/requirements/18b8b8f.txt
diff --git a/.riot/requirements/18bf990.txt b/dd-trace-py/.riot/requirements/18bf990.txt
similarity index 100%
rename from .riot/requirements/18bf990.txt
rename to dd-trace-py/.riot/requirements/18bf990.txt
diff --git a/.riot/requirements/18c82f1.txt b/dd-trace-py/.riot/requirements/18c82f1.txt
similarity index 100%
rename from .riot/requirements/18c82f1.txt
rename to dd-trace-py/.riot/requirements/18c82f1.txt
diff --git a/.riot/requirements/18ca8de.txt b/dd-trace-py/.riot/requirements/18ca8de.txt
similarity index 100%
rename from .riot/requirements/18ca8de.txt
rename to dd-trace-py/.riot/requirements/18ca8de.txt
diff --git a/.riot/requirements/18cfb88.txt b/dd-trace-py/.riot/requirements/18cfb88.txt
similarity index 100%
rename from .riot/requirements/18cfb88.txt
rename to dd-trace-py/.riot/requirements/18cfb88.txt
diff --git a/.riot/requirements/18cfbb0.txt b/dd-trace-py/.riot/requirements/18cfbb0.txt
similarity index 100%
rename from .riot/requirements/18cfbb0.txt
rename to dd-trace-py/.riot/requirements/18cfbb0.txt
diff --git a/.riot/requirements/18da66a.txt b/dd-trace-py/.riot/requirements/18da66a.txt
similarity index 100%
rename from .riot/requirements/18da66a.txt
rename to dd-trace-py/.riot/requirements/18da66a.txt
diff --git a/.riot/requirements/18dd95d.txt b/dd-trace-py/.riot/requirements/18dd95d.txt
similarity index 100%
rename from .riot/requirements/18dd95d.txt
rename to dd-trace-py/.riot/requirements/18dd95d.txt
diff --git a/.riot/requirements/18e95df.txt b/dd-trace-py/.riot/requirements/18e95df.txt
similarity index 100%
rename from .riot/requirements/18e95df.txt
rename to dd-trace-py/.riot/requirements/18e95df.txt
diff --git a/.riot/requirements/18f859e.txt b/dd-trace-py/.riot/requirements/18f859e.txt
similarity index 100%
rename from .riot/requirements/18f859e.txt
rename to dd-trace-py/.riot/requirements/18f859e.txt
diff --git a/.riot/requirements/18f877f.txt b/dd-trace-py/.riot/requirements/18f877f.txt
similarity index 100%
rename from .riot/requirements/18f877f.txt
rename to dd-trace-py/.riot/requirements/18f877f.txt
diff --git a/.riot/requirements/18f95e2.txt b/dd-trace-py/.riot/requirements/18f95e2.txt
similarity index 100%
rename from .riot/requirements/18f95e2.txt
rename to dd-trace-py/.riot/requirements/18f95e2.txt
diff --git a/.riot/requirements/18f9ba2.txt b/dd-trace-py/.riot/requirements/18f9ba2.txt
similarity index 100%
rename from .riot/requirements/18f9ba2.txt
rename to dd-trace-py/.riot/requirements/18f9ba2.txt
diff --git a/.riot/requirements/18fa2e7.txt b/dd-trace-py/.riot/requirements/18fa2e7.txt
similarity index 100%
rename from .riot/requirements/18fa2e7.txt
rename to dd-trace-py/.riot/requirements/18fa2e7.txt
diff --git a/.riot/requirements/18fce4a.txt b/dd-trace-py/.riot/requirements/18fce4a.txt
similarity index 100%
rename from .riot/requirements/18fce4a.txt
rename to dd-trace-py/.riot/requirements/18fce4a.txt
diff --git a/.riot/requirements/19099fb.txt b/dd-trace-py/.riot/requirements/19099fb.txt
similarity index 100%
rename from .riot/requirements/19099fb.txt
rename to dd-trace-py/.riot/requirements/19099fb.txt
diff --git a/.riot/requirements/190c811.txt b/dd-trace-py/.riot/requirements/190c811.txt
similarity index 100%
rename from .riot/requirements/190c811.txt
rename to dd-trace-py/.riot/requirements/190c811.txt
diff --git a/.riot/requirements/190cc1a.txt b/dd-trace-py/.riot/requirements/190cc1a.txt
similarity index 100%
rename from .riot/requirements/190cc1a.txt
rename to dd-trace-py/.riot/requirements/190cc1a.txt
diff --git a/.riot/requirements/190e5df.txt b/dd-trace-py/.riot/requirements/190e5df.txt
similarity index 100%
rename from .riot/requirements/190e5df.txt
rename to dd-trace-py/.riot/requirements/190e5df.txt
diff --git a/.riot/requirements/190ee75.txt b/dd-trace-py/.riot/requirements/190ee75.txt
similarity index 100%
rename from .riot/requirements/190ee75.txt
rename to dd-trace-py/.riot/requirements/190ee75.txt
diff --git a/.riot/requirements/190fcc7.txt b/dd-trace-py/.riot/requirements/190fcc7.txt
similarity index 100%
rename from .riot/requirements/190fcc7.txt
rename to dd-trace-py/.riot/requirements/190fcc7.txt
diff --git a/.riot/requirements/191027d.txt b/dd-trace-py/.riot/requirements/191027d.txt
similarity index 100%
rename from .riot/requirements/191027d.txt
rename to dd-trace-py/.riot/requirements/191027d.txt
diff --git a/.riot/requirements/19109da.txt b/dd-trace-py/.riot/requirements/19109da.txt
similarity index 100%
rename from .riot/requirements/19109da.txt
rename to dd-trace-py/.riot/requirements/19109da.txt
diff --git a/.riot/requirements/19138f9.txt b/dd-trace-py/.riot/requirements/19138f9.txt
similarity index 100%
rename from .riot/requirements/19138f9.txt
rename to dd-trace-py/.riot/requirements/19138f9.txt
diff --git a/.riot/requirements/19153ba.txt b/dd-trace-py/.riot/requirements/19153ba.txt
similarity index 100%
rename from .riot/requirements/19153ba.txt
rename to dd-trace-py/.riot/requirements/19153ba.txt
diff --git a/.riot/requirements/1916976.txt b/dd-trace-py/.riot/requirements/1916976.txt
similarity index 100%
rename from .riot/requirements/1916976.txt
rename to dd-trace-py/.riot/requirements/1916976.txt
diff --git a/.riot/requirements/191885c.txt b/dd-trace-py/.riot/requirements/191885c.txt
similarity index 100%
rename from .riot/requirements/191885c.txt
rename to dd-trace-py/.riot/requirements/191885c.txt
diff --git a/.riot/requirements/191bdb7.txt b/dd-trace-py/.riot/requirements/191bdb7.txt
similarity index 100%
rename from .riot/requirements/191bdb7.txt
rename to dd-trace-py/.riot/requirements/191bdb7.txt
diff --git a/.riot/requirements/191bffe.txt b/dd-trace-py/.riot/requirements/191bffe.txt
similarity index 100%
rename from .riot/requirements/191bffe.txt
rename to dd-trace-py/.riot/requirements/191bffe.txt
diff --git a/.riot/requirements/191cea2.txt b/dd-trace-py/.riot/requirements/191cea2.txt
similarity index 100%
rename from .riot/requirements/191cea2.txt
rename to dd-trace-py/.riot/requirements/191cea2.txt
diff --git a/.riot/requirements/1927469.txt b/dd-trace-py/.riot/requirements/1927469.txt
similarity index 100%
rename from .riot/requirements/1927469.txt
rename to dd-trace-py/.riot/requirements/1927469.txt
diff --git a/.riot/requirements/1929a06.txt b/dd-trace-py/.riot/requirements/1929a06.txt
similarity index 100%
rename from .riot/requirements/1929a06.txt
rename to dd-trace-py/.riot/requirements/1929a06.txt
diff --git a/.riot/requirements/192c7c0.txt b/dd-trace-py/.riot/requirements/192c7c0.txt
similarity index 100%
rename from .riot/requirements/192c7c0.txt
rename to dd-trace-py/.riot/requirements/192c7c0.txt
diff --git a/.riot/requirements/192e690.txt b/dd-trace-py/.riot/requirements/192e690.txt
similarity index 100%
rename from .riot/requirements/192e690.txt
rename to dd-trace-py/.riot/requirements/192e690.txt
diff --git a/.riot/requirements/193762c.txt b/dd-trace-py/.riot/requirements/193762c.txt
similarity index 100%
rename from .riot/requirements/193762c.txt
rename to dd-trace-py/.riot/requirements/193762c.txt
diff --git a/.riot/requirements/193fd52.txt b/dd-trace-py/.riot/requirements/193fd52.txt
similarity index 100%
rename from .riot/requirements/193fd52.txt
rename to dd-trace-py/.riot/requirements/193fd52.txt
diff --git a/.riot/requirements/1948b78.txt b/dd-trace-py/.riot/requirements/1948b78.txt
similarity index 100%
rename from .riot/requirements/1948b78.txt
rename to dd-trace-py/.riot/requirements/1948b78.txt
diff --git a/.riot/requirements/1949111.txt b/dd-trace-py/.riot/requirements/1949111.txt
similarity index 100%
rename from .riot/requirements/1949111.txt
rename to dd-trace-py/.riot/requirements/1949111.txt
diff --git a/.riot/requirements/1949639.txt b/dd-trace-py/.riot/requirements/1949639.txt
similarity index 100%
rename from .riot/requirements/1949639.txt
rename to dd-trace-py/.riot/requirements/1949639.txt
diff --git a/.riot/requirements/194c56a.txt b/dd-trace-py/.riot/requirements/194c56a.txt
similarity index 100%
rename from .riot/requirements/194c56a.txt
rename to dd-trace-py/.riot/requirements/194c56a.txt
diff --git a/.riot/requirements/194d749.txt b/dd-trace-py/.riot/requirements/194d749.txt
similarity index 100%
rename from .riot/requirements/194d749.txt
rename to dd-trace-py/.riot/requirements/194d749.txt
diff --git a/.riot/requirements/19507e4.txt b/dd-trace-py/.riot/requirements/19507e4.txt
similarity index 100%
rename from .riot/requirements/19507e4.txt
rename to dd-trace-py/.riot/requirements/19507e4.txt
diff --git a/.riot/requirements/19508cd.txt b/dd-trace-py/.riot/requirements/19508cd.txt
similarity index 100%
rename from .riot/requirements/19508cd.txt
rename to dd-trace-py/.riot/requirements/19508cd.txt
diff --git a/.riot/requirements/1959ed5.txt b/dd-trace-py/.riot/requirements/1959ed5.txt
similarity index 100%
rename from .riot/requirements/1959ed5.txt
rename to dd-trace-py/.riot/requirements/1959ed5.txt
diff --git a/.riot/requirements/195ecad.txt b/dd-trace-py/.riot/requirements/195ecad.txt
similarity index 100%
rename from .riot/requirements/195ecad.txt
rename to dd-trace-py/.riot/requirements/195ecad.txt
diff --git a/.riot/requirements/196a8f0.txt b/dd-trace-py/.riot/requirements/196a8f0.txt
similarity index 100%
rename from .riot/requirements/196a8f0.txt
rename to dd-trace-py/.riot/requirements/196a8f0.txt
diff --git a/.riot/requirements/197213a.txt b/dd-trace-py/.riot/requirements/197213a.txt
similarity index 100%
rename from .riot/requirements/197213a.txt
rename to dd-trace-py/.riot/requirements/197213a.txt
diff --git a/.riot/requirements/19753a5.txt b/dd-trace-py/.riot/requirements/19753a5.txt
similarity index 100%
rename from .riot/requirements/19753a5.txt
rename to dd-trace-py/.riot/requirements/19753a5.txt
diff --git a/.riot/requirements/1979ceb.txt b/dd-trace-py/.riot/requirements/1979ceb.txt
similarity index 100%
rename from .riot/requirements/1979ceb.txt
rename to dd-trace-py/.riot/requirements/1979ceb.txt
diff --git a/.riot/requirements/197c6fd.txt b/dd-trace-py/.riot/requirements/197c6fd.txt
similarity index 100%
rename from .riot/requirements/197c6fd.txt
rename to dd-trace-py/.riot/requirements/197c6fd.txt
diff --git a/.riot/requirements/197fd3a.txt b/dd-trace-py/.riot/requirements/197fd3a.txt
similarity index 100%
rename from .riot/requirements/197fd3a.txt
rename to dd-trace-py/.riot/requirements/197fd3a.txt
diff --git a/.riot/requirements/1987c1c.txt b/dd-trace-py/.riot/requirements/1987c1c.txt
similarity index 100%
rename from .riot/requirements/1987c1c.txt
rename to dd-trace-py/.riot/requirements/1987c1c.txt
diff --git a/.riot/requirements/1994bde.txt b/dd-trace-py/.riot/requirements/1994bde.txt
similarity index 100%
rename from .riot/requirements/1994bde.txt
rename to dd-trace-py/.riot/requirements/1994bde.txt
diff --git a/.riot/requirements/199bb00.txt b/dd-trace-py/.riot/requirements/199bb00.txt
similarity index 100%
rename from .riot/requirements/199bb00.txt
rename to dd-trace-py/.riot/requirements/199bb00.txt
diff --git a/.riot/requirements/19a43a5.txt b/dd-trace-py/.riot/requirements/19a43a5.txt
similarity index 100%
rename from .riot/requirements/19a43a5.txt
rename to dd-trace-py/.riot/requirements/19a43a5.txt
diff --git a/.riot/requirements/19a891c.txt b/dd-trace-py/.riot/requirements/19a891c.txt
similarity index 100%
rename from .riot/requirements/19a891c.txt
rename to dd-trace-py/.riot/requirements/19a891c.txt
diff --git a/.riot/requirements/19a8ed0.txt b/dd-trace-py/.riot/requirements/19a8ed0.txt
similarity index 100%
rename from .riot/requirements/19a8ed0.txt
rename to dd-trace-py/.riot/requirements/19a8ed0.txt
diff --git a/.riot/requirements/19a9a80.txt b/dd-trace-py/.riot/requirements/19a9a80.txt
similarity index 100%
rename from .riot/requirements/19a9a80.txt
rename to dd-trace-py/.riot/requirements/19a9a80.txt
diff --git a/.riot/requirements/19aa242.txt b/dd-trace-py/.riot/requirements/19aa242.txt
similarity index 100%
rename from .riot/requirements/19aa242.txt
rename to dd-trace-py/.riot/requirements/19aa242.txt
diff --git a/.riot/requirements/19aa387.txt b/dd-trace-py/.riot/requirements/19aa387.txt
similarity index 100%
rename from .riot/requirements/19aa387.txt
rename to dd-trace-py/.riot/requirements/19aa387.txt
diff --git a/.riot/requirements/19bbf6d.txt b/dd-trace-py/.riot/requirements/19bbf6d.txt
similarity index 100%
rename from .riot/requirements/19bbf6d.txt
rename to dd-trace-py/.riot/requirements/19bbf6d.txt
diff --git a/.riot/requirements/19be394.txt b/dd-trace-py/.riot/requirements/19be394.txt
similarity index 100%
rename from .riot/requirements/19be394.txt
rename to dd-trace-py/.riot/requirements/19be394.txt
diff --git a/.riot/requirements/19c85cf.txt b/dd-trace-py/.riot/requirements/19c85cf.txt
similarity index 100%
rename from .riot/requirements/19c85cf.txt
rename to dd-trace-py/.riot/requirements/19c85cf.txt
diff --git a/.riot/requirements/19c8864.txt b/dd-trace-py/.riot/requirements/19c8864.txt
similarity index 100%
rename from .riot/requirements/19c8864.txt
rename to dd-trace-py/.riot/requirements/19c8864.txt
diff --git a/.riot/requirements/19c9071.txt b/dd-trace-py/.riot/requirements/19c9071.txt
similarity index 100%
rename from .riot/requirements/19c9071.txt
rename to dd-trace-py/.riot/requirements/19c9071.txt
diff --git a/.riot/requirements/19d1a31.txt b/dd-trace-py/.riot/requirements/19d1a31.txt
similarity index 100%
rename from .riot/requirements/19d1a31.txt
rename to dd-trace-py/.riot/requirements/19d1a31.txt
diff --git a/.riot/requirements/19db357.txt b/dd-trace-py/.riot/requirements/19db357.txt
similarity index 100%
rename from .riot/requirements/19db357.txt
rename to dd-trace-py/.riot/requirements/19db357.txt
diff --git a/.riot/requirements/19dee8b.txt b/dd-trace-py/.riot/requirements/19dee8b.txt
similarity index 100%
rename from .riot/requirements/19dee8b.txt
rename to dd-trace-py/.riot/requirements/19dee8b.txt
diff --git a/.riot/requirements/19e0c13.txt b/dd-trace-py/.riot/requirements/19e0c13.txt
similarity index 100%
rename from .riot/requirements/19e0c13.txt
rename to dd-trace-py/.riot/requirements/19e0c13.txt
diff --git a/.riot/requirements/19e4934.txt b/dd-trace-py/.riot/requirements/19e4934.txt
similarity index 100%
rename from .riot/requirements/19e4934.txt
rename to dd-trace-py/.riot/requirements/19e4934.txt
diff --git a/.riot/requirements/19ed1c1.txt b/dd-trace-py/.riot/requirements/19ed1c1.txt
similarity index 100%
rename from .riot/requirements/19ed1c1.txt
rename to dd-trace-py/.riot/requirements/19ed1c1.txt
diff --git a/.riot/requirements/19f1d9b.txt b/dd-trace-py/.riot/requirements/19f1d9b.txt
similarity index 100%
rename from .riot/requirements/19f1d9b.txt
rename to dd-trace-py/.riot/requirements/19f1d9b.txt
diff --git a/.riot/requirements/19f3b8d.txt b/dd-trace-py/.riot/requirements/19f3b8d.txt
similarity index 100%
rename from .riot/requirements/19f3b8d.txt
rename to dd-trace-py/.riot/requirements/19f3b8d.txt
diff --git a/.riot/requirements/19f423c.txt b/dd-trace-py/.riot/requirements/19f423c.txt
similarity index 100%
rename from .riot/requirements/19f423c.txt
rename to dd-trace-py/.riot/requirements/19f423c.txt
diff --git a/.riot/requirements/19f5ff8.txt b/dd-trace-py/.riot/requirements/19f5ff8.txt
similarity index 100%
rename from .riot/requirements/19f5ff8.txt
rename to dd-trace-py/.riot/requirements/19f5ff8.txt
diff --git a/.riot/requirements/19f8b6e.txt b/dd-trace-py/.riot/requirements/19f8b6e.txt
similarity index 100%
rename from .riot/requirements/19f8b6e.txt
rename to dd-trace-py/.riot/requirements/19f8b6e.txt
diff --git a/.riot/requirements/19f9f09.txt b/dd-trace-py/.riot/requirements/19f9f09.txt
similarity index 100%
rename from .riot/requirements/19f9f09.txt
rename to dd-trace-py/.riot/requirements/19f9f09.txt
diff --git a/.riot/requirements/19fc0b5.txt b/dd-trace-py/.riot/requirements/19fc0b5.txt
similarity index 100%
rename from .riot/requirements/19fc0b5.txt
rename to dd-trace-py/.riot/requirements/19fc0b5.txt
diff --git a/.riot/requirements/1a06176.txt b/dd-trace-py/.riot/requirements/1a06176.txt
similarity index 100%
rename from .riot/requirements/1a06176.txt
rename to dd-trace-py/.riot/requirements/1a06176.txt
diff --git a/.riot/requirements/1a1b104.txt b/dd-trace-py/.riot/requirements/1a1b104.txt
similarity index 100%
rename from .riot/requirements/1a1b104.txt
rename to dd-trace-py/.riot/requirements/1a1b104.txt
diff --git a/.riot/requirements/1a21d86.txt b/dd-trace-py/.riot/requirements/1a21d86.txt
similarity index 100%
rename from .riot/requirements/1a21d86.txt
rename to dd-trace-py/.riot/requirements/1a21d86.txt
diff --git a/.riot/requirements/1a22dee.txt b/dd-trace-py/.riot/requirements/1a22dee.txt
similarity index 100%
rename from .riot/requirements/1a22dee.txt
rename to dd-trace-py/.riot/requirements/1a22dee.txt
diff --git a/.riot/requirements/1a2ae3e.txt b/dd-trace-py/.riot/requirements/1a2ae3e.txt
similarity index 100%
rename from .riot/requirements/1a2ae3e.txt
rename to dd-trace-py/.riot/requirements/1a2ae3e.txt
diff --git a/.riot/requirements/1a2e084.txt b/dd-trace-py/.riot/requirements/1a2e084.txt
similarity index 100%
rename from .riot/requirements/1a2e084.txt
rename to dd-trace-py/.riot/requirements/1a2e084.txt
diff --git a/.riot/requirements/1a38af9.txt b/dd-trace-py/.riot/requirements/1a38af9.txt
similarity index 100%
rename from .riot/requirements/1a38af9.txt
rename to dd-trace-py/.riot/requirements/1a38af9.txt
diff --git a/.riot/requirements/1a42ba9.txt b/dd-trace-py/.riot/requirements/1a42ba9.txt
similarity index 100%
rename from .riot/requirements/1a42ba9.txt
rename to dd-trace-py/.riot/requirements/1a42ba9.txt
diff --git a/.riot/requirements/1a485c9.txt b/dd-trace-py/.riot/requirements/1a485c9.txt
similarity index 100%
rename from .riot/requirements/1a485c9.txt
rename to dd-trace-py/.riot/requirements/1a485c9.txt
diff --git a/.riot/requirements/1a4e2ef.txt b/dd-trace-py/.riot/requirements/1a4e2ef.txt
similarity index 100%
rename from .riot/requirements/1a4e2ef.txt
rename to dd-trace-py/.riot/requirements/1a4e2ef.txt
diff --git a/.riot/requirements/1a4ea78.txt b/dd-trace-py/.riot/requirements/1a4ea78.txt
similarity index 100%
rename from .riot/requirements/1a4ea78.txt
rename to dd-trace-py/.riot/requirements/1a4ea78.txt
diff --git a/.riot/requirements/1a59a5f.txt b/dd-trace-py/.riot/requirements/1a59a5f.txt
similarity index 100%
rename from .riot/requirements/1a59a5f.txt
rename to dd-trace-py/.riot/requirements/1a59a5f.txt
diff --git a/.riot/requirements/1a67f8a.txt b/dd-trace-py/.riot/requirements/1a67f8a.txt
similarity index 100%
rename from .riot/requirements/1a67f8a.txt
rename to dd-trace-py/.riot/requirements/1a67f8a.txt
diff --git a/.riot/requirements/1a683e5.txt b/dd-trace-py/.riot/requirements/1a683e5.txt
similarity index 100%
rename from .riot/requirements/1a683e5.txt
rename to dd-trace-py/.riot/requirements/1a683e5.txt
diff --git a/.riot/requirements/1a6865c.txt b/dd-trace-py/.riot/requirements/1a6865c.txt
similarity index 100%
rename from .riot/requirements/1a6865c.txt
rename to dd-trace-py/.riot/requirements/1a6865c.txt
diff --git a/.riot/requirements/1a68ae7.txt b/dd-trace-py/.riot/requirements/1a68ae7.txt
similarity index 100%
rename from .riot/requirements/1a68ae7.txt
rename to dd-trace-py/.riot/requirements/1a68ae7.txt
diff --git a/.riot/requirements/1a69754.txt b/dd-trace-py/.riot/requirements/1a69754.txt
similarity index 100%
rename from .riot/requirements/1a69754.txt
rename to dd-trace-py/.riot/requirements/1a69754.txt
diff --git a/.riot/requirements/1a6ce84.txt b/dd-trace-py/.riot/requirements/1a6ce84.txt
similarity index 100%
rename from .riot/requirements/1a6ce84.txt
rename to dd-trace-py/.riot/requirements/1a6ce84.txt
diff --git a/.riot/requirements/1a6cf31.txt b/dd-trace-py/.riot/requirements/1a6cf31.txt
similarity index 100%
rename from .riot/requirements/1a6cf31.txt
rename to dd-trace-py/.riot/requirements/1a6cf31.txt
diff --git a/.riot/requirements/1a736ea.txt b/dd-trace-py/.riot/requirements/1a736ea.txt
similarity index 100%
rename from .riot/requirements/1a736ea.txt
rename to dd-trace-py/.riot/requirements/1a736ea.txt
diff --git a/.riot/requirements/1a78e3a.txt b/dd-trace-py/.riot/requirements/1a78e3a.txt
similarity index 100%
rename from .riot/requirements/1a78e3a.txt
rename to dd-trace-py/.riot/requirements/1a78e3a.txt
diff --git a/.riot/requirements/1a7c7c3.txt b/dd-trace-py/.riot/requirements/1a7c7c3.txt
similarity index 100%
rename from .riot/requirements/1a7c7c3.txt
rename to dd-trace-py/.riot/requirements/1a7c7c3.txt
diff --git a/.riot/requirements/1a862f5.txt b/dd-trace-py/.riot/requirements/1a862f5.txt
similarity index 100%
rename from .riot/requirements/1a862f5.txt
rename to dd-trace-py/.riot/requirements/1a862f5.txt
diff --git a/.riot/requirements/1a8b5b1.txt b/dd-trace-py/.riot/requirements/1a8b5b1.txt
similarity index 100%
rename from .riot/requirements/1a8b5b1.txt
rename to dd-trace-py/.riot/requirements/1a8b5b1.txt
diff --git a/.riot/requirements/1a8c53c.txt b/dd-trace-py/.riot/requirements/1a8c53c.txt
similarity index 100%
rename from .riot/requirements/1a8c53c.txt
rename to dd-trace-py/.riot/requirements/1a8c53c.txt
diff --git a/.riot/requirements/1a92267.txt b/dd-trace-py/.riot/requirements/1a92267.txt
similarity index 100%
rename from .riot/requirements/1a92267.txt
rename to dd-trace-py/.riot/requirements/1a92267.txt
diff --git a/.riot/requirements/1a9ab4c.txt b/dd-trace-py/.riot/requirements/1a9ab4c.txt
similarity index 100%
rename from .riot/requirements/1a9ab4c.txt
rename to dd-trace-py/.riot/requirements/1a9ab4c.txt
diff --git a/.riot/requirements/1aa359d.txt b/dd-trace-py/.riot/requirements/1aa359d.txt
similarity index 100%
rename from .riot/requirements/1aa359d.txt
rename to dd-trace-py/.riot/requirements/1aa359d.txt
diff --git a/.riot/requirements/1aa652f.txt b/dd-trace-py/.riot/requirements/1aa652f.txt
similarity index 100%
rename from .riot/requirements/1aa652f.txt
rename to dd-trace-py/.riot/requirements/1aa652f.txt
diff --git a/.riot/requirements/1aa7e48.txt b/dd-trace-py/.riot/requirements/1aa7e48.txt
similarity index 100%
rename from .riot/requirements/1aa7e48.txt
rename to dd-trace-py/.riot/requirements/1aa7e48.txt
diff --git a/.riot/requirements/1aa7f8c.txt b/dd-trace-py/.riot/requirements/1aa7f8c.txt
similarity index 100%
rename from .riot/requirements/1aa7f8c.txt
rename to dd-trace-py/.riot/requirements/1aa7f8c.txt
diff --git a/.riot/requirements/1ab2cd6.txt b/dd-trace-py/.riot/requirements/1ab2cd6.txt
similarity index 100%
rename from .riot/requirements/1ab2cd6.txt
rename to dd-trace-py/.riot/requirements/1ab2cd6.txt
diff --git a/.riot/requirements/1ab3731.txt b/dd-trace-py/.riot/requirements/1ab3731.txt
similarity index 100%
rename from .riot/requirements/1ab3731.txt
rename to dd-trace-py/.riot/requirements/1ab3731.txt
diff --git a/.riot/requirements/1ab3dac.txt b/dd-trace-py/.riot/requirements/1ab3dac.txt
similarity index 100%
rename from .riot/requirements/1ab3dac.txt
rename to dd-trace-py/.riot/requirements/1ab3dac.txt
diff --git a/.riot/requirements/1ab75a5.txt b/dd-trace-py/.riot/requirements/1ab75a5.txt
similarity index 100%
rename from .riot/requirements/1ab75a5.txt
rename to dd-trace-py/.riot/requirements/1ab75a5.txt
diff --git a/.riot/requirements/1ac29e1.txt b/dd-trace-py/.riot/requirements/1ac29e1.txt
similarity index 100%
rename from .riot/requirements/1ac29e1.txt
rename to dd-trace-py/.riot/requirements/1ac29e1.txt
diff --git a/.riot/requirements/1ac5fb6.txt b/dd-trace-py/.riot/requirements/1ac5fb6.txt
similarity index 100%
rename from .riot/requirements/1ac5fb6.txt
rename to dd-trace-py/.riot/requirements/1ac5fb6.txt
diff --git a/.riot/requirements/1acabe0.txt b/dd-trace-py/.riot/requirements/1acabe0.txt
similarity index 100%
rename from .riot/requirements/1acabe0.txt
rename to dd-trace-py/.riot/requirements/1acabe0.txt
diff --git a/.riot/requirements/1acb1cd.txt b/dd-trace-py/.riot/requirements/1acb1cd.txt
similarity index 100%
rename from .riot/requirements/1acb1cd.txt
rename to dd-trace-py/.riot/requirements/1acb1cd.txt
diff --git a/.riot/requirements/1ace55b.txt b/dd-trace-py/.riot/requirements/1ace55b.txt
similarity index 100%
rename from .riot/requirements/1ace55b.txt
rename to dd-trace-py/.riot/requirements/1ace55b.txt
diff --git a/.riot/requirements/1ad3ffa.txt b/dd-trace-py/.riot/requirements/1ad3ffa.txt
similarity index 100%
rename from .riot/requirements/1ad3ffa.txt
rename to dd-trace-py/.riot/requirements/1ad3ffa.txt
diff --git a/.riot/requirements/1ada48c.txt b/dd-trace-py/.riot/requirements/1ada48c.txt
similarity index 100%
rename from .riot/requirements/1ada48c.txt
rename to dd-trace-py/.riot/requirements/1ada48c.txt
diff --git a/.riot/requirements/1ae24f1.txt b/dd-trace-py/.riot/requirements/1ae24f1.txt
similarity index 100%
rename from .riot/requirements/1ae24f1.txt
rename to dd-trace-py/.riot/requirements/1ae24f1.txt
diff --git a/.riot/requirements/1ae2854.txt b/dd-trace-py/.riot/requirements/1ae2854.txt
similarity index 100%
rename from .riot/requirements/1ae2854.txt
rename to dd-trace-py/.riot/requirements/1ae2854.txt
diff --git a/.riot/requirements/1aed5dc.txt b/dd-trace-py/.riot/requirements/1aed5dc.txt
similarity index 100%
rename from .riot/requirements/1aed5dc.txt
rename to dd-trace-py/.riot/requirements/1aed5dc.txt
diff --git a/.riot/requirements/1aef832.txt b/dd-trace-py/.riot/requirements/1aef832.txt
similarity index 100%
rename from .riot/requirements/1aef832.txt
rename to dd-trace-py/.riot/requirements/1aef832.txt
diff --git a/.riot/requirements/1af899c.txt b/dd-trace-py/.riot/requirements/1af899c.txt
similarity index 100%
rename from .riot/requirements/1af899c.txt
rename to dd-trace-py/.riot/requirements/1af899c.txt
diff --git a/.riot/requirements/1af9cfa.txt b/dd-trace-py/.riot/requirements/1af9cfa.txt
similarity index 100%
rename from .riot/requirements/1af9cfa.txt
rename to dd-trace-py/.riot/requirements/1af9cfa.txt
diff --git a/.riot/requirements/1afeb67.txt b/dd-trace-py/.riot/requirements/1afeb67.txt
similarity index 100%
rename from .riot/requirements/1afeb67.txt
rename to dd-trace-py/.riot/requirements/1afeb67.txt
diff --git a/.riot/requirements/1b13f04.txt b/dd-trace-py/.riot/requirements/1b13f04.txt
similarity index 100%
rename from .riot/requirements/1b13f04.txt
rename to dd-trace-py/.riot/requirements/1b13f04.txt
diff --git a/.riot/requirements/1b18942.txt b/dd-trace-py/.riot/requirements/1b18942.txt
similarity index 100%
rename from .riot/requirements/1b18942.txt
rename to dd-trace-py/.riot/requirements/1b18942.txt
diff --git a/.riot/requirements/1b1913f.txt b/dd-trace-py/.riot/requirements/1b1913f.txt
similarity index 100%
rename from .riot/requirements/1b1913f.txt
rename to dd-trace-py/.riot/requirements/1b1913f.txt
diff --git a/.riot/requirements/1b1c34d.txt b/dd-trace-py/.riot/requirements/1b1c34d.txt
similarity index 100%
rename from .riot/requirements/1b1c34d.txt
rename to dd-trace-py/.riot/requirements/1b1c34d.txt
diff --git a/.riot/requirements/1b1f73d.txt b/dd-trace-py/.riot/requirements/1b1f73d.txt
similarity index 100%
rename from .riot/requirements/1b1f73d.txt
rename to dd-trace-py/.riot/requirements/1b1f73d.txt
diff --git a/.riot/requirements/1b2137c.txt b/dd-trace-py/.riot/requirements/1b2137c.txt
similarity index 100%
rename from .riot/requirements/1b2137c.txt
rename to dd-trace-py/.riot/requirements/1b2137c.txt
diff --git a/.riot/requirements/1b28f6b.txt b/dd-trace-py/.riot/requirements/1b28f6b.txt
similarity index 100%
rename from .riot/requirements/1b28f6b.txt
rename to dd-trace-py/.riot/requirements/1b28f6b.txt
diff --git a/.riot/requirements/1b2b6cf.txt b/dd-trace-py/.riot/requirements/1b2b6cf.txt
similarity index 100%
rename from .riot/requirements/1b2b6cf.txt
rename to dd-trace-py/.riot/requirements/1b2b6cf.txt
diff --git a/.riot/requirements/1b3d47d.txt b/dd-trace-py/.riot/requirements/1b3d47d.txt
similarity index 100%
rename from .riot/requirements/1b3d47d.txt
rename to dd-trace-py/.riot/requirements/1b3d47d.txt
diff --git a/.riot/requirements/1b445ce.txt b/dd-trace-py/.riot/requirements/1b445ce.txt
similarity index 100%
rename from .riot/requirements/1b445ce.txt
rename to dd-trace-py/.riot/requirements/1b445ce.txt
diff --git a/.riot/requirements/1b5081e.txt b/dd-trace-py/.riot/requirements/1b5081e.txt
similarity index 100%
rename from .riot/requirements/1b5081e.txt
rename to dd-trace-py/.riot/requirements/1b5081e.txt
diff --git a/.riot/requirements/1b526a2.txt b/dd-trace-py/.riot/requirements/1b526a2.txt
similarity index 100%
rename from .riot/requirements/1b526a2.txt
rename to dd-trace-py/.riot/requirements/1b526a2.txt
diff --git a/.riot/requirements/1b544ab.txt b/dd-trace-py/.riot/requirements/1b544ab.txt
similarity index 100%
rename from .riot/requirements/1b544ab.txt
rename to dd-trace-py/.riot/requirements/1b544ab.txt
diff --git a/.riot/requirements/1b5c1a9.txt b/dd-trace-py/.riot/requirements/1b5c1a9.txt
similarity index 100%
rename from .riot/requirements/1b5c1a9.txt
rename to dd-trace-py/.riot/requirements/1b5c1a9.txt
diff --git a/.riot/requirements/1b62531.txt b/dd-trace-py/.riot/requirements/1b62531.txt
similarity index 100%
rename from .riot/requirements/1b62531.txt
rename to dd-trace-py/.riot/requirements/1b62531.txt
diff --git a/.riot/requirements/1b6a350.txt b/dd-trace-py/.riot/requirements/1b6a350.txt
similarity index 100%
rename from .riot/requirements/1b6a350.txt
rename to dd-trace-py/.riot/requirements/1b6a350.txt
diff --git a/.riot/requirements/1b6ed54.txt b/dd-trace-py/.riot/requirements/1b6ed54.txt
similarity index 100%
rename from .riot/requirements/1b6ed54.txt
rename to dd-trace-py/.riot/requirements/1b6ed54.txt
diff --git a/.riot/requirements/1b85263.txt b/dd-trace-py/.riot/requirements/1b85263.txt
similarity index 100%
rename from .riot/requirements/1b85263.txt
rename to dd-trace-py/.riot/requirements/1b85263.txt
diff --git a/.riot/requirements/1b8b4e7.txt b/dd-trace-py/.riot/requirements/1b8b4e7.txt
similarity index 100%
rename from .riot/requirements/1b8b4e7.txt
rename to dd-trace-py/.riot/requirements/1b8b4e7.txt
diff --git a/.riot/requirements/1b95281.txt b/dd-trace-py/.riot/requirements/1b95281.txt
similarity index 100%
rename from .riot/requirements/1b95281.txt
rename to dd-trace-py/.riot/requirements/1b95281.txt
diff --git a/.riot/requirements/1b9f856.txt b/dd-trace-py/.riot/requirements/1b9f856.txt
similarity index 100%
rename from .riot/requirements/1b9f856.txt
rename to dd-trace-py/.riot/requirements/1b9f856.txt
diff --git a/.riot/requirements/1ba07f5.txt b/dd-trace-py/.riot/requirements/1ba07f5.txt
similarity index 100%
rename from .riot/requirements/1ba07f5.txt
rename to dd-trace-py/.riot/requirements/1ba07f5.txt
diff --git a/.riot/requirements/1ba390a.txt b/dd-trace-py/.riot/requirements/1ba390a.txt
similarity index 100%
rename from .riot/requirements/1ba390a.txt
rename to dd-trace-py/.riot/requirements/1ba390a.txt
diff --git a/.riot/requirements/1bc194f.txt b/dd-trace-py/.riot/requirements/1bc194f.txt
similarity index 100%
rename from .riot/requirements/1bc194f.txt
rename to dd-trace-py/.riot/requirements/1bc194f.txt
diff --git a/.riot/requirements/1bc5921.txt b/dd-trace-py/.riot/requirements/1bc5921.txt
similarity index 100%
rename from .riot/requirements/1bc5921.txt
rename to dd-trace-py/.riot/requirements/1bc5921.txt
diff --git a/.riot/requirements/1bc972c.txt b/dd-trace-py/.riot/requirements/1bc972c.txt
similarity index 100%
rename from .riot/requirements/1bc972c.txt
rename to dd-trace-py/.riot/requirements/1bc972c.txt
diff --git a/.riot/requirements/1bcb455.txt b/dd-trace-py/.riot/requirements/1bcb455.txt
similarity index 100%
rename from .riot/requirements/1bcb455.txt
rename to dd-trace-py/.riot/requirements/1bcb455.txt
diff --git a/.riot/requirements/1bcb6c6.txt b/dd-trace-py/.riot/requirements/1bcb6c6.txt
similarity index 100%
rename from .riot/requirements/1bcb6c6.txt
rename to dd-trace-py/.riot/requirements/1bcb6c6.txt
diff --git a/.riot/requirements/1bccebd.txt b/dd-trace-py/.riot/requirements/1bccebd.txt
similarity index 100%
rename from .riot/requirements/1bccebd.txt
rename to dd-trace-py/.riot/requirements/1bccebd.txt
diff --git a/.riot/requirements/1bd5d5f.txt b/dd-trace-py/.riot/requirements/1bd5d5f.txt
similarity index 100%
rename from .riot/requirements/1bd5d5f.txt
rename to dd-trace-py/.riot/requirements/1bd5d5f.txt
diff --git a/.riot/requirements/1bdb819.txt b/dd-trace-py/.riot/requirements/1bdb819.txt
similarity index 100%
rename from .riot/requirements/1bdb819.txt
rename to dd-trace-py/.riot/requirements/1bdb819.txt
diff --git a/.riot/requirements/1be8615.txt b/dd-trace-py/.riot/requirements/1be8615.txt
similarity index 100%
rename from .riot/requirements/1be8615.txt
rename to dd-trace-py/.riot/requirements/1be8615.txt
diff --git a/.riot/requirements/1be8f07.txt b/dd-trace-py/.riot/requirements/1be8f07.txt
similarity index 100%
rename from .riot/requirements/1be8f07.txt
rename to dd-trace-py/.riot/requirements/1be8f07.txt
diff --git a/.riot/requirements/1bf4d76.txt b/dd-trace-py/.riot/requirements/1bf4d76.txt
similarity index 100%
rename from .riot/requirements/1bf4d76.txt
rename to dd-trace-py/.riot/requirements/1bf4d76.txt
diff --git a/.riot/requirements/1bf9721.txt b/dd-trace-py/.riot/requirements/1bf9721.txt
similarity index 100%
rename from .riot/requirements/1bf9721.txt
rename to dd-trace-py/.riot/requirements/1bf9721.txt
diff --git a/.riot/requirements/1bfaa0f.txt b/dd-trace-py/.riot/requirements/1bfaa0f.txt
similarity index 100%
rename from .riot/requirements/1bfaa0f.txt
rename to dd-trace-py/.riot/requirements/1bfaa0f.txt
diff --git a/.riot/requirements/1bfb854.txt b/dd-trace-py/.riot/requirements/1bfb854.txt
similarity index 100%
rename from .riot/requirements/1bfb854.txt
rename to dd-trace-py/.riot/requirements/1bfb854.txt
diff --git a/.riot/requirements/1c0c034.txt b/dd-trace-py/.riot/requirements/1c0c034.txt
similarity index 100%
rename from .riot/requirements/1c0c034.txt
rename to dd-trace-py/.riot/requirements/1c0c034.txt
diff --git a/.riot/requirements/1c0f0d6.txt b/dd-trace-py/.riot/requirements/1c0f0d6.txt
similarity index 100%
rename from .riot/requirements/1c0f0d6.txt
rename to dd-trace-py/.riot/requirements/1c0f0d6.txt
diff --git a/.riot/requirements/1c11c55.txt b/dd-trace-py/.riot/requirements/1c11c55.txt
similarity index 100%
rename from .riot/requirements/1c11c55.txt
rename to dd-trace-py/.riot/requirements/1c11c55.txt
diff --git a/.riot/requirements/1c1bb1f.txt b/dd-trace-py/.riot/requirements/1c1bb1f.txt
similarity index 100%
rename from .riot/requirements/1c1bb1f.txt
rename to dd-trace-py/.riot/requirements/1c1bb1f.txt
diff --git a/.riot/requirements/1c21210.txt b/dd-trace-py/.riot/requirements/1c21210.txt
similarity index 100%
rename from .riot/requirements/1c21210.txt
rename to dd-trace-py/.riot/requirements/1c21210.txt
diff --git a/.riot/requirements/1c22cf9.txt b/dd-trace-py/.riot/requirements/1c22cf9.txt
similarity index 100%
rename from .riot/requirements/1c22cf9.txt
rename to dd-trace-py/.riot/requirements/1c22cf9.txt
diff --git a/.riot/requirements/1c25eb1.txt b/dd-trace-py/.riot/requirements/1c25eb1.txt
similarity index 100%
rename from .riot/requirements/1c25eb1.txt
rename to dd-trace-py/.riot/requirements/1c25eb1.txt
diff --git a/.riot/requirements/1c299c5.txt b/dd-trace-py/.riot/requirements/1c299c5.txt
similarity index 100%
rename from .riot/requirements/1c299c5.txt
rename to dd-trace-py/.riot/requirements/1c299c5.txt
diff --git a/.riot/requirements/1c2c464.txt b/dd-trace-py/.riot/requirements/1c2c464.txt
similarity index 100%
rename from .riot/requirements/1c2c464.txt
rename to dd-trace-py/.riot/requirements/1c2c464.txt
diff --git a/.riot/requirements/1c31e90.txt b/dd-trace-py/.riot/requirements/1c31e90.txt
similarity index 100%
rename from .riot/requirements/1c31e90.txt
rename to dd-trace-py/.riot/requirements/1c31e90.txt
diff --git a/.riot/requirements/1c39e96.txt b/dd-trace-py/.riot/requirements/1c39e96.txt
similarity index 100%
rename from .riot/requirements/1c39e96.txt
rename to dd-trace-py/.riot/requirements/1c39e96.txt
diff --git a/.riot/requirements/1c3e3f6.txt b/dd-trace-py/.riot/requirements/1c3e3f6.txt
similarity index 100%
rename from .riot/requirements/1c3e3f6.txt
rename to dd-trace-py/.riot/requirements/1c3e3f6.txt
diff --git a/.riot/requirements/1c3ef81.txt b/dd-trace-py/.riot/requirements/1c3ef81.txt
similarity index 100%
rename from .riot/requirements/1c3ef81.txt
rename to dd-trace-py/.riot/requirements/1c3ef81.txt
diff --git a/.riot/requirements/1c40ae6.txt b/dd-trace-py/.riot/requirements/1c40ae6.txt
similarity index 100%
rename from .riot/requirements/1c40ae6.txt
rename to dd-trace-py/.riot/requirements/1c40ae6.txt
diff --git a/.riot/requirements/1c414f2.txt b/dd-trace-py/.riot/requirements/1c414f2.txt
similarity index 100%
rename from .riot/requirements/1c414f2.txt
rename to dd-trace-py/.riot/requirements/1c414f2.txt
diff --git a/.riot/requirements/1c48d4b.txt b/dd-trace-py/.riot/requirements/1c48d4b.txt
similarity index 100%
rename from .riot/requirements/1c48d4b.txt
rename to dd-trace-py/.riot/requirements/1c48d4b.txt
diff --git a/.riot/requirements/1c4a762.txt b/dd-trace-py/.riot/requirements/1c4a762.txt
similarity index 100%
rename from .riot/requirements/1c4a762.txt
rename to dd-trace-py/.riot/requirements/1c4a762.txt
diff --git a/.riot/requirements/1c53a7f.txt b/dd-trace-py/.riot/requirements/1c53a7f.txt
similarity index 100%
rename from .riot/requirements/1c53a7f.txt
rename to dd-trace-py/.riot/requirements/1c53a7f.txt
diff --git a/.riot/requirements/1c55d86.txt b/dd-trace-py/.riot/requirements/1c55d86.txt
similarity index 100%
rename from .riot/requirements/1c55d86.txt
rename to dd-trace-py/.riot/requirements/1c55d86.txt
diff --git a/.riot/requirements/1c5afd9.txt b/dd-trace-py/.riot/requirements/1c5afd9.txt
similarity index 100%
rename from .riot/requirements/1c5afd9.txt
rename to dd-trace-py/.riot/requirements/1c5afd9.txt
diff --git a/.riot/requirements/1c60274.txt b/dd-trace-py/.riot/requirements/1c60274.txt
similarity index 100%
rename from .riot/requirements/1c60274.txt
rename to dd-trace-py/.riot/requirements/1c60274.txt
diff --git a/.riot/requirements/1c64cfc.txt b/dd-trace-py/.riot/requirements/1c64cfc.txt
similarity index 100%
rename from .riot/requirements/1c64cfc.txt
rename to dd-trace-py/.riot/requirements/1c64cfc.txt
diff --git a/.riot/requirements/1c65635.txt b/dd-trace-py/.riot/requirements/1c65635.txt
similarity index 100%
rename from .riot/requirements/1c65635.txt
rename to dd-trace-py/.riot/requirements/1c65635.txt
diff --git a/.riot/requirements/1c67f9c.txt b/dd-trace-py/.riot/requirements/1c67f9c.txt
similarity index 100%
rename from .riot/requirements/1c67f9c.txt
rename to dd-trace-py/.riot/requirements/1c67f9c.txt
diff --git a/.riot/requirements/1c68cd4.txt b/dd-trace-py/.riot/requirements/1c68cd4.txt
similarity index 100%
rename from .riot/requirements/1c68cd4.txt
rename to dd-trace-py/.riot/requirements/1c68cd4.txt
diff --git a/.riot/requirements/1c6984e.txt b/dd-trace-py/.riot/requirements/1c6984e.txt
similarity index 100%
rename from .riot/requirements/1c6984e.txt
rename to dd-trace-py/.riot/requirements/1c6984e.txt
diff --git a/.riot/requirements/1c6c710.txt b/dd-trace-py/.riot/requirements/1c6c710.txt
similarity index 100%
rename from .riot/requirements/1c6c710.txt
rename to dd-trace-py/.riot/requirements/1c6c710.txt
diff --git a/.riot/requirements/1c72bfb.txt b/dd-trace-py/.riot/requirements/1c72bfb.txt
similarity index 100%
rename from .riot/requirements/1c72bfb.txt
rename to dd-trace-py/.riot/requirements/1c72bfb.txt
diff --git a/.riot/requirements/1c76020.txt b/dd-trace-py/.riot/requirements/1c76020.txt
similarity index 100%
rename from .riot/requirements/1c76020.txt
rename to dd-trace-py/.riot/requirements/1c76020.txt
diff --git a/.riot/requirements/1c7e197.txt b/dd-trace-py/.riot/requirements/1c7e197.txt
similarity index 100%
rename from .riot/requirements/1c7e197.txt
rename to dd-trace-py/.riot/requirements/1c7e197.txt
diff --git a/.riot/requirements/1c86789.txt b/dd-trace-py/.riot/requirements/1c86789.txt
similarity index 100%
rename from .riot/requirements/1c86789.txt
rename to dd-trace-py/.riot/requirements/1c86789.txt
diff --git a/.riot/requirements/1c89113.txt b/dd-trace-py/.riot/requirements/1c89113.txt
similarity index 100%
rename from .riot/requirements/1c89113.txt
rename to dd-trace-py/.riot/requirements/1c89113.txt
diff --git a/.riot/requirements/1c9aae5.txt b/dd-trace-py/.riot/requirements/1c9aae5.txt
similarity index 100%
rename from .riot/requirements/1c9aae5.txt
rename to dd-trace-py/.riot/requirements/1c9aae5.txt
diff --git a/.riot/requirements/1ca3564.txt b/dd-trace-py/.riot/requirements/1ca3564.txt
similarity index 100%
rename from .riot/requirements/1ca3564.txt
rename to dd-trace-py/.riot/requirements/1ca3564.txt
diff --git a/.riot/requirements/1cb27f2.txt b/dd-trace-py/.riot/requirements/1cb27f2.txt
similarity index 100%
rename from .riot/requirements/1cb27f2.txt
rename to dd-trace-py/.riot/requirements/1cb27f2.txt
diff --git a/.riot/requirements/1cb554e.txt b/dd-trace-py/.riot/requirements/1cb554e.txt
similarity index 100%
rename from .riot/requirements/1cb554e.txt
rename to dd-trace-py/.riot/requirements/1cb554e.txt
diff --git a/.riot/requirements/1cb6659.txt b/dd-trace-py/.riot/requirements/1cb6659.txt
similarity index 100%
rename from .riot/requirements/1cb6659.txt
rename to dd-trace-py/.riot/requirements/1cb6659.txt
diff --git a/.riot/requirements/1cc0636.txt b/dd-trace-py/.riot/requirements/1cc0636.txt
similarity index 100%
rename from .riot/requirements/1cc0636.txt
rename to dd-trace-py/.riot/requirements/1cc0636.txt
diff --git a/.riot/requirements/1cc0b24.txt b/dd-trace-py/.riot/requirements/1cc0b24.txt
similarity index 100%
rename from .riot/requirements/1cc0b24.txt
rename to dd-trace-py/.riot/requirements/1cc0b24.txt
diff --git a/.riot/requirements/1cc2b88.txt b/dd-trace-py/.riot/requirements/1cc2b88.txt
similarity index 100%
rename from .riot/requirements/1cc2b88.txt
rename to dd-trace-py/.riot/requirements/1cc2b88.txt
diff --git a/.riot/requirements/1cc47fc.txt b/dd-trace-py/.riot/requirements/1cc47fc.txt
similarity index 100%
rename from .riot/requirements/1cc47fc.txt
rename to dd-trace-py/.riot/requirements/1cc47fc.txt
diff --git a/.riot/requirements/1cc4dd1.txt b/dd-trace-py/.riot/requirements/1cc4dd1.txt
similarity index 100%
rename from .riot/requirements/1cc4dd1.txt
rename to dd-trace-py/.riot/requirements/1cc4dd1.txt
diff --git a/.riot/requirements/1cc84f1.txt b/dd-trace-py/.riot/requirements/1cc84f1.txt
similarity index 100%
rename from .riot/requirements/1cc84f1.txt
rename to dd-trace-py/.riot/requirements/1cc84f1.txt
diff --git a/.riot/requirements/1ccf91d.txt b/dd-trace-py/.riot/requirements/1ccf91d.txt
similarity index 100%
rename from .riot/requirements/1ccf91d.txt
rename to dd-trace-py/.riot/requirements/1ccf91d.txt
diff --git a/.riot/requirements/1cd0e13.txt b/dd-trace-py/.riot/requirements/1cd0e13.txt
similarity index 100%
rename from .riot/requirements/1cd0e13.txt
rename to dd-trace-py/.riot/requirements/1cd0e13.txt
diff --git a/.riot/requirements/1cd2a90.txt b/dd-trace-py/.riot/requirements/1cd2a90.txt
similarity index 100%
rename from .riot/requirements/1cd2a90.txt
rename to dd-trace-py/.riot/requirements/1cd2a90.txt
diff --git a/.riot/requirements/1cd7351.txt b/dd-trace-py/.riot/requirements/1cd7351.txt
similarity index 100%
rename from .riot/requirements/1cd7351.txt
rename to dd-trace-py/.riot/requirements/1cd7351.txt
diff --git a/.riot/requirements/1cd7717.txt b/dd-trace-py/.riot/requirements/1cd7717.txt
similarity index 100%
rename from .riot/requirements/1cd7717.txt
rename to dd-trace-py/.riot/requirements/1cd7717.txt
diff --git a/.riot/requirements/1cd7c2e.txt b/dd-trace-py/.riot/requirements/1cd7c2e.txt
similarity index 100%
rename from .riot/requirements/1cd7c2e.txt
rename to dd-trace-py/.riot/requirements/1cd7c2e.txt
diff --git a/.riot/requirements/1cd7daa.txt b/dd-trace-py/.riot/requirements/1cd7daa.txt
similarity index 100%
rename from .riot/requirements/1cd7daa.txt
rename to dd-trace-py/.riot/requirements/1cd7daa.txt
diff --git a/.riot/requirements/1cd9ad2.txt b/dd-trace-py/.riot/requirements/1cd9ad2.txt
similarity index 100%
rename from .riot/requirements/1cd9ad2.txt
rename to dd-trace-py/.riot/requirements/1cd9ad2.txt
diff --git a/.riot/requirements/1ce083a.txt b/dd-trace-py/.riot/requirements/1ce083a.txt
similarity index 100%
rename from .riot/requirements/1ce083a.txt
rename to dd-trace-py/.riot/requirements/1ce083a.txt
diff --git a/.riot/requirements/1ce3960.txt b/dd-trace-py/.riot/requirements/1ce3960.txt
similarity index 100%
rename from .riot/requirements/1ce3960.txt
rename to dd-trace-py/.riot/requirements/1ce3960.txt
diff --git a/.riot/requirements/1ce4995.txt b/dd-trace-py/.riot/requirements/1ce4995.txt
similarity index 100%
rename from .riot/requirements/1ce4995.txt
rename to dd-trace-py/.riot/requirements/1ce4995.txt
diff --git a/.riot/requirements/1ce53fb.txt b/dd-trace-py/.riot/requirements/1ce53fb.txt
similarity index 100%
rename from .riot/requirements/1ce53fb.txt
rename to dd-trace-py/.riot/requirements/1ce53fb.txt
diff --git a/.riot/requirements/1ce7bd9.txt b/dd-trace-py/.riot/requirements/1ce7bd9.txt
similarity index 100%
rename from .riot/requirements/1ce7bd9.txt
rename to dd-trace-py/.riot/requirements/1ce7bd9.txt
diff --git a/.riot/requirements/1ceb856.txt b/dd-trace-py/.riot/requirements/1ceb856.txt
similarity index 100%
rename from .riot/requirements/1ceb856.txt
rename to dd-trace-py/.riot/requirements/1ceb856.txt
diff --git a/.riot/requirements/1ceebcd.txt b/dd-trace-py/.riot/requirements/1ceebcd.txt
similarity index 100%
rename from .riot/requirements/1ceebcd.txt
rename to dd-trace-py/.riot/requirements/1ceebcd.txt
diff --git a/.riot/requirements/1cefe54.txt b/dd-trace-py/.riot/requirements/1cefe54.txt
similarity index 100%
rename from .riot/requirements/1cefe54.txt
rename to dd-trace-py/.riot/requirements/1cefe54.txt
diff --git a/.riot/requirements/1cf7f11.txt b/dd-trace-py/.riot/requirements/1cf7f11.txt
similarity index 100%
rename from .riot/requirements/1cf7f11.txt
rename to dd-trace-py/.riot/requirements/1cf7f11.txt
diff --git a/.riot/requirements/1cfa59c.txt b/dd-trace-py/.riot/requirements/1cfa59c.txt
similarity index 100%
rename from .riot/requirements/1cfa59c.txt
rename to dd-trace-py/.riot/requirements/1cfa59c.txt
diff --git a/.riot/requirements/1cfc8b7.txt b/dd-trace-py/.riot/requirements/1cfc8b7.txt
similarity index 100%
rename from .riot/requirements/1cfc8b7.txt
rename to dd-trace-py/.riot/requirements/1cfc8b7.txt
diff --git a/.riot/requirements/1d04c8d.txt b/dd-trace-py/.riot/requirements/1d04c8d.txt
similarity index 100%
rename from .riot/requirements/1d04c8d.txt
rename to dd-trace-py/.riot/requirements/1d04c8d.txt
diff --git a/.riot/requirements/1d07c9f.txt b/dd-trace-py/.riot/requirements/1d07c9f.txt
similarity index 100%
rename from .riot/requirements/1d07c9f.txt
rename to dd-trace-py/.riot/requirements/1d07c9f.txt
diff --git a/.riot/requirements/1d07e1a.txt b/dd-trace-py/.riot/requirements/1d07e1a.txt
similarity index 100%
rename from .riot/requirements/1d07e1a.txt
rename to dd-trace-py/.riot/requirements/1d07e1a.txt
diff --git a/.riot/requirements/1d0d96c.txt b/dd-trace-py/.riot/requirements/1d0d96c.txt
similarity index 100%
rename from .riot/requirements/1d0d96c.txt
rename to dd-trace-py/.riot/requirements/1d0d96c.txt
diff --git a/.riot/requirements/1d10c25.txt b/dd-trace-py/.riot/requirements/1d10c25.txt
similarity index 100%
rename from .riot/requirements/1d10c25.txt
rename to dd-trace-py/.riot/requirements/1d10c25.txt
diff --git a/.riot/requirements/1d14180.txt b/dd-trace-py/.riot/requirements/1d14180.txt
similarity index 100%
rename from .riot/requirements/1d14180.txt
rename to dd-trace-py/.riot/requirements/1d14180.txt
diff --git a/.riot/requirements/1d14cdc.txt b/dd-trace-py/.riot/requirements/1d14cdc.txt
similarity index 100%
rename from .riot/requirements/1d14cdc.txt
rename to dd-trace-py/.riot/requirements/1d14cdc.txt
diff --git a/.riot/requirements/1d15df5.txt b/dd-trace-py/.riot/requirements/1d15df5.txt
similarity index 100%
rename from .riot/requirements/1d15df5.txt
rename to dd-trace-py/.riot/requirements/1d15df5.txt
diff --git a/.riot/requirements/1d20b78.txt b/dd-trace-py/.riot/requirements/1d20b78.txt
similarity index 100%
rename from .riot/requirements/1d20b78.txt
rename to dd-trace-py/.riot/requirements/1d20b78.txt
diff --git a/.riot/requirements/1d27b17.txt b/dd-trace-py/.riot/requirements/1d27b17.txt
similarity index 100%
rename from .riot/requirements/1d27b17.txt
rename to dd-trace-py/.riot/requirements/1d27b17.txt
diff --git a/.riot/requirements/1d282b1.txt b/dd-trace-py/.riot/requirements/1d282b1.txt
similarity index 100%
rename from .riot/requirements/1d282b1.txt
rename to dd-trace-py/.riot/requirements/1d282b1.txt
diff --git a/.riot/requirements/1d2d50f.txt b/dd-trace-py/.riot/requirements/1d2d50f.txt
similarity index 100%
rename from .riot/requirements/1d2d50f.txt
rename to dd-trace-py/.riot/requirements/1d2d50f.txt
diff --git a/.riot/requirements/1d2ff18.txt b/dd-trace-py/.riot/requirements/1d2ff18.txt
similarity index 100%
rename from .riot/requirements/1d2ff18.txt
rename to dd-trace-py/.riot/requirements/1d2ff18.txt
diff --git a/.riot/requirements/1d32f58.txt b/dd-trace-py/.riot/requirements/1d32f58.txt
similarity index 100%
rename from .riot/requirements/1d32f58.txt
rename to dd-trace-py/.riot/requirements/1d32f58.txt
diff --git a/.riot/requirements/1d36b1d.txt b/dd-trace-py/.riot/requirements/1d36b1d.txt
similarity index 100%
rename from .riot/requirements/1d36b1d.txt
rename to dd-trace-py/.riot/requirements/1d36b1d.txt
diff --git a/.riot/requirements/1d36df8.txt b/dd-trace-py/.riot/requirements/1d36df8.txt
similarity index 100%
rename from .riot/requirements/1d36df8.txt
rename to dd-trace-py/.riot/requirements/1d36df8.txt
diff --git a/.riot/requirements/1d3e0cc.txt b/dd-trace-py/.riot/requirements/1d3e0cc.txt
similarity index 100%
rename from .riot/requirements/1d3e0cc.txt
rename to dd-trace-py/.riot/requirements/1d3e0cc.txt
diff --git a/.riot/requirements/1d3e756.txt b/dd-trace-py/.riot/requirements/1d3e756.txt
similarity index 100%
rename from .riot/requirements/1d3e756.txt
rename to dd-trace-py/.riot/requirements/1d3e756.txt
diff --git a/.riot/requirements/1d41360.txt b/dd-trace-py/.riot/requirements/1d41360.txt
similarity index 100%
rename from .riot/requirements/1d41360.txt
rename to dd-trace-py/.riot/requirements/1d41360.txt
diff --git a/.riot/requirements/1d41aca.txt b/dd-trace-py/.riot/requirements/1d41aca.txt
similarity index 100%
rename from .riot/requirements/1d41aca.txt
rename to dd-trace-py/.riot/requirements/1d41aca.txt
diff --git a/.riot/requirements/1d45d3e.txt b/dd-trace-py/.riot/requirements/1d45d3e.txt
similarity index 100%
rename from .riot/requirements/1d45d3e.txt
rename to dd-trace-py/.riot/requirements/1d45d3e.txt
diff --git a/.riot/requirements/1d46e6d.txt b/dd-trace-py/.riot/requirements/1d46e6d.txt
similarity index 100%
rename from .riot/requirements/1d46e6d.txt
rename to dd-trace-py/.riot/requirements/1d46e6d.txt
diff --git a/.riot/requirements/1d488a9.txt b/dd-trace-py/.riot/requirements/1d488a9.txt
similarity index 100%
rename from .riot/requirements/1d488a9.txt
rename to dd-trace-py/.riot/requirements/1d488a9.txt
diff --git a/.riot/requirements/1d4ddd7.txt b/dd-trace-py/.riot/requirements/1d4ddd7.txt
similarity index 100%
rename from .riot/requirements/1d4ddd7.txt
rename to dd-trace-py/.riot/requirements/1d4ddd7.txt
diff --git a/.riot/requirements/1d50090.txt b/dd-trace-py/.riot/requirements/1d50090.txt
similarity index 100%
rename from .riot/requirements/1d50090.txt
rename to dd-trace-py/.riot/requirements/1d50090.txt
diff --git a/.riot/requirements/1d5012c.txt b/dd-trace-py/.riot/requirements/1d5012c.txt
similarity index 100%
rename from .riot/requirements/1d5012c.txt
rename to dd-trace-py/.riot/requirements/1d5012c.txt
diff --git a/.riot/requirements/1d52546.txt b/dd-trace-py/.riot/requirements/1d52546.txt
similarity index 100%
rename from .riot/requirements/1d52546.txt
rename to dd-trace-py/.riot/requirements/1d52546.txt
diff --git a/.riot/requirements/1d536c3.txt b/dd-trace-py/.riot/requirements/1d536c3.txt
similarity index 100%
rename from .riot/requirements/1d536c3.txt
rename to dd-trace-py/.riot/requirements/1d536c3.txt
diff --git a/.riot/requirements/1d6049b.txt b/dd-trace-py/.riot/requirements/1d6049b.txt
similarity index 100%
rename from .riot/requirements/1d6049b.txt
rename to dd-trace-py/.riot/requirements/1d6049b.txt
diff --git a/.riot/requirements/1d65880.txt b/dd-trace-py/.riot/requirements/1d65880.txt
similarity index 100%
rename from .riot/requirements/1d65880.txt
rename to dd-trace-py/.riot/requirements/1d65880.txt
diff --git a/.riot/requirements/1d71e80.txt b/dd-trace-py/.riot/requirements/1d71e80.txt
similarity index 100%
rename from .riot/requirements/1d71e80.txt
rename to dd-trace-py/.riot/requirements/1d71e80.txt
diff --git a/.riot/requirements/1d760c6.txt b/dd-trace-py/.riot/requirements/1d760c6.txt
similarity index 100%
rename from .riot/requirements/1d760c6.txt
rename to dd-trace-py/.riot/requirements/1d760c6.txt
diff --git a/.riot/requirements/1d77f1d.txt b/dd-trace-py/.riot/requirements/1d77f1d.txt
similarity index 100%
rename from .riot/requirements/1d77f1d.txt
rename to dd-trace-py/.riot/requirements/1d77f1d.txt
diff --git a/.riot/requirements/1d7b20f.txt b/dd-trace-py/.riot/requirements/1d7b20f.txt
similarity index 100%
rename from .riot/requirements/1d7b20f.txt
rename to dd-trace-py/.riot/requirements/1d7b20f.txt
diff --git a/.riot/requirements/1d7cb11.txt b/dd-trace-py/.riot/requirements/1d7cb11.txt
similarity index 100%
rename from .riot/requirements/1d7cb11.txt
rename to dd-trace-py/.riot/requirements/1d7cb11.txt
diff --git a/.riot/requirements/1d86a10.txt b/dd-trace-py/.riot/requirements/1d86a10.txt
similarity index 100%
rename from .riot/requirements/1d86a10.txt
rename to dd-trace-py/.riot/requirements/1d86a10.txt
diff --git a/.riot/requirements/1d8d3c6.txt b/dd-trace-py/.riot/requirements/1d8d3c6.txt
similarity index 100%
rename from .riot/requirements/1d8d3c6.txt
rename to dd-trace-py/.riot/requirements/1d8d3c6.txt
diff --git a/.riot/requirements/1d915ff.txt b/dd-trace-py/.riot/requirements/1d915ff.txt
similarity index 100%
rename from .riot/requirements/1d915ff.txt
rename to dd-trace-py/.riot/requirements/1d915ff.txt
diff --git a/.riot/requirements/1d92ad2.txt b/dd-trace-py/.riot/requirements/1d92ad2.txt
similarity index 100%
rename from .riot/requirements/1d92ad2.txt
rename to dd-trace-py/.riot/requirements/1d92ad2.txt
diff --git a/.riot/requirements/1d945e9.txt b/dd-trace-py/.riot/requirements/1d945e9.txt
similarity index 100%
rename from .riot/requirements/1d945e9.txt
rename to dd-trace-py/.riot/requirements/1d945e9.txt
diff --git a/.riot/requirements/1d96084.txt b/dd-trace-py/.riot/requirements/1d96084.txt
similarity index 100%
rename from .riot/requirements/1d96084.txt
rename to dd-trace-py/.riot/requirements/1d96084.txt
diff --git a/.riot/requirements/1d9a1e2.txt b/dd-trace-py/.riot/requirements/1d9a1e2.txt
similarity index 100%
rename from .riot/requirements/1d9a1e2.txt
rename to dd-trace-py/.riot/requirements/1d9a1e2.txt
diff --git a/.riot/requirements/1d9a544.txt b/dd-trace-py/.riot/requirements/1d9a544.txt
similarity index 100%
rename from .riot/requirements/1d9a544.txt
rename to dd-trace-py/.riot/requirements/1d9a544.txt
diff --git a/.riot/requirements/1da0270.txt b/dd-trace-py/.riot/requirements/1da0270.txt
similarity index 100%
rename from .riot/requirements/1da0270.txt
rename to dd-trace-py/.riot/requirements/1da0270.txt
diff --git a/.riot/requirements/1da87ce.txt b/dd-trace-py/.riot/requirements/1da87ce.txt
similarity index 100%
rename from .riot/requirements/1da87ce.txt
rename to dd-trace-py/.riot/requirements/1da87ce.txt
diff --git a/.riot/requirements/1da9510.txt b/dd-trace-py/.riot/requirements/1da9510.txt
similarity index 100%
rename from .riot/requirements/1da9510.txt
rename to dd-trace-py/.riot/requirements/1da9510.txt
diff --git a/.riot/requirements/1da9e5b.txt b/dd-trace-py/.riot/requirements/1da9e5b.txt
similarity index 100%
rename from .riot/requirements/1da9e5b.txt
rename to dd-trace-py/.riot/requirements/1da9e5b.txt
diff --git a/.riot/requirements/1da9fd6.txt b/dd-trace-py/.riot/requirements/1da9fd6.txt
similarity index 100%
rename from .riot/requirements/1da9fd6.txt
rename to dd-trace-py/.riot/requirements/1da9fd6.txt
diff --git a/.riot/requirements/1dacc91.txt b/dd-trace-py/.riot/requirements/1dacc91.txt
similarity index 100%
rename from .riot/requirements/1dacc91.txt
rename to dd-trace-py/.riot/requirements/1dacc91.txt
diff --git a/.riot/requirements/1dadf2b.txt b/dd-trace-py/.riot/requirements/1dadf2b.txt
similarity index 100%
rename from .riot/requirements/1dadf2b.txt
rename to dd-trace-py/.riot/requirements/1dadf2b.txt
diff --git a/.riot/requirements/1daf82a.txt b/dd-trace-py/.riot/requirements/1daf82a.txt
similarity index 100%
rename from .riot/requirements/1daf82a.txt
rename to dd-trace-py/.riot/requirements/1daf82a.txt
diff --git a/.riot/requirements/1db0994.txt b/dd-trace-py/.riot/requirements/1db0994.txt
similarity index 100%
rename from .riot/requirements/1db0994.txt
rename to dd-trace-py/.riot/requirements/1db0994.txt
diff --git a/.riot/requirements/1db410d.txt b/dd-trace-py/.riot/requirements/1db410d.txt
similarity index 100%
rename from .riot/requirements/1db410d.txt
rename to dd-trace-py/.riot/requirements/1db410d.txt
diff --git a/.riot/requirements/1db8fe7.txt b/dd-trace-py/.riot/requirements/1db8fe7.txt
similarity index 100%
rename from .riot/requirements/1db8fe7.txt
rename to dd-trace-py/.riot/requirements/1db8fe7.txt
diff --git a/.riot/requirements/1dbb110.txt b/dd-trace-py/.riot/requirements/1dbb110.txt
similarity index 100%
rename from .riot/requirements/1dbb110.txt
rename to dd-trace-py/.riot/requirements/1dbb110.txt
diff --git a/.riot/requirements/1dbdbea.txt b/dd-trace-py/.riot/requirements/1dbdbea.txt
similarity index 100%
rename from .riot/requirements/1dbdbea.txt
rename to dd-trace-py/.riot/requirements/1dbdbea.txt
diff --git a/.riot/requirements/1dbeaa3.txt b/dd-trace-py/.riot/requirements/1dbeaa3.txt
similarity index 100%
rename from .riot/requirements/1dbeaa3.txt
rename to dd-trace-py/.riot/requirements/1dbeaa3.txt
diff --git a/.riot/requirements/1dc3684.txt b/dd-trace-py/.riot/requirements/1dc3684.txt
similarity index 100%
rename from .riot/requirements/1dc3684.txt
rename to dd-trace-py/.riot/requirements/1dc3684.txt
diff --git a/.riot/requirements/1dc5517.txt b/dd-trace-py/.riot/requirements/1dc5517.txt
similarity index 100%
rename from .riot/requirements/1dc5517.txt
rename to dd-trace-py/.riot/requirements/1dc5517.txt
diff --git a/.riot/requirements/1dc5917.txt b/dd-trace-py/.riot/requirements/1dc5917.txt
similarity index 100%
rename from .riot/requirements/1dc5917.txt
rename to dd-trace-py/.riot/requirements/1dc5917.txt
diff --git a/.riot/requirements/1dc9122.txt b/dd-trace-py/.riot/requirements/1dc9122.txt
similarity index 100%
rename from .riot/requirements/1dc9122.txt
rename to dd-trace-py/.riot/requirements/1dc9122.txt
diff --git a/.riot/requirements/1dcce79.txt b/dd-trace-py/.riot/requirements/1dcce79.txt
similarity index 100%
rename from .riot/requirements/1dcce79.txt
rename to dd-trace-py/.riot/requirements/1dcce79.txt
diff --git a/.riot/requirements/1dcf144.txt b/dd-trace-py/.riot/requirements/1dcf144.txt
similarity index 100%
rename from .riot/requirements/1dcf144.txt
rename to dd-trace-py/.riot/requirements/1dcf144.txt
diff --git a/.riot/requirements/1dcf293.txt b/dd-trace-py/.riot/requirements/1dcf293.txt
similarity index 100%
rename from .riot/requirements/1dcf293.txt
rename to dd-trace-py/.riot/requirements/1dcf293.txt
diff --git a/.riot/requirements/1dcfbb2.txt b/dd-trace-py/.riot/requirements/1dcfbb2.txt
similarity index 100%
rename from .riot/requirements/1dcfbb2.txt
rename to dd-trace-py/.riot/requirements/1dcfbb2.txt
diff --git a/.riot/requirements/1ddcf3c.txt b/dd-trace-py/.riot/requirements/1ddcf3c.txt
similarity index 100%
rename from .riot/requirements/1ddcf3c.txt
rename to dd-trace-py/.riot/requirements/1ddcf3c.txt
diff --git a/.riot/requirements/1deb5fd.txt b/dd-trace-py/.riot/requirements/1deb5fd.txt
similarity index 100%
rename from .riot/requirements/1deb5fd.txt
rename to dd-trace-py/.riot/requirements/1deb5fd.txt
diff --git a/.riot/requirements/1ded764.txt b/dd-trace-py/.riot/requirements/1ded764.txt
similarity index 100%
rename from .riot/requirements/1ded764.txt
rename to dd-trace-py/.riot/requirements/1ded764.txt
diff --git a/.riot/requirements/1df4aa0.txt b/dd-trace-py/.riot/requirements/1df4aa0.txt
similarity index 100%
rename from .riot/requirements/1df4aa0.txt
rename to dd-trace-py/.riot/requirements/1df4aa0.txt
diff --git a/.riot/requirements/1df6dfb.txt b/dd-trace-py/.riot/requirements/1df6dfb.txt
similarity index 100%
rename from .riot/requirements/1df6dfb.txt
rename to dd-trace-py/.riot/requirements/1df6dfb.txt
diff --git a/.riot/requirements/1df916a.txt b/dd-trace-py/.riot/requirements/1df916a.txt
similarity index 100%
rename from .riot/requirements/1df916a.txt
rename to dd-trace-py/.riot/requirements/1df916a.txt
diff --git a/.riot/requirements/1e0312b.txt b/dd-trace-py/.riot/requirements/1e0312b.txt
similarity index 100%
rename from .riot/requirements/1e0312b.txt
rename to dd-trace-py/.riot/requirements/1e0312b.txt
diff --git a/.riot/requirements/1e050b8.txt b/dd-trace-py/.riot/requirements/1e050b8.txt
similarity index 100%
rename from .riot/requirements/1e050b8.txt
rename to dd-trace-py/.riot/requirements/1e050b8.txt
diff --git a/.riot/requirements/1e05e0c.txt b/dd-trace-py/.riot/requirements/1e05e0c.txt
similarity index 100%
rename from .riot/requirements/1e05e0c.txt
rename to dd-trace-py/.riot/requirements/1e05e0c.txt
diff --git a/.riot/requirements/1e09557.txt b/dd-trace-py/.riot/requirements/1e09557.txt
similarity index 100%
rename from .riot/requirements/1e09557.txt
rename to dd-trace-py/.riot/requirements/1e09557.txt
diff --git a/.riot/requirements/1e0ec0b.txt b/dd-trace-py/.riot/requirements/1e0ec0b.txt
similarity index 100%
rename from .riot/requirements/1e0ec0b.txt
rename to dd-trace-py/.riot/requirements/1e0ec0b.txt
diff --git a/.riot/requirements/1e126f8.txt b/dd-trace-py/.riot/requirements/1e126f8.txt
similarity index 100%
rename from .riot/requirements/1e126f8.txt
rename to dd-trace-py/.riot/requirements/1e126f8.txt
diff --git a/.riot/requirements/1e15309.txt b/dd-trace-py/.riot/requirements/1e15309.txt
similarity index 100%
rename from .riot/requirements/1e15309.txt
rename to dd-trace-py/.riot/requirements/1e15309.txt
diff --git a/.riot/requirements/1e2c1f1.txt b/dd-trace-py/.riot/requirements/1e2c1f1.txt
similarity index 100%
rename from .riot/requirements/1e2c1f1.txt
rename to dd-trace-py/.riot/requirements/1e2c1f1.txt
diff --git a/.riot/requirements/1e311f5.txt b/dd-trace-py/.riot/requirements/1e311f5.txt
similarity index 100%
rename from .riot/requirements/1e311f5.txt
rename to dd-trace-py/.riot/requirements/1e311f5.txt
diff --git a/.riot/requirements/1e35304.txt b/dd-trace-py/.riot/requirements/1e35304.txt
similarity index 100%
rename from .riot/requirements/1e35304.txt
rename to dd-trace-py/.riot/requirements/1e35304.txt
diff --git a/.riot/requirements/1e38375.txt b/dd-trace-py/.riot/requirements/1e38375.txt
similarity index 100%
rename from .riot/requirements/1e38375.txt
rename to dd-trace-py/.riot/requirements/1e38375.txt
diff --git a/.riot/requirements/1e3ca58.txt b/dd-trace-py/.riot/requirements/1e3ca58.txt
similarity index 100%
rename from .riot/requirements/1e3ca58.txt
rename to dd-trace-py/.riot/requirements/1e3ca58.txt
diff --git a/.riot/requirements/1e3d6f0.txt b/dd-trace-py/.riot/requirements/1e3d6f0.txt
similarity index 100%
rename from .riot/requirements/1e3d6f0.txt
rename to dd-trace-py/.riot/requirements/1e3d6f0.txt
diff --git a/.riot/requirements/1e3f661.txt b/dd-trace-py/.riot/requirements/1e3f661.txt
similarity index 100%
rename from .riot/requirements/1e3f661.txt
rename to dd-trace-py/.riot/requirements/1e3f661.txt
diff --git a/.riot/requirements/1e457f1.txt b/dd-trace-py/.riot/requirements/1e457f1.txt
similarity index 100%
rename from .riot/requirements/1e457f1.txt
rename to dd-trace-py/.riot/requirements/1e457f1.txt
diff --git a/.riot/requirements/1e4bf1b.txt b/dd-trace-py/.riot/requirements/1e4bf1b.txt
similarity index 100%
rename from .riot/requirements/1e4bf1b.txt
rename to dd-trace-py/.riot/requirements/1e4bf1b.txt
diff --git a/.riot/requirements/1e4eb10.txt b/dd-trace-py/.riot/requirements/1e4eb10.txt
similarity index 100%
rename from .riot/requirements/1e4eb10.txt
rename to dd-trace-py/.riot/requirements/1e4eb10.txt
diff --git a/.riot/requirements/1e52980.txt b/dd-trace-py/.riot/requirements/1e52980.txt
similarity index 100%
rename from .riot/requirements/1e52980.txt
rename to dd-trace-py/.riot/requirements/1e52980.txt
diff --git a/.riot/requirements/1e537de.txt b/dd-trace-py/.riot/requirements/1e537de.txt
similarity index 100%
rename from .riot/requirements/1e537de.txt
rename to dd-trace-py/.riot/requirements/1e537de.txt
diff --git a/.riot/requirements/1e53fef.txt b/dd-trace-py/.riot/requirements/1e53fef.txt
similarity index 100%
rename from .riot/requirements/1e53fef.txt
rename to dd-trace-py/.riot/requirements/1e53fef.txt
diff --git a/.riot/requirements/1e54104.txt b/dd-trace-py/.riot/requirements/1e54104.txt
similarity index 100%
rename from .riot/requirements/1e54104.txt
rename to dd-trace-py/.riot/requirements/1e54104.txt
diff --git a/.riot/requirements/1e5b079.txt b/dd-trace-py/.riot/requirements/1e5b079.txt
similarity index 100%
rename from .riot/requirements/1e5b079.txt
rename to dd-trace-py/.riot/requirements/1e5b079.txt
diff --git a/.riot/requirements/1e5b975.txt b/dd-trace-py/.riot/requirements/1e5b975.txt
similarity index 100%
rename from .riot/requirements/1e5b975.txt
rename to dd-trace-py/.riot/requirements/1e5b975.txt
diff --git a/.riot/requirements/1e5b9c4.txt b/dd-trace-py/.riot/requirements/1e5b9c4.txt
similarity index 100%
rename from .riot/requirements/1e5b9c4.txt
rename to dd-trace-py/.riot/requirements/1e5b9c4.txt
diff --git a/.riot/requirements/1e5cdec.txt b/dd-trace-py/.riot/requirements/1e5cdec.txt
similarity index 100%
rename from .riot/requirements/1e5cdec.txt
rename to dd-trace-py/.riot/requirements/1e5cdec.txt
diff --git a/.riot/requirements/1e5dd1a.txt b/dd-trace-py/.riot/requirements/1e5dd1a.txt
similarity index 100%
rename from .riot/requirements/1e5dd1a.txt
rename to dd-trace-py/.riot/requirements/1e5dd1a.txt
diff --git a/.riot/requirements/1e60db0.txt b/dd-trace-py/.riot/requirements/1e60db0.txt
similarity index 100%
rename from .riot/requirements/1e60db0.txt
rename to dd-trace-py/.riot/requirements/1e60db0.txt
diff --git a/.riot/requirements/1e60e3c.txt b/dd-trace-py/.riot/requirements/1e60e3c.txt
similarity index 100%
rename from .riot/requirements/1e60e3c.txt
rename to dd-trace-py/.riot/requirements/1e60e3c.txt
diff --git a/.riot/requirements/1e62aea.txt b/dd-trace-py/.riot/requirements/1e62aea.txt
similarity index 100%
rename from .riot/requirements/1e62aea.txt
rename to dd-trace-py/.riot/requirements/1e62aea.txt
diff --git a/.riot/requirements/1e659c4.txt b/dd-trace-py/.riot/requirements/1e659c4.txt
similarity index 100%
rename from .riot/requirements/1e659c4.txt
rename to dd-trace-py/.riot/requirements/1e659c4.txt
diff --git a/.riot/requirements/1e675c0.txt b/dd-trace-py/.riot/requirements/1e675c0.txt
similarity index 100%
rename from .riot/requirements/1e675c0.txt
rename to dd-trace-py/.riot/requirements/1e675c0.txt
diff --git a/.riot/requirements/1e68803.txt b/dd-trace-py/.riot/requirements/1e68803.txt
similarity index 100%
rename from .riot/requirements/1e68803.txt
rename to dd-trace-py/.riot/requirements/1e68803.txt
diff --git a/.riot/requirements/1e73157.txt b/dd-trace-py/.riot/requirements/1e73157.txt
similarity index 100%
rename from .riot/requirements/1e73157.txt
rename to dd-trace-py/.riot/requirements/1e73157.txt
diff --git a/.riot/requirements/1e77d23.txt b/dd-trace-py/.riot/requirements/1e77d23.txt
similarity index 100%
rename from .riot/requirements/1e77d23.txt
rename to dd-trace-py/.riot/requirements/1e77d23.txt
diff --git a/.riot/requirements/1e7fb87.txt b/dd-trace-py/.riot/requirements/1e7fb87.txt
similarity index 100%
rename from .riot/requirements/1e7fb87.txt
rename to dd-trace-py/.riot/requirements/1e7fb87.txt
diff --git a/.riot/requirements/1e82f55.txt b/dd-trace-py/.riot/requirements/1e82f55.txt
similarity index 100%
rename from .riot/requirements/1e82f55.txt
rename to dd-trace-py/.riot/requirements/1e82f55.txt
diff --git a/.riot/requirements/1e8336a.txt b/dd-trace-py/.riot/requirements/1e8336a.txt
similarity index 100%
rename from .riot/requirements/1e8336a.txt
rename to dd-trace-py/.riot/requirements/1e8336a.txt
diff --git a/.riot/requirements/1e8652f.txt b/dd-trace-py/.riot/requirements/1e8652f.txt
similarity index 100%
rename from .riot/requirements/1e8652f.txt
rename to dd-trace-py/.riot/requirements/1e8652f.txt
diff --git a/.riot/requirements/1e87e36.txt b/dd-trace-py/.riot/requirements/1e87e36.txt
similarity index 100%
rename from .riot/requirements/1e87e36.txt
rename to dd-trace-py/.riot/requirements/1e87e36.txt
diff --git a/.riot/requirements/1e893b9.txt b/dd-trace-py/.riot/requirements/1e893b9.txt
similarity index 100%
rename from .riot/requirements/1e893b9.txt
rename to dd-trace-py/.riot/requirements/1e893b9.txt
diff --git a/.riot/requirements/1e9125b.txt b/dd-trace-py/.riot/requirements/1e9125b.txt
similarity index 100%
rename from .riot/requirements/1e9125b.txt
rename to dd-trace-py/.riot/requirements/1e9125b.txt
diff --git a/.riot/requirements/1e98e9b.txt b/dd-trace-py/.riot/requirements/1e98e9b.txt
similarity index 100%
rename from .riot/requirements/1e98e9b.txt
rename to dd-trace-py/.riot/requirements/1e98e9b.txt
diff --git a/.riot/requirements/1ea0ab7.txt b/dd-trace-py/.riot/requirements/1ea0ab7.txt
similarity index 100%
rename from .riot/requirements/1ea0ab7.txt
rename to dd-trace-py/.riot/requirements/1ea0ab7.txt
diff --git a/.riot/requirements/1ea5080.txt b/dd-trace-py/.riot/requirements/1ea5080.txt
similarity index 100%
rename from .riot/requirements/1ea5080.txt
rename to dd-trace-py/.riot/requirements/1ea5080.txt
diff --git a/.riot/requirements/1eaf3b8.txt b/dd-trace-py/.riot/requirements/1eaf3b8.txt
similarity index 100%
rename from .riot/requirements/1eaf3b8.txt
rename to dd-trace-py/.riot/requirements/1eaf3b8.txt
diff --git a/.riot/requirements/1eb1254.txt b/dd-trace-py/.riot/requirements/1eb1254.txt
similarity index 100%
rename from .riot/requirements/1eb1254.txt
rename to dd-trace-py/.riot/requirements/1eb1254.txt
diff --git a/.riot/requirements/1eb408a.txt b/dd-trace-py/.riot/requirements/1eb408a.txt
similarity index 100%
rename from .riot/requirements/1eb408a.txt
rename to dd-trace-py/.riot/requirements/1eb408a.txt
diff --git a/.riot/requirements/1eb9abd.txt b/dd-trace-py/.riot/requirements/1eb9abd.txt
similarity index 100%
rename from .riot/requirements/1eb9abd.txt
rename to dd-trace-py/.riot/requirements/1eb9abd.txt
diff --git a/.riot/requirements/1ebb239.txt b/dd-trace-py/.riot/requirements/1ebb239.txt
similarity index 100%
rename from .riot/requirements/1ebb239.txt
rename to dd-trace-py/.riot/requirements/1ebb239.txt
diff --git a/.riot/requirements/1ec79db.txt b/dd-trace-py/.riot/requirements/1ec79db.txt
similarity index 100%
rename from .riot/requirements/1ec79db.txt
rename to dd-trace-py/.riot/requirements/1ec79db.txt
diff --git a/.riot/requirements/1ecc45c.txt b/dd-trace-py/.riot/requirements/1ecc45c.txt
similarity index 100%
rename from .riot/requirements/1ecc45c.txt
rename to dd-trace-py/.riot/requirements/1ecc45c.txt
diff --git a/.riot/requirements/1ecd9c2.txt b/dd-trace-py/.riot/requirements/1ecd9c2.txt
similarity index 100%
rename from .riot/requirements/1ecd9c2.txt
rename to dd-trace-py/.riot/requirements/1ecd9c2.txt
diff --git a/.riot/requirements/1edaced.txt b/dd-trace-py/.riot/requirements/1edaced.txt
similarity index 100%
rename from .riot/requirements/1edaced.txt
rename to dd-trace-py/.riot/requirements/1edaced.txt
diff --git a/.riot/requirements/1edb5f0.txt b/dd-trace-py/.riot/requirements/1edb5f0.txt
similarity index 100%
rename from .riot/requirements/1edb5f0.txt
rename to dd-trace-py/.riot/requirements/1edb5f0.txt
diff --git a/.riot/requirements/1eefa95.txt b/dd-trace-py/.riot/requirements/1eefa95.txt
similarity index 100%
rename from .riot/requirements/1eefa95.txt
rename to dd-trace-py/.riot/requirements/1eefa95.txt
diff --git a/.riot/requirements/1ef2187.txt b/dd-trace-py/.riot/requirements/1ef2187.txt
similarity index 100%
rename from .riot/requirements/1ef2187.txt
rename to dd-trace-py/.riot/requirements/1ef2187.txt
diff --git a/.riot/requirements/1ef26c5.txt b/dd-trace-py/.riot/requirements/1ef26c5.txt
similarity index 100%
rename from .riot/requirements/1ef26c5.txt
rename to dd-trace-py/.riot/requirements/1ef26c5.txt
diff --git a/.riot/requirements/1ef5a52.txt b/dd-trace-py/.riot/requirements/1ef5a52.txt
similarity index 100%
rename from .riot/requirements/1ef5a52.txt
rename to dd-trace-py/.riot/requirements/1ef5a52.txt
diff --git a/.riot/requirements/1ef773e.txt b/dd-trace-py/.riot/requirements/1ef773e.txt
similarity index 100%
rename from .riot/requirements/1ef773e.txt
rename to dd-trace-py/.riot/requirements/1ef773e.txt
diff --git a/.riot/requirements/1ef9287.txt b/dd-trace-py/.riot/requirements/1ef9287.txt
similarity index 100%
rename from .riot/requirements/1ef9287.txt
rename to dd-trace-py/.riot/requirements/1ef9287.txt
diff --git a/.riot/requirements/1f08b51.txt b/dd-trace-py/.riot/requirements/1f08b51.txt
similarity index 100%
rename from .riot/requirements/1f08b51.txt
rename to dd-trace-py/.riot/requirements/1f08b51.txt
diff --git a/.riot/requirements/1f09c40.txt b/dd-trace-py/.riot/requirements/1f09c40.txt
similarity index 100%
rename from .riot/requirements/1f09c40.txt
rename to dd-trace-py/.riot/requirements/1f09c40.txt
diff --git a/.riot/requirements/1f0ede7.txt b/dd-trace-py/.riot/requirements/1f0ede7.txt
similarity index 100%
rename from .riot/requirements/1f0ede7.txt
rename to dd-trace-py/.riot/requirements/1f0ede7.txt
diff --git a/.riot/requirements/1f18768.txt b/dd-trace-py/.riot/requirements/1f18768.txt
similarity index 100%
rename from .riot/requirements/1f18768.txt
rename to dd-trace-py/.riot/requirements/1f18768.txt
diff --git a/.riot/requirements/1f18ea8.txt b/dd-trace-py/.riot/requirements/1f18ea8.txt
similarity index 100%
rename from .riot/requirements/1f18ea8.txt
rename to dd-trace-py/.riot/requirements/1f18ea8.txt
diff --git a/.riot/requirements/1f1c431.txt b/dd-trace-py/.riot/requirements/1f1c431.txt
similarity index 100%
rename from .riot/requirements/1f1c431.txt
rename to dd-trace-py/.riot/requirements/1f1c431.txt
diff --git a/.riot/requirements/1f1e236.txt b/dd-trace-py/.riot/requirements/1f1e236.txt
similarity index 100%
rename from .riot/requirements/1f1e236.txt
rename to dd-trace-py/.riot/requirements/1f1e236.txt
diff --git a/.riot/requirements/1f218f2.txt b/dd-trace-py/.riot/requirements/1f218f2.txt
similarity index 100%
rename from .riot/requirements/1f218f2.txt
rename to dd-trace-py/.riot/requirements/1f218f2.txt
diff --git a/.riot/requirements/1f23a69.txt b/dd-trace-py/.riot/requirements/1f23a69.txt
similarity index 100%
rename from .riot/requirements/1f23a69.txt
rename to dd-trace-py/.riot/requirements/1f23a69.txt
diff --git a/.riot/requirements/1f24364.txt b/dd-trace-py/.riot/requirements/1f24364.txt
similarity index 100%
rename from .riot/requirements/1f24364.txt
rename to dd-trace-py/.riot/requirements/1f24364.txt
diff --git a/.riot/requirements/1f24375.txt b/dd-trace-py/.riot/requirements/1f24375.txt
similarity index 100%
rename from .riot/requirements/1f24375.txt
rename to dd-trace-py/.riot/requirements/1f24375.txt
diff --git a/.riot/requirements/1f27343.txt b/dd-trace-py/.riot/requirements/1f27343.txt
similarity index 100%
rename from .riot/requirements/1f27343.txt
rename to dd-trace-py/.riot/requirements/1f27343.txt
diff --git a/.riot/requirements/1f280ce.txt b/dd-trace-py/.riot/requirements/1f280ce.txt
similarity index 100%
rename from .riot/requirements/1f280ce.txt
rename to dd-trace-py/.riot/requirements/1f280ce.txt
diff --git a/.riot/requirements/1f2ce86.txt b/dd-trace-py/.riot/requirements/1f2ce86.txt
similarity index 100%
rename from .riot/requirements/1f2ce86.txt
rename to dd-trace-py/.riot/requirements/1f2ce86.txt
diff --git a/.riot/requirements/1f30a84.txt b/dd-trace-py/.riot/requirements/1f30a84.txt
similarity index 100%
rename from .riot/requirements/1f30a84.txt
rename to dd-trace-py/.riot/requirements/1f30a84.txt
diff --git a/.riot/requirements/1f3b209.txt b/dd-trace-py/.riot/requirements/1f3b209.txt
similarity index 100%
rename from .riot/requirements/1f3b209.txt
rename to dd-trace-py/.riot/requirements/1f3b209.txt
diff --git a/.riot/requirements/1f3e043.txt b/dd-trace-py/.riot/requirements/1f3e043.txt
similarity index 100%
rename from .riot/requirements/1f3e043.txt
rename to dd-trace-py/.riot/requirements/1f3e043.txt
diff --git a/.riot/requirements/1f41eb9.txt b/dd-trace-py/.riot/requirements/1f41eb9.txt
similarity index 100%
rename from .riot/requirements/1f41eb9.txt
rename to dd-trace-py/.riot/requirements/1f41eb9.txt
diff --git a/.riot/requirements/1f467b3.txt b/dd-trace-py/.riot/requirements/1f467b3.txt
similarity index 100%
rename from .riot/requirements/1f467b3.txt
rename to dd-trace-py/.riot/requirements/1f467b3.txt
diff --git a/.riot/requirements/1f491b6.txt b/dd-trace-py/.riot/requirements/1f491b6.txt
similarity index 100%
rename from .riot/requirements/1f491b6.txt
rename to dd-trace-py/.riot/requirements/1f491b6.txt
diff --git a/.riot/requirements/1f4e01a.txt b/dd-trace-py/.riot/requirements/1f4e01a.txt
similarity index 100%
rename from .riot/requirements/1f4e01a.txt
rename to dd-trace-py/.riot/requirements/1f4e01a.txt
diff --git a/.riot/requirements/1f4f93f.txt b/dd-trace-py/.riot/requirements/1f4f93f.txt
similarity index 100%
rename from .riot/requirements/1f4f93f.txt
rename to dd-trace-py/.riot/requirements/1f4f93f.txt
diff --git a/.riot/requirements/1f512b5.txt b/dd-trace-py/.riot/requirements/1f512b5.txt
similarity index 100%
rename from .riot/requirements/1f512b5.txt
rename to dd-trace-py/.riot/requirements/1f512b5.txt
diff --git a/.riot/requirements/1f5205e.txt b/dd-trace-py/.riot/requirements/1f5205e.txt
similarity index 100%
rename from .riot/requirements/1f5205e.txt
rename to dd-trace-py/.riot/requirements/1f5205e.txt
diff --git a/.riot/requirements/1f6865a.txt b/dd-trace-py/.riot/requirements/1f6865a.txt
similarity index 100%
rename from .riot/requirements/1f6865a.txt
rename to dd-trace-py/.riot/requirements/1f6865a.txt
diff --git a/.riot/requirements/1f6cc38.txt b/dd-trace-py/.riot/requirements/1f6cc38.txt
similarity index 100%
rename from .riot/requirements/1f6cc38.txt
rename to dd-trace-py/.riot/requirements/1f6cc38.txt
diff --git a/.riot/requirements/1f73abc.txt b/dd-trace-py/.riot/requirements/1f73abc.txt
similarity index 100%
rename from .riot/requirements/1f73abc.txt
rename to dd-trace-py/.riot/requirements/1f73abc.txt
diff --git a/.riot/requirements/1f75b21.txt b/dd-trace-py/.riot/requirements/1f75b21.txt
similarity index 100%
rename from .riot/requirements/1f75b21.txt
rename to dd-trace-py/.riot/requirements/1f75b21.txt
diff --git a/.riot/requirements/1f823cc.txt b/dd-trace-py/.riot/requirements/1f823cc.txt
similarity index 100%
rename from .riot/requirements/1f823cc.txt
rename to dd-trace-py/.riot/requirements/1f823cc.txt
diff --git a/.riot/requirements/1f861b6.txt b/dd-trace-py/.riot/requirements/1f861b6.txt
similarity index 100%
rename from .riot/requirements/1f861b6.txt
rename to dd-trace-py/.riot/requirements/1f861b6.txt
diff --git a/.riot/requirements/1f8c44d.txt b/dd-trace-py/.riot/requirements/1f8c44d.txt
similarity index 100%
rename from .riot/requirements/1f8c44d.txt
rename to dd-trace-py/.riot/requirements/1f8c44d.txt
diff --git a/.riot/requirements/1f907a4.txt b/dd-trace-py/.riot/requirements/1f907a4.txt
similarity index 100%
rename from .riot/requirements/1f907a4.txt
rename to dd-trace-py/.riot/requirements/1f907a4.txt
diff --git a/.riot/requirements/1f937c5.txt b/dd-trace-py/.riot/requirements/1f937c5.txt
similarity index 100%
rename from .riot/requirements/1f937c5.txt
rename to dd-trace-py/.riot/requirements/1f937c5.txt
diff --git a/.riot/requirements/1f94b6b.txt b/dd-trace-py/.riot/requirements/1f94b6b.txt
similarity index 100%
rename from .riot/requirements/1f94b6b.txt
rename to dd-trace-py/.riot/requirements/1f94b6b.txt
diff --git a/.riot/requirements/1f99050.txt b/dd-trace-py/.riot/requirements/1f99050.txt
similarity index 100%
rename from .riot/requirements/1f99050.txt
rename to dd-trace-py/.riot/requirements/1f99050.txt
diff --git a/.riot/requirements/1f9dd35.txt b/dd-trace-py/.riot/requirements/1f9dd35.txt
similarity index 100%
rename from .riot/requirements/1f9dd35.txt
rename to dd-trace-py/.riot/requirements/1f9dd35.txt
diff --git a/.riot/requirements/1fa3005.txt b/dd-trace-py/.riot/requirements/1fa3005.txt
similarity index 100%
rename from .riot/requirements/1fa3005.txt
rename to dd-trace-py/.riot/requirements/1fa3005.txt
diff --git a/.riot/requirements/1fa38a1.txt b/dd-trace-py/.riot/requirements/1fa38a1.txt
similarity index 100%
rename from .riot/requirements/1fa38a1.txt
rename to dd-trace-py/.riot/requirements/1fa38a1.txt
diff --git a/.riot/requirements/1fa51f6.txt b/dd-trace-py/.riot/requirements/1fa51f6.txt
similarity index 100%
rename from .riot/requirements/1fa51f6.txt
rename to dd-trace-py/.riot/requirements/1fa51f6.txt
diff --git a/.riot/requirements/1fab05e.txt b/dd-trace-py/.riot/requirements/1fab05e.txt
similarity index 100%
rename from .riot/requirements/1fab05e.txt
rename to dd-trace-py/.riot/requirements/1fab05e.txt
diff --git a/.riot/requirements/1fb0d21.txt b/dd-trace-py/.riot/requirements/1fb0d21.txt
similarity index 100%
rename from .riot/requirements/1fb0d21.txt
rename to dd-trace-py/.riot/requirements/1fb0d21.txt
diff --git a/.riot/requirements/1fb1413.txt b/dd-trace-py/.riot/requirements/1fb1413.txt
similarity index 100%
rename from .riot/requirements/1fb1413.txt
rename to dd-trace-py/.riot/requirements/1fb1413.txt
diff --git a/.riot/requirements/1fb1eb3.txt b/dd-trace-py/.riot/requirements/1fb1eb3.txt
similarity index 100%
rename from .riot/requirements/1fb1eb3.txt
rename to dd-trace-py/.riot/requirements/1fb1eb3.txt
diff --git a/.riot/requirements/1fc39d7.txt b/dd-trace-py/.riot/requirements/1fc39d7.txt
similarity index 100%
rename from .riot/requirements/1fc39d7.txt
rename to dd-trace-py/.riot/requirements/1fc39d7.txt
diff --git a/.riot/requirements/1fc50b1.txt b/dd-trace-py/.riot/requirements/1fc50b1.txt
similarity index 100%
rename from .riot/requirements/1fc50b1.txt
rename to dd-trace-py/.riot/requirements/1fc50b1.txt
diff --git a/.riot/requirements/1fc9ecc.txt b/dd-trace-py/.riot/requirements/1fc9ecc.txt
similarity index 100%
rename from .riot/requirements/1fc9ecc.txt
rename to dd-trace-py/.riot/requirements/1fc9ecc.txt
diff --git a/.riot/requirements/1fce108.txt b/dd-trace-py/.riot/requirements/1fce108.txt
similarity index 100%
rename from .riot/requirements/1fce108.txt
rename to dd-trace-py/.riot/requirements/1fce108.txt
diff --git a/.riot/requirements/1fcefbc.txt b/dd-trace-py/.riot/requirements/1fcefbc.txt
similarity index 100%
rename from .riot/requirements/1fcefbc.txt
rename to dd-trace-py/.riot/requirements/1fcefbc.txt
diff --git a/.riot/requirements/1fd0884.txt b/dd-trace-py/.riot/requirements/1fd0884.txt
similarity index 100%
rename from .riot/requirements/1fd0884.txt
rename to dd-trace-py/.riot/requirements/1fd0884.txt
diff --git a/.riot/requirements/1fe0eaa.txt b/dd-trace-py/.riot/requirements/1fe0eaa.txt
similarity index 100%
rename from .riot/requirements/1fe0eaa.txt
rename to dd-trace-py/.riot/requirements/1fe0eaa.txt
diff --git a/.riot/requirements/1fe6270.txt b/dd-trace-py/.riot/requirements/1fe6270.txt
similarity index 100%
rename from .riot/requirements/1fe6270.txt
rename to dd-trace-py/.riot/requirements/1fe6270.txt
diff --git a/.riot/requirements/1fe7613.txt b/dd-trace-py/.riot/requirements/1fe7613.txt
similarity index 100%
rename from .riot/requirements/1fe7613.txt
rename to dd-trace-py/.riot/requirements/1fe7613.txt
diff --git a/.riot/requirements/1fe881e.txt b/dd-trace-py/.riot/requirements/1fe881e.txt
similarity index 100%
rename from .riot/requirements/1fe881e.txt
rename to dd-trace-py/.riot/requirements/1fe881e.txt
diff --git a/.riot/requirements/1febba9.txt b/dd-trace-py/.riot/requirements/1febba9.txt
similarity index 100%
rename from .riot/requirements/1febba9.txt
rename to dd-trace-py/.riot/requirements/1febba9.txt
diff --git a/.riot/requirements/1ff2f1b.txt b/dd-trace-py/.riot/requirements/1ff2f1b.txt
similarity index 100%
rename from .riot/requirements/1ff2f1b.txt
rename to dd-trace-py/.riot/requirements/1ff2f1b.txt
diff --git a/.riot/requirements/1ffb843.txt b/dd-trace-py/.riot/requirements/1ffb843.txt
similarity index 100%
rename from .riot/requirements/1ffb843.txt
rename to dd-trace-py/.riot/requirements/1ffb843.txt
diff --git a/.riot/requirements/1fff452.txt b/dd-trace-py/.riot/requirements/1fff452.txt
similarity index 100%
rename from .riot/requirements/1fff452.txt
rename to dd-trace-py/.riot/requirements/1fff452.txt
diff --git a/.riot/requirements/20fd4c0.txt b/dd-trace-py/.riot/requirements/20fd4c0.txt
similarity index 100%
rename from .riot/requirements/20fd4c0.txt
rename to dd-trace-py/.riot/requirements/20fd4c0.txt
diff --git a/.riot/requirements/213dcfe.txt b/dd-trace-py/.riot/requirements/213dcfe.txt
similarity index 100%
rename from .riot/requirements/213dcfe.txt
rename to dd-trace-py/.riot/requirements/213dcfe.txt
diff --git a/.riot/requirements/215a999.txt b/dd-trace-py/.riot/requirements/215a999.txt
similarity index 100%
rename from .riot/requirements/215a999.txt
rename to dd-trace-py/.riot/requirements/215a999.txt
diff --git a/.riot/requirements/2164da7.txt b/dd-trace-py/.riot/requirements/2164da7.txt
similarity index 100%
rename from .riot/requirements/2164da7.txt
rename to dd-trace-py/.riot/requirements/2164da7.txt
diff --git a/.riot/requirements/21a9dd6.txt b/dd-trace-py/.riot/requirements/21a9dd6.txt
similarity index 100%
rename from .riot/requirements/21a9dd6.txt
rename to dd-trace-py/.riot/requirements/21a9dd6.txt
diff --git a/.riot/requirements/2215008.txt b/dd-trace-py/.riot/requirements/2215008.txt
similarity index 100%
rename from .riot/requirements/2215008.txt
rename to dd-trace-py/.riot/requirements/2215008.txt
diff --git a/.riot/requirements/222495c.txt b/dd-trace-py/.riot/requirements/222495c.txt
similarity index 100%
rename from .riot/requirements/222495c.txt
rename to dd-trace-py/.riot/requirements/222495c.txt
diff --git a/.riot/requirements/2246229.txt b/dd-trace-py/.riot/requirements/2246229.txt
similarity index 100%
rename from .riot/requirements/2246229.txt
rename to dd-trace-py/.riot/requirements/2246229.txt
diff --git a/.riot/requirements/22b6635.txt b/dd-trace-py/.riot/requirements/22b6635.txt
similarity index 100%
rename from .riot/requirements/22b6635.txt
rename to dd-trace-py/.riot/requirements/22b6635.txt
diff --git a/.riot/requirements/2377901.txt b/dd-trace-py/.riot/requirements/2377901.txt
similarity index 100%
rename from .riot/requirements/2377901.txt
rename to dd-trace-py/.riot/requirements/2377901.txt
diff --git a/.riot/requirements/23e7ade.txt b/dd-trace-py/.riot/requirements/23e7ade.txt
similarity index 100%
rename from .riot/requirements/23e7ade.txt
rename to dd-trace-py/.riot/requirements/23e7ade.txt
diff --git a/.riot/requirements/2400f2e.txt b/dd-trace-py/.riot/requirements/2400f2e.txt
similarity index 100%
rename from .riot/requirements/2400f2e.txt
rename to dd-trace-py/.riot/requirements/2400f2e.txt
diff --git a/.riot/requirements/248da41.txt b/dd-trace-py/.riot/requirements/248da41.txt
similarity index 100%
rename from .riot/requirements/248da41.txt
rename to dd-trace-py/.riot/requirements/248da41.txt
diff --git a/.riot/requirements/249a2b8.txt b/dd-trace-py/.riot/requirements/249a2b8.txt
similarity index 100%
rename from .riot/requirements/249a2b8.txt
rename to dd-trace-py/.riot/requirements/249a2b8.txt
diff --git a/.riot/requirements/2502b82.txt b/dd-trace-py/.riot/requirements/2502b82.txt
similarity index 100%
rename from .riot/requirements/2502b82.txt
rename to dd-trace-py/.riot/requirements/2502b82.txt
diff --git a/.riot/requirements/2538ed0.txt b/dd-trace-py/.riot/requirements/2538ed0.txt
similarity index 100%
rename from .riot/requirements/2538ed0.txt
rename to dd-trace-py/.riot/requirements/2538ed0.txt
diff --git a/.riot/requirements/25528b4.txt b/dd-trace-py/.riot/requirements/25528b4.txt
similarity index 100%
rename from .riot/requirements/25528b4.txt
rename to dd-trace-py/.riot/requirements/25528b4.txt
diff --git a/.riot/requirements/257c9c5.txt b/dd-trace-py/.riot/requirements/257c9c5.txt
similarity index 100%
rename from .riot/requirements/257c9c5.txt
rename to dd-trace-py/.riot/requirements/257c9c5.txt
diff --git a/.riot/requirements/2581b3a.txt b/dd-trace-py/.riot/requirements/2581b3a.txt
similarity index 100%
rename from .riot/requirements/2581b3a.txt
rename to dd-trace-py/.riot/requirements/2581b3a.txt
diff --git a/.riot/requirements/25a0b59.txt b/dd-trace-py/.riot/requirements/25a0b59.txt
similarity index 100%
rename from .riot/requirements/25a0b59.txt
rename to dd-trace-py/.riot/requirements/25a0b59.txt
diff --git a/.riot/requirements/26054ba.txt b/dd-trace-py/.riot/requirements/26054ba.txt
similarity index 100%
rename from .riot/requirements/26054ba.txt
rename to dd-trace-py/.riot/requirements/26054ba.txt
diff --git a/.riot/requirements/26aada0.txt b/dd-trace-py/.riot/requirements/26aada0.txt
similarity index 100%
rename from .riot/requirements/26aada0.txt
rename to dd-trace-py/.riot/requirements/26aada0.txt
diff --git a/.riot/requirements/26b7f73.txt b/dd-trace-py/.riot/requirements/26b7f73.txt
similarity index 100%
rename from .riot/requirements/26b7f73.txt
rename to dd-trace-py/.riot/requirements/26b7f73.txt
diff --git a/.riot/requirements/2720069.txt b/dd-trace-py/.riot/requirements/2720069.txt
similarity index 100%
rename from .riot/requirements/2720069.txt
rename to dd-trace-py/.riot/requirements/2720069.txt
diff --git a/.riot/requirements/276b2c8.txt b/dd-trace-py/.riot/requirements/276b2c8.txt
similarity index 100%
rename from .riot/requirements/276b2c8.txt
rename to dd-trace-py/.riot/requirements/276b2c8.txt
diff --git a/.riot/requirements/27a0418.txt b/dd-trace-py/.riot/requirements/27a0418.txt
similarity index 100%
rename from .riot/requirements/27a0418.txt
rename to dd-trace-py/.riot/requirements/27a0418.txt
diff --git a/.riot/requirements/27afe82.txt b/dd-trace-py/.riot/requirements/27afe82.txt
similarity index 100%
rename from .riot/requirements/27afe82.txt
rename to dd-trace-py/.riot/requirements/27afe82.txt
diff --git a/.riot/requirements/27d0ff8.txt b/dd-trace-py/.riot/requirements/27d0ff8.txt
similarity index 100%
rename from .riot/requirements/27d0ff8.txt
rename to dd-trace-py/.riot/requirements/27d0ff8.txt
diff --git a/.riot/requirements/27d8bd1.txt b/dd-trace-py/.riot/requirements/27d8bd1.txt
similarity index 100%
rename from .riot/requirements/27d8bd1.txt
rename to dd-trace-py/.riot/requirements/27d8bd1.txt
diff --git a/.riot/requirements/27e3d7b.txt b/dd-trace-py/.riot/requirements/27e3d7b.txt
similarity index 100%
rename from .riot/requirements/27e3d7b.txt
rename to dd-trace-py/.riot/requirements/27e3d7b.txt
diff --git a/.riot/requirements/2877cc1.txt b/dd-trace-py/.riot/requirements/2877cc1.txt
similarity index 100%
rename from .riot/requirements/2877cc1.txt
rename to dd-trace-py/.riot/requirements/2877cc1.txt
diff --git a/.riot/requirements/28f1677.txt b/dd-trace-py/.riot/requirements/28f1677.txt
similarity index 100%
rename from .riot/requirements/28f1677.txt
rename to dd-trace-py/.riot/requirements/28f1677.txt
diff --git a/.riot/requirements/2953aa1.txt b/dd-trace-py/.riot/requirements/2953aa1.txt
similarity index 100%
rename from .riot/requirements/2953aa1.txt
rename to dd-trace-py/.riot/requirements/2953aa1.txt
diff --git a/.riot/requirements/2975d9e.txt b/dd-trace-py/.riot/requirements/2975d9e.txt
similarity index 100%
rename from .riot/requirements/2975d9e.txt
rename to dd-trace-py/.riot/requirements/2975d9e.txt
diff --git a/.riot/requirements/29f95c4.txt b/dd-trace-py/.riot/requirements/29f95c4.txt
similarity index 100%
rename from .riot/requirements/29f95c4.txt
rename to dd-trace-py/.riot/requirements/29f95c4.txt
diff --git a/.riot/requirements/2a968cd.txt b/dd-trace-py/.riot/requirements/2a968cd.txt
similarity index 100%
rename from .riot/requirements/2a968cd.txt
rename to dd-trace-py/.riot/requirements/2a968cd.txt
diff --git a/.riot/requirements/2ab4a50.txt b/dd-trace-py/.riot/requirements/2ab4a50.txt
similarity index 100%
rename from .riot/requirements/2ab4a50.txt
rename to dd-trace-py/.riot/requirements/2ab4a50.txt
diff --git a/.riot/requirements/2b426ba.txt b/dd-trace-py/.riot/requirements/2b426ba.txt
similarity index 100%
rename from .riot/requirements/2b426ba.txt
rename to dd-trace-py/.riot/requirements/2b426ba.txt
diff --git a/.riot/requirements/2b4e2d5.txt b/dd-trace-py/.riot/requirements/2b4e2d5.txt
similarity index 100%
rename from .riot/requirements/2b4e2d5.txt
rename to dd-trace-py/.riot/requirements/2b4e2d5.txt
diff --git a/.riot/requirements/2b7ab63.txt b/dd-trace-py/.riot/requirements/2b7ab63.txt
similarity index 100%
rename from .riot/requirements/2b7ab63.txt
rename to dd-trace-py/.riot/requirements/2b7ab63.txt
diff --git a/.riot/requirements/2b9c78d.txt b/dd-trace-py/.riot/requirements/2b9c78d.txt
similarity index 100%
rename from .riot/requirements/2b9c78d.txt
rename to dd-trace-py/.riot/requirements/2b9c78d.txt
diff --git a/.riot/requirements/2be0986.txt b/dd-trace-py/.riot/requirements/2be0986.txt
similarity index 100%
rename from .riot/requirements/2be0986.txt
rename to dd-trace-py/.riot/requirements/2be0986.txt
diff --git a/.riot/requirements/2cfada2.txt b/dd-trace-py/.riot/requirements/2cfada2.txt
similarity index 100%
rename from .riot/requirements/2cfada2.txt
rename to dd-trace-py/.riot/requirements/2cfada2.txt
diff --git a/.riot/requirements/2d6c3d0.txt b/dd-trace-py/.riot/requirements/2d6c3d0.txt
similarity index 100%
rename from .riot/requirements/2d6c3d0.txt
rename to dd-trace-py/.riot/requirements/2d6c3d0.txt
diff --git a/.riot/requirements/2da4f4c.txt b/dd-trace-py/.riot/requirements/2da4f4c.txt
similarity index 100%
rename from .riot/requirements/2da4f4c.txt
rename to dd-trace-py/.riot/requirements/2da4f4c.txt
diff --git a/.riot/requirements/2dd0811.txt b/dd-trace-py/.riot/requirements/2dd0811.txt
similarity index 100%
rename from .riot/requirements/2dd0811.txt
rename to dd-trace-py/.riot/requirements/2dd0811.txt
diff --git a/.riot/requirements/2e4f80d.txt b/dd-trace-py/.riot/requirements/2e4f80d.txt
similarity index 100%
rename from .riot/requirements/2e4f80d.txt
rename to dd-trace-py/.riot/requirements/2e4f80d.txt
diff --git a/.riot/requirements/2ec9e52.txt b/dd-trace-py/.riot/requirements/2ec9e52.txt
similarity index 100%
rename from .riot/requirements/2ec9e52.txt
rename to dd-trace-py/.riot/requirements/2ec9e52.txt
diff --git a/.riot/requirements/2f01c64.txt b/dd-trace-py/.riot/requirements/2f01c64.txt
similarity index 100%
rename from .riot/requirements/2f01c64.txt
rename to dd-trace-py/.riot/requirements/2f01c64.txt
diff --git a/.riot/requirements/2f0fd21.txt b/dd-trace-py/.riot/requirements/2f0fd21.txt
similarity index 100%
rename from .riot/requirements/2f0fd21.txt
rename to dd-trace-py/.riot/requirements/2f0fd21.txt
diff --git a/.riot/requirements/2f6439d.txt b/dd-trace-py/.riot/requirements/2f6439d.txt
similarity index 100%
rename from .riot/requirements/2f6439d.txt
rename to dd-trace-py/.riot/requirements/2f6439d.txt
diff --git a/.riot/requirements/2f72b04.txt b/dd-trace-py/.riot/requirements/2f72b04.txt
similarity index 100%
rename from .riot/requirements/2f72b04.txt
rename to dd-trace-py/.riot/requirements/2f72b04.txt
diff --git a/.riot/requirements/30228fe.txt b/dd-trace-py/.riot/requirements/30228fe.txt
similarity index 100%
rename from .riot/requirements/30228fe.txt
rename to dd-trace-py/.riot/requirements/30228fe.txt
diff --git a/.riot/requirements/30b65e2.txt b/dd-trace-py/.riot/requirements/30b65e2.txt
similarity index 100%
rename from .riot/requirements/30b65e2.txt
rename to dd-trace-py/.riot/requirements/30b65e2.txt
diff --git a/.riot/requirements/30d14f7.txt b/dd-trace-py/.riot/requirements/30d14f7.txt
similarity index 100%
rename from .riot/requirements/30d14f7.txt
rename to dd-trace-py/.riot/requirements/30d14f7.txt
diff --git a/.riot/requirements/30ef239.txt b/dd-trace-py/.riot/requirements/30ef239.txt
similarity index 100%
rename from .riot/requirements/30ef239.txt
rename to dd-trace-py/.riot/requirements/30ef239.txt
diff --git a/.riot/requirements/31125c5.txt b/dd-trace-py/.riot/requirements/31125c5.txt
similarity index 100%
rename from .riot/requirements/31125c5.txt
rename to dd-trace-py/.riot/requirements/31125c5.txt
diff --git a/.riot/requirements/31152cb.txt b/dd-trace-py/.riot/requirements/31152cb.txt
similarity index 100%
rename from .riot/requirements/31152cb.txt
rename to dd-trace-py/.riot/requirements/31152cb.txt
diff --git a/.riot/requirements/31333df.txt b/dd-trace-py/.riot/requirements/31333df.txt
similarity index 100%
rename from .riot/requirements/31333df.txt
rename to dd-trace-py/.riot/requirements/31333df.txt
diff --git a/.riot/requirements/3185459.txt b/dd-trace-py/.riot/requirements/3185459.txt
similarity index 100%
rename from .riot/requirements/3185459.txt
rename to dd-trace-py/.riot/requirements/3185459.txt
diff --git a/.riot/requirements/31b4d3f.txt b/dd-trace-py/.riot/requirements/31b4d3f.txt
similarity index 100%
rename from .riot/requirements/31b4d3f.txt
rename to dd-trace-py/.riot/requirements/31b4d3f.txt
diff --git a/.riot/requirements/31c0470.txt b/dd-trace-py/.riot/requirements/31c0470.txt
similarity index 100%
rename from .riot/requirements/31c0470.txt
rename to dd-trace-py/.riot/requirements/31c0470.txt
diff --git a/.riot/requirements/3209b92.txt b/dd-trace-py/.riot/requirements/3209b92.txt
similarity index 100%
rename from .riot/requirements/3209b92.txt
rename to dd-trace-py/.riot/requirements/3209b92.txt
diff --git a/.riot/requirements/325f927.txt b/dd-trace-py/.riot/requirements/325f927.txt
similarity index 100%
rename from .riot/requirements/325f927.txt
rename to dd-trace-py/.riot/requirements/325f927.txt
diff --git a/.riot/requirements/329b0ed.txt b/dd-trace-py/.riot/requirements/329b0ed.txt
similarity index 100%
rename from .riot/requirements/329b0ed.txt
rename to dd-trace-py/.riot/requirements/329b0ed.txt
diff --git a/.riot/requirements/33b0144.txt b/dd-trace-py/.riot/requirements/33b0144.txt
similarity index 100%
rename from .riot/requirements/33b0144.txt
rename to dd-trace-py/.riot/requirements/33b0144.txt
diff --git a/.riot/requirements/34f3f75.txt b/dd-trace-py/.riot/requirements/34f3f75.txt
similarity index 100%
rename from .riot/requirements/34f3f75.txt
rename to dd-trace-py/.riot/requirements/34f3f75.txt
diff --git a/.riot/requirements/3569cf8.txt b/dd-trace-py/.riot/requirements/3569cf8.txt
similarity index 100%
rename from .riot/requirements/3569cf8.txt
rename to dd-trace-py/.riot/requirements/3569cf8.txt
diff --git a/.riot/requirements/358210b.txt b/dd-trace-py/.riot/requirements/358210b.txt
similarity index 100%
rename from .riot/requirements/358210b.txt
rename to dd-trace-py/.riot/requirements/358210b.txt
diff --git a/.riot/requirements/35bdce1.txt b/dd-trace-py/.riot/requirements/35bdce1.txt
similarity index 100%
rename from .riot/requirements/35bdce1.txt
rename to dd-trace-py/.riot/requirements/35bdce1.txt
diff --git a/.riot/requirements/35c454e.txt b/dd-trace-py/.riot/requirements/35c454e.txt
similarity index 100%
rename from .riot/requirements/35c454e.txt
rename to dd-trace-py/.riot/requirements/35c454e.txt
diff --git a/.riot/requirements/35e5cdb.txt b/dd-trace-py/.riot/requirements/35e5cdb.txt
similarity index 100%
rename from .riot/requirements/35e5cdb.txt
rename to dd-trace-py/.riot/requirements/35e5cdb.txt
diff --git a/.riot/requirements/35f0cba.txt b/dd-trace-py/.riot/requirements/35f0cba.txt
similarity index 100%
rename from .riot/requirements/35f0cba.txt
rename to dd-trace-py/.riot/requirements/35f0cba.txt
diff --git a/.riot/requirements/3605d4f.txt b/dd-trace-py/.riot/requirements/3605d4f.txt
similarity index 100%
rename from .riot/requirements/3605d4f.txt
rename to dd-trace-py/.riot/requirements/3605d4f.txt
diff --git a/.riot/requirements/36759c0.txt b/dd-trace-py/.riot/requirements/36759c0.txt
similarity index 100%
rename from .riot/requirements/36759c0.txt
rename to dd-trace-py/.riot/requirements/36759c0.txt
diff --git a/.riot/requirements/3684eab.txt b/dd-trace-py/.riot/requirements/3684eab.txt
similarity index 100%
rename from .riot/requirements/3684eab.txt
rename to dd-trace-py/.riot/requirements/3684eab.txt
diff --git a/.riot/requirements/36a011d.txt b/dd-trace-py/.riot/requirements/36a011d.txt
similarity index 100%
rename from .riot/requirements/36a011d.txt
rename to dd-trace-py/.riot/requirements/36a011d.txt
diff --git a/.riot/requirements/372b57b.txt b/dd-trace-py/.riot/requirements/372b57b.txt
similarity index 100%
rename from .riot/requirements/372b57b.txt
rename to dd-trace-py/.riot/requirements/372b57b.txt
diff --git a/.riot/requirements/37646c9.txt b/dd-trace-py/.riot/requirements/37646c9.txt
similarity index 100%
rename from .riot/requirements/37646c9.txt
rename to dd-trace-py/.riot/requirements/37646c9.txt
diff --git a/.riot/requirements/38771a9.txt b/dd-trace-py/.riot/requirements/38771a9.txt
similarity index 100%
rename from .riot/requirements/38771a9.txt
rename to dd-trace-py/.riot/requirements/38771a9.txt
diff --git a/.riot/requirements/38f510f.txt b/dd-trace-py/.riot/requirements/38f510f.txt
similarity index 100%
rename from .riot/requirements/38f510f.txt
rename to dd-trace-py/.riot/requirements/38f510f.txt
diff --git a/.riot/requirements/3934da1.txt b/dd-trace-py/.riot/requirements/3934da1.txt
similarity index 100%
rename from .riot/requirements/3934da1.txt
rename to dd-trace-py/.riot/requirements/3934da1.txt
diff --git a/.riot/requirements/3957288.txt b/dd-trace-py/.riot/requirements/3957288.txt
similarity index 100%
rename from .riot/requirements/3957288.txt
rename to dd-trace-py/.riot/requirements/3957288.txt
diff --git a/.riot/requirements/398cb7c.txt b/dd-trace-py/.riot/requirements/398cb7c.txt
similarity index 100%
rename from .riot/requirements/398cb7c.txt
rename to dd-trace-py/.riot/requirements/398cb7c.txt
diff --git a/.riot/requirements/39c94a2.txt b/dd-trace-py/.riot/requirements/39c94a2.txt
similarity index 100%
rename from .riot/requirements/39c94a2.txt
rename to dd-trace-py/.riot/requirements/39c94a2.txt
diff --git a/.riot/requirements/39f016b.txt b/dd-trace-py/.riot/requirements/39f016b.txt
similarity index 100%
rename from .riot/requirements/39f016b.txt
rename to dd-trace-py/.riot/requirements/39f016b.txt
diff --git a/.riot/requirements/3a31be0.txt b/dd-trace-py/.riot/requirements/3a31be0.txt
similarity index 100%
rename from .riot/requirements/3a31be0.txt
rename to dd-trace-py/.riot/requirements/3a31be0.txt
diff --git a/.riot/requirements/3a3f49e.txt b/dd-trace-py/.riot/requirements/3a3f49e.txt
similarity index 100%
rename from .riot/requirements/3a3f49e.txt
rename to dd-trace-py/.riot/requirements/3a3f49e.txt
diff --git a/.riot/requirements/3a9fb88.txt b/dd-trace-py/.riot/requirements/3a9fb88.txt
similarity index 100%
rename from .riot/requirements/3a9fb88.txt
rename to dd-trace-py/.riot/requirements/3a9fb88.txt
diff --git a/.riot/requirements/3ab1d30.txt b/dd-trace-py/.riot/requirements/3ab1d30.txt
similarity index 100%
rename from .riot/requirements/3ab1d30.txt
rename to dd-trace-py/.riot/requirements/3ab1d30.txt
diff --git a/.riot/requirements/3adcfe7.txt b/dd-trace-py/.riot/requirements/3adcfe7.txt
similarity index 100%
rename from .riot/requirements/3adcfe7.txt
rename to dd-trace-py/.riot/requirements/3adcfe7.txt
diff --git a/.riot/requirements/3b1a760.txt b/dd-trace-py/.riot/requirements/3b1a760.txt
similarity index 100%
rename from .riot/requirements/3b1a760.txt
rename to dd-trace-py/.riot/requirements/3b1a760.txt
diff --git a/.riot/requirements/3b28562.txt b/dd-trace-py/.riot/requirements/3b28562.txt
similarity index 100%
rename from .riot/requirements/3b28562.txt
rename to dd-trace-py/.riot/requirements/3b28562.txt
diff --git a/.riot/requirements/3b723d4.txt b/dd-trace-py/.riot/requirements/3b723d4.txt
similarity index 100%
rename from .riot/requirements/3b723d4.txt
rename to dd-trace-py/.riot/requirements/3b723d4.txt
diff --git a/.riot/requirements/3bf076f.txt b/dd-trace-py/.riot/requirements/3bf076f.txt
similarity index 100%
rename from .riot/requirements/3bf076f.txt
rename to dd-trace-py/.riot/requirements/3bf076f.txt
diff --git a/.riot/requirements/3c3f295.txt b/dd-trace-py/.riot/requirements/3c3f295.txt
similarity index 100%
rename from .riot/requirements/3c3f295.txt
rename to dd-trace-py/.riot/requirements/3c3f295.txt
diff --git a/.riot/requirements/3cb274b.txt b/dd-trace-py/.riot/requirements/3cb274b.txt
similarity index 100%
rename from .riot/requirements/3cb274b.txt
rename to dd-trace-py/.riot/requirements/3cb274b.txt
diff --git a/.riot/requirements/3cbb6c7.txt b/dd-trace-py/.riot/requirements/3cbb6c7.txt
similarity index 100%
rename from .riot/requirements/3cbb6c7.txt
rename to dd-trace-py/.riot/requirements/3cbb6c7.txt
diff --git a/.riot/requirements/3cbe634.txt b/dd-trace-py/.riot/requirements/3cbe634.txt
similarity index 100%
rename from .riot/requirements/3cbe634.txt
rename to dd-trace-py/.riot/requirements/3cbe634.txt
diff --git a/.riot/requirements/3d84480.txt b/dd-trace-py/.riot/requirements/3d84480.txt
similarity index 100%
rename from .riot/requirements/3d84480.txt
rename to dd-trace-py/.riot/requirements/3d84480.txt
diff --git a/.riot/requirements/3dfb58a.txt b/dd-trace-py/.riot/requirements/3dfb58a.txt
similarity index 100%
rename from .riot/requirements/3dfb58a.txt
rename to dd-trace-py/.riot/requirements/3dfb58a.txt
diff --git a/.riot/requirements/3e6dcb6.txt b/dd-trace-py/.riot/requirements/3e6dcb6.txt
similarity index 100%
rename from .riot/requirements/3e6dcb6.txt
rename to dd-trace-py/.riot/requirements/3e6dcb6.txt
diff --git a/.riot/requirements/3ec038b.txt b/dd-trace-py/.riot/requirements/3ec038b.txt
similarity index 100%
rename from .riot/requirements/3ec038b.txt
rename to dd-trace-py/.riot/requirements/3ec038b.txt
diff --git a/.riot/requirements/3ed7683.txt b/dd-trace-py/.riot/requirements/3ed7683.txt
similarity index 100%
rename from .riot/requirements/3ed7683.txt
rename to dd-trace-py/.riot/requirements/3ed7683.txt
diff --git a/.riot/requirements/3f1be84.txt b/dd-trace-py/.riot/requirements/3f1be84.txt
similarity index 100%
rename from .riot/requirements/3f1be84.txt
rename to dd-trace-py/.riot/requirements/3f1be84.txt
diff --git a/.riot/requirements/3f279b1.txt b/dd-trace-py/.riot/requirements/3f279b1.txt
similarity index 100%
rename from .riot/requirements/3f279b1.txt
rename to dd-trace-py/.riot/requirements/3f279b1.txt
diff --git a/.riot/requirements/3f472ba.txt b/dd-trace-py/.riot/requirements/3f472ba.txt
similarity index 100%
rename from .riot/requirements/3f472ba.txt
rename to dd-trace-py/.riot/requirements/3f472ba.txt
diff --git a/.riot/requirements/3faec3d.txt b/dd-trace-py/.riot/requirements/3faec3d.txt
similarity index 100%
rename from .riot/requirements/3faec3d.txt
rename to dd-trace-py/.riot/requirements/3faec3d.txt
diff --git a/.riot/requirements/3fe78f9.txt b/dd-trace-py/.riot/requirements/3fe78f9.txt
similarity index 100%
rename from .riot/requirements/3fe78f9.txt
rename to dd-trace-py/.riot/requirements/3fe78f9.txt
diff --git a/.riot/requirements/3feb72d.txt b/dd-trace-py/.riot/requirements/3feb72d.txt
similarity index 100%
rename from .riot/requirements/3feb72d.txt
rename to dd-trace-py/.riot/requirements/3feb72d.txt
diff --git a/.riot/requirements/401d7e2.txt b/dd-trace-py/.riot/requirements/401d7e2.txt
similarity index 100%
rename from .riot/requirements/401d7e2.txt
rename to dd-trace-py/.riot/requirements/401d7e2.txt
diff --git a/.riot/requirements/402deda.txt b/dd-trace-py/.riot/requirements/402deda.txt
similarity index 100%
rename from .riot/requirements/402deda.txt
rename to dd-trace-py/.riot/requirements/402deda.txt
diff --git a/.riot/requirements/404933a.txt b/dd-trace-py/.riot/requirements/404933a.txt
similarity index 100%
rename from .riot/requirements/404933a.txt
rename to dd-trace-py/.riot/requirements/404933a.txt
diff --git a/.riot/requirements/4061c90.txt b/dd-trace-py/.riot/requirements/4061c90.txt
similarity index 100%
rename from .riot/requirements/4061c90.txt
rename to dd-trace-py/.riot/requirements/4061c90.txt
diff --git a/.riot/requirements/407c34d.txt b/dd-trace-py/.riot/requirements/407c34d.txt
similarity index 100%
rename from .riot/requirements/407c34d.txt
rename to dd-trace-py/.riot/requirements/407c34d.txt
diff --git a/.riot/requirements/4087ac1.txt b/dd-trace-py/.riot/requirements/4087ac1.txt
similarity index 100%
rename from .riot/requirements/4087ac1.txt
rename to dd-trace-py/.riot/requirements/4087ac1.txt
diff --git a/.riot/requirements/409087d.txt b/dd-trace-py/.riot/requirements/409087d.txt
similarity index 100%
rename from .riot/requirements/409087d.txt
rename to dd-trace-py/.riot/requirements/409087d.txt
diff --git a/.riot/requirements/4132bce.txt b/dd-trace-py/.riot/requirements/4132bce.txt
similarity index 100%
rename from .riot/requirements/4132bce.txt
rename to dd-trace-py/.riot/requirements/4132bce.txt
diff --git a/.riot/requirements/414b02d.txt b/dd-trace-py/.riot/requirements/414b02d.txt
similarity index 100%
rename from .riot/requirements/414b02d.txt
rename to dd-trace-py/.riot/requirements/414b02d.txt
diff --git a/.riot/requirements/4197bde.txt b/dd-trace-py/.riot/requirements/4197bde.txt
similarity index 100%
rename from .riot/requirements/4197bde.txt
rename to dd-trace-py/.riot/requirements/4197bde.txt
diff --git a/.riot/requirements/41b0f95.txt b/dd-trace-py/.riot/requirements/41b0f95.txt
similarity index 100%
rename from .riot/requirements/41b0f95.txt
rename to dd-trace-py/.riot/requirements/41b0f95.txt
diff --git a/.riot/requirements/4211915.txt b/dd-trace-py/.riot/requirements/4211915.txt
similarity index 100%
rename from .riot/requirements/4211915.txt
rename to dd-trace-py/.riot/requirements/4211915.txt
diff --git a/.riot/requirements/42964a4.txt b/dd-trace-py/.riot/requirements/42964a4.txt
similarity index 100%
rename from .riot/requirements/42964a4.txt
rename to dd-trace-py/.riot/requirements/42964a4.txt
diff --git a/.riot/requirements/42a952a.txt b/dd-trace-py/.riot/requirements/42a952a.txt
similarity index 100%
rename from .riot/requirements/42a952a.txt
rename to dd-trace-py/.riot/requirements/42a952a.txt
diff --git a/.riot/requirements/42da45b.txt b/dd-trace-py/.riot/requirements/42da45b.txt
similarity index 100%
rename from .riot/requirements/42da45b.txt
rename to dd-trace-py/.riot/requirements/42da45b.txt
diff --git a/.riot/requirements/432f978.txt b/dd-trace-py/.riot/requirements/432f978.txt
similarity index 100%
rename from .riot/requirements/432f978.txt
rename to dd-trace-py/.riot/requirements/432f978.txt
diff --git a/.riot/requirements/43711f7.txt b/dd-trace-py/.riot/requirements/43711f7.txt
similarity index 100%
rename from .riot/requirements/43711f7.txt
rename to dd-trace-py/.riot/requirements/43711f7.txt
diff --git a/.riot/requirements/437caff.txt b/dd-trace-py/.riot/requirements/437caff.txt
similarity index 100%
rename from .riot/requirements/437caff.txt
rename to dd-trace-py/.riot/requirements/437caff.txt
diff --git a/.riot/requirements/440e361.txt b/dd-trace-py/.riot/requirements/440e361.txt
similarity index 100%
rename from .riot/requirements/440e361.txt
rename to dd-trace-py/.riot/requirements/440e361.txt
diff --git a/.riot/requirements/4487fa7.txt b/dd-trace-py/.riot/requirements/4487fa7.txt
similarity index 100%
rename from .riot/requirements/4487fa7.txt
rename to dd-trace-py/.riot/requirements/4487fa7.txt
diff --git a/.riot/requirements/44abb4f.txt b/dd-trace-py/.riot/requirements/44abb4f.txt
similarity index 100%
rename from .riot/requirements/44abb4f.txt
rename to dd-trace-py/.riot/requirements/44abb4f.txt
diff --git a/.riot/requirements/450acd3.txt b/dd-trace-py/.riot/requirements/450acd3.txt
similarity index 100%
rename from .riot/requirements/450acd3.txt
rename to dd-trace-py/.riot/requirements/450acd3.txt
diff --git a/.riot/requirements/452c0ec.txt b/dd-trace-py/.riot/requirements/452c0ec.txt
similarity index 100%
rename from .riot/requirements/452c0ec.txt
rename to dd-trace-py/.riot/requirements/452c0ec.txt
diff --git a/.riot/requirements/4532043.txt b/dd-trace-py/.riot/requirements/4532043.txt
similarity index 100%
rename from .riot/requirements/4532043.txt
rename to dd-trace-py/.riot/requirements/4532043.txt
diff --git a/.riot/requirements/458c79d.txt b/dd-trace-py/.riot/requirements/458c79d.txt
similarity index 100%
rename from .riot/requirements/458c79d.txt
rename to dd-trace-py/.riot/requirements/458c79d.txt
diff --git a/.riot/requirements/45c1c7f.txt b/dd-trace-py/.riot/requirements/45c1c7f.txt
similarity index 100%
rename from .riot/requirements/45c1c7f.txt
rename to dd-trace-py/.riot/requirements/45c1c7f.txt
diff --git a/.riot/requirements/45f9c27.txt b/dd-trace-py/.riot/requirements/45f9c27.txt
similarity index 100%
rename from .riot/requirements/45f9c27.txt
rename to dd-trace-py/.riot/requirements/45f9c27.txt
diff --git a/.riot/requirements/460bcb3.txt b/dd-trace-py/.riot/requirements/460bcb3.txt
similarity index 100%
rename from .riot/requirements/460bcb3.txt
rename to dd-trace-py/.riot/requirements/460bcb3.txt
diff --git a/.riot/requirements/460df49.txt b/dd-trace-py/.riot/requirements/460df49.txt
similarity index 100%
rename from .riot/requirements/460df49.txt
rename to dd-trace-py/.riot/requirements/460df49.txt
diff --git a/.riot/requirements/461797f.txt b/dd-trace-py/.riot/requirements/461797f.txt
similarity index 100%
rename from .riot/requirements/461797f.txt
rename to dd-trace-py/.riot/requirements/461797f.txt
diff --git a/.riot/requirements/4688b07.txt b/dd-trace-py/.riot/requirements/4688b07.txt
similarity index 100%
rename from .riot/requirements/4688b07.txt
rename to dd-trace-py/.riot/requirements/4688b07.txt
diff --git a/.riot/requirements/468d0c4.txt b/dd-trace-py/.riot/requirements/468d0c4.txt
similarity index 100%
rename from .riot/requirements/468d0c4.txt
rename to dd-trace-py/.riot/requirements/468d0c4.txt
diff --git a/.riot/requirements/46e7fca.txt b/dd-trace-py/.riot/requirements/46e7fca.txt
similarity index 100%
rename from .riot/requirements/46e7fca.txt
rename to dd-trace-py/.riot/requirements/46e7fca.txt
diff --git a/.riot/requirements/47aa8cc.txt b/dd-trace-py/.riot/requirements/47aa8cc.txt
similarity index 100%
rename from .riot/requirements/47aa8cc.txt
rename to dd-trace-py/.riot/requirements/47aa8cc.txt
diff --git a/.riot/requirements/481655f.txt b/dd-trace-py/.riot/requirements/481655f.txt
similarity index 100%
rename from .riot/requirements/481655f.txt
rename to dd-trace-py/.riot/requirements/481655f.txt
diff --git a/.riot/requirements/48247d7.txt b/dd-trace-py/.riot/requirements/48247d7.txt
similarity index 100%
rename from .riot/requirements/48247d7.txt
rename to dd-trace-py/.riot/requirements/48247d7.txt
diff --git a/.riot/requirements/4864b91.txt b/dd-trace-py/.riot/requirements/4864b91.txt
similarity index 100%
rename from .riot/requirements/4864b91.txt
rename to dd-trace-py/.riot/requirements/4864b91.txt
diff --git a/.riot/requirements/4881c46.txt b/dd-trace-py/.riot/requirements/4881c46.txt
similarity index 100%
rename from .riot/requirements/4881c46.txt
rename to dd-trace-py/.riot/requirements/4881c46.txt
diff --git a/.riot/requirements/489ffd5.txt b/dd-trace-py/.riot/requirements/489ffd5.txt
similarity index 100%
rename from .riot/requirements/489ffd5.txt
rename to dd-trace-py/.riot/requirements/489ffd5.txt
diff --git a/.riot/requirements/4920d3f.txt b/dd-trace-py/.riot/requirements/4920d3f.txt
similarity index 100%
rename from .riot/requirements/4920d3f.txt
rename to dd-trace-py/.riot/requirements/4920d3f.txt
diff --git a/.riot/requirements/492b83f.txt b/dd-trace-py/.riot/requirements/492b83f.txt
similarity index 100%
rename from .riot/requirements/492b83f.txt
rename to dd-trace-py/.riot/requirements/492b83f.txt
diff --git a/.riot/requirements/4a31628.txt b/dd-trace-py/.riot/requirements/4a31628.txt
similarity index 100%
rename from .riot/requirements/4a31628.txt
rename to dd-trace-py/.riot/requirements/4a31628.txt
diff --git a/.riot/requirements/4a422e1.txt b/dd-trace-py/.riot/requirements/4a422e1.txt
similarity index 100%
rename from .riot/requirements/4a422e1.txt
rename to dd-trace-py/.riot/requirements/4a422e1.txt
diff --git a/.riot/requirements/4a59bb7.txt b/dd-trace-py/.riot/requirements/4a59bb7.txt
similarity index 100%
rename from .riot/requirements/4a59bb7.txt
rename to dd-trace-py/.riot/requirements/4a59bb7.txt
diff --git a/.riot/requirements/4a79851.txt b/dd-trace-py/.riot/requirements/4a79851.txt
similarity index 100%
rename from .riot/requirements/4a79851.txt
rename to dd-trace-py/.riot/requirements/4a79851.txt
diff --git a/.riot/requirements/4a90061.txt b/dd-trace-py/.riot/requirements/4a90061.txt
similarity index 100%
rename from .riot/requirements/4a90061.txt
rename to dd-trace-py/.riot/requirements/4a90061.txt
diff --git a/.riot/requirements/4aa2a2a.txt b/dd-trace-py/.riot/requirements/4aa2a2a.txt
similarity index 100%
rename from .riot/requirements/4aa2a2a.txt
rename to dd-trace-py/.riot/requirements/4aa2a2a.txt
diff --git a/.riot/requirements/4b23d25.txt b/dd-trace-py/.riot/requirements/4b23d25.txt
similarity index 100%
rename from .riot/requirements/4b23d25.txt
rename to dd-trace-py/.riot/requirements/4b23d25.txt
diff --git a/.riot/requirements/4b9ed85.txt b/dd-trace-py/.riot/requirements/4b9ed85.txt
similarity index 100%
rename from .riot/requirements/4b9ed85.txt
rename to dd-trace-py/.riot/requirements/4b9ed85.txt
diff --git a/.riot/requirements/4be94bf.txt b/dd-trace-py/.riot/requirements/4be94bf.txt
similarity index 100%
rename from .riot/requirements/4be94bf.txt
rename to dd-trace-py/.riot/requirements/4be94bf.txt
diff --git a/.riot/requirements/4c41c56.txt b/dd-trace-py/.riot/requirements/4c41c56.txt
similarity index 100%
rename from .riot/requirements/4c41c56.txt
rename to dd-trace-py/.riot/requirements/4c41c56.txt
diff --git a/.riot/requirements/4c6b7c3.txt b/dd-trace-py/.riot/requirements/4c6b7c3.txt
similarity index 100%
rename from .riot/requirements/4c6b7c3.txt
rename to dd-trace-py/.riot/requirements/4c6b7c3.txt
diff --git a/.riot/requirements/4c87f15.txt b/dd-trace-py/.riot/requirements/4c87f15.txt
similarity index 100%
rename from .riot/requirements/4c87f15.txt
rename to dd-trace-py/.riot/requirements/4c87f15.txt
diff --git a/.riot/requirements/4cdef4b.txt b/dd-trace-py/.riot/requirements/4cdef4b.txt
similarity index 100%
rename from .riot/requirements/4cdef4b.txt
rename to dd-trace-py/.riot/requirements/4cdef4b.txt
diff --git a/.riot/requirements/4ce4ec1.txt b/dd-trace-py/.riot/requirements/4ce4ec1.txt
similarity index 100%
rename from .riot/requirements/4ce4ec1.txt
rename to dd-trace-py/.riot/requirements/4ce4ec1.txt
diff --git a/.riot/requirements/4d95852.txt b/dd-trace-py/.riot/requirements/4d95852.txt
similarity index 100%
rename from .riot/requirements/4d95852.txt
rename to dd-trace-py/.riot/requirements/4d95852.txt
diff --git a/.riot/requirements/4dc83b1.txt b/dd-trace-py/.riot/requirements/4dc83b1.txt
similarity index 100%
rename from .riot/requirements/4dc83b1.txt
rename to dd-trace-py/.riot/requirements/4dc83b1.txt
diff --git a/.riot/requirements/4e26a6c.txt b/dd-trace-py/.riot/requirements/4e26a6c.txt
similarity index 100%
rename from .riot/requirements/4e26a6c.txt
rename to dd-trace-py/.riot/requirements/4e26a6c.txt
diff --git a/.riot/requirements/4e9a8ca.txt b/dd-trace-py/.riot/requirements/4e9a8ca.txt
similarity index 100%
rename from .riot/requirements/4e9a8ca.txt
rename to dd-trace-py/.riot/requirements/4e9a8ca.txt
diff --git a/.riot/requirements/4ed631d.txt b/dd-trace-py/.riot/requirements/4ed631d.txt
similarity index 100%
rename from .riot/requirements/4ed631d.txt
rename to dd-trace-py/.riot/requirements/4ed631d.txt
diff --git a/.riot/requirements/4edb820.txt b/dd-trace-py/.riot/requirements/4edb820.txt
similarity index 100%
rename from .riot/requirements/4edb820.txt
rename to dd-trace-py/.riot/requirements/4edb820.txt
diff --git a/.riot/requirements/4efad1c.txt b/dd-trace-py/.riot/requirements/4efad1c.txt
similarity index 100%
rename from .riot/requirements/4efad1c.txt
rename to dd-trace-py/.riot/requirements/4efad1c.txt
diff --git a/.riot/requirements/4fb06db.txt b/dd-trace-py/.riot/requirements/4fb06db.txt
similarity index 100%
rename from .riot/requirements/4fb06db.txt
rename to dd-trace-py/.riot/requirements/4fb06db.txt
diff --git a/.riot/requirements/4fcf978.txt b/dd-trace-py/.riot/requirements/4fcf978.txt
similarity index 100%
rename from .riot/requirements/4fcf978.txt
rename to dd-trace-py/.riot/requirements/4fcf978.txt
diff --git a/.riot/requirements/4fd1520.txt b/dd-trace-py/.riot/requirements/4fd1520.txt
similarity index 100%
rename from .riot/requirements/4fd1520.txt
rename to dd-trace-py/.riot/requirements/4fd1520.txt
diff --git a/.riot/requirements/4fe37f9.txt b/dd-trace-py/.riot/requirements/4fe37f9.txt
similarity index 100%
rename from .riot/requirements/4fe37f9.txt
rename to dd-trace-py/.riot/requirements/4fe37f9.txt
diff --git a/.riot/requirements/507a7eb.txt b/dd-trace-py/.riot/requirements/507a7eb.txt
similarity index 100%
rename from .riot/requirements/507a7eb.txt
rename to dd-trace-py/.riot/requirements/507a7eb.txt
diff --git a/.riot/requirements/512bff3.txt b/dd-trace-py/.riot/requirements/512bff3.txt
similarity index 100%
rename from .riot/requirements/512bff3.txt
rename to dd-trace-py/.riot/requirements/512bff3.txt
diff --git a/.riot/requirements/517236e.txt b/dd-trace-py/.riot/requirements/517236e.txt
similarity index 100%
rename from .riot/requirements/517236e.txt
rename to dd-trace-py/.riot/requirements/517236e.txt
diff --git a/.riot/requirements/51ae308.txt b/dd-trace-py/.riot/requirements/51ae308.txt
similarity index 100%
rename from .riot/requirements/51ae308.txt
rename to dd-trace-py/.riot/requirements/51ae308.txt
diff --git a/.riot/requirements/51b9c26.txt b/dd-trace-py/.riot/requirements/51b9c26.txt
similarity index 100%
rename from .riot/requirements/51b9c26.txt
rename to dd-trace-py/.riot/requirements/51b9c26.txt
diff --git a/.riot/requirements/51c004c.txt b/dd-trace-py/.riot/requirements/51c004c.txt
similarity index 100%
rename from .riot/requirements/51c004c.txt
rename to dd-trace-py/.riot/requirements/51c004c.txt
diff --git a/.riot/requirements/51c8a5c.txt b/dd-trace-py/.riot/requirements/51c8a5c.txt
similarity index 100%
rename from .riot/requirements/51c8a5c.txt
rename to dd-trace-py/.riot/requirements/51c8a5c.txt
diff --git a/.riot/requirements/51d9412.txt b/dd-trace-py/.riot/requirements/51d9412.txt
similarity index 100%
rename from .riot/requirements/51d9412.txt
rename to dd-trace-py/.riot/requirements/51d9412.txt
diff --git a/.riot/requirements/51de86b.txt b/dd-trace-py/.riot/requirements/51de86b.txt
similarity index 100%
rename from .riot/requirements/51de86b.txt
rename to dd-trace-py/.riot/requirements/51de86b.txt
diff --git a/.riot/requirements/51e2096.txt b/dd-trace-py/.riot/requirements/51e2096.txt
similarity index 100%
rename from .riot/requirements/51e2096.txt
rename to dd-trace-py/.riot/requirements/51e2096.txt
diff --git a/.riot/requirements/51f5382.txt b/dd-trace-py/.riot/requirements/51f5382.txt
similarity index 100%
rename from .riot/requirements/51f5382.txt
rename to dd-trace-py/.riot/requirements/51f5382.txt
diff --git a/.riot/requirements/522a546.txt b/dd-trace-py/.riot/requirements/522a546.txt
similarity index 100%
rename from .riot/requirements/522a546.txt
rename to dd-trace-py/.riot/requirements/522a546.txt
diff --git a/.riot/requirements/52d1484.txt b/dd-trace-py/.riot/requirements/52d1484.txt
similarity index 100%
rename from .riot/requirements/52d1484.txt
rename to dd-trace-py/.riot/requirements/52d1484.txt
diff --git a/.riot/requirements/52e614f.txt b/dd-trace-py/.riot/requirements/52e614f.txt
similarity index 100%
rename from .riot/requirements/52e614f.txt
rename to dd-trace-py/.riot/requirements/52e614f.txt
diff --git a/.riot/requirements/52fbd4e.txt b/dd-trace-py/.riot/requirements/52fbd4e.txt
similarity index 100%
rename from .riot/requirements/52fbd4e.txt
rename to dd-trace-py/.riot/requirements/52fbd4e.txt
diff --git a/.riot/requirements/5301b11.txt b/dd-trace-py/.riot/requirements/5301b11.txt
similarity index 100%
rename from .riot/requirements/5301b11.txt
rename to dd-trace-py/.riot/requirements/5301b11.txt
diff --git a/.riot/requirements/538bd65.txt b/dd-trace-py/.riot/requirements/538bd65.txt
similarity index 100%
rename from .riot/requirements/538bd65.txt
rename to dd-trace-py/.riot/requirements/538bd65.txt
diff --git a/.riot/requirements/538f024.txt b/dd-trace-py/.riot/requirements/538f024.txt
similarity index 100%
rename from .riot/requirements/538f024.txt
rename to dd-trace-py/.riot/requirements/538f024.txt
diff --git a/.riot/requirements/53b1ba3.txt b/dd-trace-py/.riot/requirements/53b1ba3.txt
similarity index 100%
rename from .riot/requirements/53b1ba3.txt
rename to dd-trace-py/.riot/requirements/53b1ba3.txt
diff --git a/.riot/requirements/53c044d.txt b/dd-trace-py/.riot/requirements/53c044d.txt
similarity index 100%
rename from .riot/requirements/53c044d.txt
rename to dd-trace-py/.riot/requirements/53c044d.txt
diff --git a/.riot/requirements/5420667.txt b/dd-trace-py/.riot/requirements/5420667.txt
similarity index 100%
rename from .riot/requirements/5420667.txt
rename to dd-trace-py/.riot/requirements/5420667.txt
diff --git a/.riot/requirements/546aa25.txt b/dd-trace-py/.riot/requirements/546aa25.txt
similarity index 100%
rename from .riot/requirements/546aa25.txt
rename to dd-trace-py/.riot/requirements/546aa25.txt
diff --git a/.riot/requirements/547b36f.txt b/dd-trace-py/.riot/requirements/547b36f.txt
similarity index 100%
rename from .riot/requirements/547b36f.txt
rename to dd-trace-py/.riot/requirements/547b36f.txt
diff --git a/.riot/requirements/5484ca0.txt b/dd-trace-py/.riot/requirements/5484ca0.txt
similarity index 100%
rename from .riot/requirements/5484ca0.txt
rename to dd-trace-py/.riot/requirements/5484ca0.txt
diff --git a/.riot/requirements/54b91ab.txt b/dd-trace-py/.riot/requirements/54b91ab.txt
similarity index 100%
rename from .riot/requirements/54b91ab.txt
rename to dd-trace-py/.riot/requirements/54b91ab.txt
diff --git a/.riot/requirements/559bbf2.txt b/dd-trace-py/.riot/requirements/559bbf2.txt
similarity index 100%
rename from .riot/requirements/559bbf2.txt
rename to dd-trace-py/.riot/requirements/559bbf2.txt
diff --git a/.riot/requirements/55abc5e.txt b/dd-trace-py/.riot/requirements/55abc5e.txt
similarity index 100%
rename from .riot/requirements/55abc5e.txt
rename to dd-trace-py/.riot/requirements/55abc5e.txt
diff --git a/.riot/requirements/5646fdd.txt b/dd-trace-py/.riot/requirements/5646fdd.txt
similarity index 100%
rename from .riot/requirements/5646fdd.txt
rename to dd-trace-py/.riot/requirements/5646fdd.txt
diff --git a/.riot/requirements/569b521.txt b/dd-trace-py/.riot/requirements/569b521.txt
similarity index 100%
rename from .riot/requirements/569b521.txt
rename to dd-trace-py/.riot/requirements/569b521.txt
diff --git a/.riot/requirements/573fdbf.txt b/dd-trace-py/.riot/requirements/573fdbf.txt
similarity index 100%
rename from .riot/requirements/573fdbf.txt
rename to dd-trace-py/.riot/requirements/573fdbf.txt
diff --git a/.riot/requirements/57d003f.txt b/dd-trace-py/.riot/requirements/57d003f.txt
similarity index 100%
rename from .riot/requirements/57d003f.txt
rename to dd-trace-py/.riot/requirements/57d003f.txt
diff --git a/.riot/requirements/57d2961.txt b/dd-trace-py/.riot/requirements/57d2961.txt
similarity index 100%
rename from .riot/requirements/57d2961.txt
rename to dd-trace-py/.riot/requirements/57d2961.txt
diff --git a/.riot/requirements/57de376.txt b/dd-trace-py/.riot/requirements/57de376.txt
similarity index 100%
rename from .riot/requirements/57de376.txt
rename to dd-trace-py/.riot/requirements/57de376.txt
diff --git a/.riot/requirements/580224f.txt b/dd-trace-py/.riot/requirements/580224f.txt
similarity index 100%
rename from .riot/requirements/580224f.txt
rename to dd-trace-py/.riot/requirements/580224f.txt
diff --git a/.riot/requirements/588e8fa.txt b/dd-trace-py/.riot/requirements/588e8fa.txt
similarity index 100%
rename from .riot/requirements/588e8fa.txt
rename to dd-trace-py/.riot/requirements/588e8fa.txt
diff --git a/.riot/requirements/58c4ca5.txt b/dd-trace-py/.riot/requirements/58c4ca5.txt
similarity index 100%
rename from .riot/requirements/58c4ca5.txt
rename to dd-trace-py/.riot/requirements/58c4ca5.txt
diff --git a/.riot/requirements/58c9c5d.txt b/dd-trace-py/.riot/requirements/58c9c5d.txt
similarity index 100%
rename from .riot/requirements/58c9c5d.txt
rename to dd-trace-py/.riot/requirements/58c9c5d.txt
diff --git a/.riot/requirements/58d7730.txt b/dd-trace-py/.riot/requirements/58d7730.txt
similarity index 100%
rename from .riot/requirements/58d7730.txt
rename to dd-trace-py/.riot/requirements/58d7730.txt
diff --git a/.riot/requirements/590286a.txt b/dd-trace-py/.riot/requirements/590286a.txt
similarity index 100%
rename from .riot/requirements/590286a.txt
rename to dd-trace-py/.riot/requirements/590286a.txt
diff --git a/.riot/requirements/59e7d85.txt b/dd-trace-py/.riot/requirements/59e7d85.txt
similarity index 100%
rename from .riot/requirements/59e7d85.txt
rename to dd-trace-py/.riot/requirements/59e7d85.txt
diff --git a/.riot/requirements/5a48bdf.txt b/dd-trace-py/.riot/requirements/5a48bdf.txt
similarity index 100%
rename from .riot/requirements/5a48bdf.txt
rename to dd-trace-py/.riot/requirements/5a48bdf.txt
diff --git a/.riot/requirements/5a4a2ee.txt b/dd-trace-py/.riot/requirements/5a4a2ee.txt
similarity index 100%
rename from .riot/requirements/5a4a2ee.txt
rename to dd-trace-py/.riot/requirements/5a4a2ee.txt
diff --git a/.riot/requirements/5a978d2.txt b/dd-trace-py/.riot/requirements/5a978d2.txt
similarity index 100%
rename from .riot/requirements/5a978d2.txt
rename to dd-trace-py/.riot/requirements/5a978d2.txt
diff --git a/.riot/requirements/5b09682.txt b/dd-trace-py/.riot/requirements/5b09682.txt
similarity index 100%
rename from .riot/requirements/5b09682.txt
rename to dd-trace-py/.riot/requirements/5b09682.txt
diff --git a/.riot/requirements/5b1ab5f.txt b/dd-trace-py/.riot/requirements/5b1ab5f.txt
similarity index 100%
rename from .riot/requirements/5b1ab5f.txt
rename to dd-trace-py/.riot/requirements/5b1ab5f.txt
diff --git a/.riot/requirements/5b41073.txt b/dd-trace-py/.riot/requirements/5b41073.txt
similarity index 100%
rename from .riot/requirements/5b41073.txt
rename to dd-trace-py/.riot/requirements/5b41073.txt
diff --git a/.riot/requirements/5b43a4a.txt b/dd-trace-py/.riot/requirements/5b43a4a.txt
similarity index 100%
rename from .riot/requirements/5b43a4a.txt
rename to dd-trace-py/.riot/requirements/5b43a4a.txt
diff --git a/.riot/requirements/5b4a20e.txt b/dd-trace-py/.riot/requirements/5b4a20e.txt
similarity index 100%
rename from .riot/requirements/5b4a20e.txt
rename to dd-trace-py/.riot/requirements/5b4a20e.txt
diff --git a/.riot/requirements/5b628de.txt b/dd-trace-py/.riot/requirements/5b628de.txt
similarity index 100%
rename from .riot/requirements/5b628de.txt
rename to dd-trace-py/.riot/requirements/5b628de.txt
diff --git a/.riot/requirements/5b6d5bd.txt b/dd-trace-py/.riot/requirements/5b6d5bd.txt
similarity index 100%
rename from .riot/requirements/5b6d5bd.txt
rename to dd-trace-py/.riot/requirements/5b6d5bd.txt
diff --git a/.riot/requirements/5b98c8b.txt b/dd-trace-py/.riot/requirements/5b98c8b.txt
similarity index 100%
rename from .riot/requirements/5b98c8b.txt
rename to dd-trace-py/.riot/requirements/5b98c8b.txt
diff --git a/.riot/requirements/5bde71c.txt b/dd-trace-py/.riot/requirements/5bde71c.txt
similarity index 100%
rename from .riot/requirements/5bde71c.txt
rename to dd-trace-py/.riot/requirements/5bde71c.txt
diff --git a/.riot/requirements/5ccc957.txt b/dd-trace-py/.riot/requirements/5ccc957.txt
similarity index 100%
rename from .riot/requirements/5ccc957.txt
rename to dd-trace-py/.riot/requirements/5ccc957.txt
diff --git a/.riot/requirements/5d16398.txt b/dd-trace-py/.riot/requirements/5d16398.txt
similarity index 100%
rename from .riot/requirements/5d16398.txt
rename to dd-trace-py/.riot/requirements/5d16398.txt
diff --git a/.riot/requirements/5d2e301.txt b/dd-trace-py/.riot/requirements/5d2e301.txt
similarity index 100%
rename from .riot/requirements/5d2e301.txt
rename to dd-trace-py/.riot/requirements/5d2e301.txt
diff --git a/.riot/requirements/5db6f26.txt b/dd-trace-py/.riot/requirements/5db6f26.txt
similarity index 100%
rename from .riot/requirements/5db6f26.txt
rename to dd-trace-py/.riot/requirements/5db6f26.txt
diff --git a/.riot/requirements/5ddbef6.txt b/dd-trace-py/.riot/requirements/5ddbef6.txt
similarity index 100%
rename from .riot/requirements/5ddbef6.txt
rename to dd-trace-py/.riot/requirements/5ddbef6.txt
diff --git a/.riot/requirements/5e2ba1e.txt b/dd-trace-py/.riot/requirements/5e2ba1e.txt
similarity index 100%
rename from .riot/requirements/5e2ba1e.txt
rename to dd-trace-py/.riot/requirements/5e2ba1e.txt
diff --git a/.riot/requirements/5ea1f55.txt b/dd-trace-py/.riot/requirements/5ea1f55.txt
similarity index 100%
rename from .riot/requirements/5ea1f55.txt
rename to dd-trace-py/.riot/requirements/5ea1f55.txt
diff --git a/.riot/requirements/5eb6b4f.txt b/dd-trace-py/.riot/requirements/5eb6b4f.txt
similarity index 100%
rename from .riot/requirements/5eb6b4f.txt
rename to dd-trace-py/.riot/requirements/5eb6b4f.txt
diff --git a/.riot/requirements/5ec239b.txt b/dd-trace-py/.riot/requirements/5ec239b.txt
similarity index 100%
rename from .riot/requirements/5ec239b.txt
rename to dd-trace-py/.riot/requirements/5ec239b.txt
diff --git a/.riot/requirements/5ec8423.txt b/dd-trace-py/.riot/requirements/5ec8423.txt
similarity index 100%
rename from .riot/requirements/5ec8423.txt
rename to dd-trace-py/.riot/requirements/5ec8423.txt
diff --git a/.riot/requirements/5f63374.txt b/dd-trace-py/.riot/requirements/5f63374.txt
similarity index 100%
rename from .riot/requirements/5f63374.txt
rename to dd-trace-py/.riot/requirements/5f63374.txt
diff --git a/.riot/requirements/5ff3018.txt b/dd-trace-py/.riot/requirements/5ff3018.txt
similarity index 100%
rename from .riot/requirements/5ff3018.txt
rename to dd-trace-py/.riot/requirements/5ff3018.txt
diff --git a/.riot/requirements/6028c6e.txt b/dd-trace-py/.riot/requirements/6028c6e.txt
similarity index 100%
rename from .riot/requirements/6028c6e.txt
rename to dd-trace-py/.riot/requirements/6028c6e.txt
diff --git a/.riot/requirements/605a6de.txt b/dd-trace-py/.riot/requirements/605a6de.txt
similarity index 100%
rename from .riot/requirements/605a6de.txt
rename to dd-trace-py/.riot/requirements/605a6de.txt
diff --git a/.riot/requirements/606dcae.txt b/dd-trace-py/.riot/requirements/606dcae.txt
similarity index 100%
rename from .riot/requirements/606dcae.txt
rename to dd-trace-py/.riot/requirements/606dcae.txt
diff --git a/.riot/requirements/60ad98e.txt b/dd-trace-py/.riot/requirements/60ad98e.txt
similarity index 100%
rename from .riot/requirements/60ad98e.txt
rename to dd-trace-py/.riot/requirements/60ad98e.txt
diff --git a/.riot/requirements/60b507f.txt b/dd-trace-py/.riot/requirements/60b507f.txt
similarity index 100%
rename from .riot/requirements/60b507f.txt
rename to dd-trace-py/.riot/requirements/60b507f.txt
diff --git a/.riot/requirements/60dc244.txt b/dd-trace-py/.riot/requirements/60dc244.txt
similarity index 100%
rename from .riot/requirements/60dc244.txt
rename to dd-trace-py/.riot/requirements/60dc244.txt
diff --git a/.riot/requirements/610527e.txt b/dd-trace-py/.riot/requirements/610527e.txt
similarity index 100%
rename from .riot/requirements/610527e.txt
rename to dd-trace-py/.riot/requirements/610527e.txt
diff --git a/.riot/requirements/6161dc8.txt b/dd-trace-py/.riot/requirements/6161dc8.txt
similarity index 100%
rename from .riot/requirements/6161dc8.txt
rename to dd-trace-py/.riot/requirements/6161dc8.txt
diff --git a/.riot/requirements/616c865.txt b/dd-trace-py/.riot/requirements/616c865.txt
similarity index 100%
rename from .riot/requirements/616c865.txt
rename to dd-trace-py/.riot/requirements/616c865.txt
diff --git a/.riot/requirements/61ad049.txt b/dd-trace-py/.riot/requirements/61ad049.txt
similarity index 100%
rename from .riot/requirements/61ad049.txt
rename to dd-trace-py/.riot/requirements/61ad049.txt
diff --git a/.riot/requirements/61ae1ec.txt b/dd-trace-py/.riot/requirements/61ae1ec.txt
similarity index 100%
rename from .riot/requirements/61ae1ec.txt
rename to dd-trace-py/.riot/requirements/61ae1ec.txt
diff --git a/.riot/requirements/622ac0c.txt b/dd-trace-py/.riot/requirements/622ac0c.txt
similarity index 100%
rename from .riot/requirements/622ac0c.txt
rename to dd-trace-py/.riot/requirements/622ac0c.txt
diff --git a/.riot/requirements/622c7eb.txt b/dd-trace-py/.riot/requirements/622c7eb.txt
similarity index 100%
rename from .riot/requirements/622c7eb.txt
rename to dd-trace-py/.riot/requirements/622c7eb.txt
diff --git a/.riot/requirements/6289286.txt b/dd-trace-py/.riot/requirements/6289286.txt
similarity index 100%
rename from .riot/requirements/6289286.txt
rename to dd-trace-py/.riot/requirements/6289286.txt
diff --git a/.riot/requirements/62c4442.txt b/dd-trace-py/.riot/requirements/62c4442.txt
similarity index 100%
rename from .riot/requirements/62c4442.txt
rename to dd-trace-py/.riot/requirements/62c4442.txt
diff --git a/.riot/requirements/62dfd2d.txt b/dd-trace-py/.riot/requirements/62dfd2d.txt
similarity index 100%
rename from .riot/requirements/62dfd2d.txt
rename to dd-trace-py/.riot/requirements/62dfd2d.txt
diff --git a/.riot/requirements/634c0c7.txt b/dd-trace-py/.riot/requirements/634c0c7.txt
similarity index 100%
rename from .riot/requirements/634c0c7.txt
rename to dd-trace-py/.riot/requirements/634c0c7.txt
diff --git a/.riot/requirements/6382845.txt b/dd-trace-py/.riot/requirements/6382845.txt
similarity index 100%
rename from .riot/requirements/6382845.txt
rename to dd-trace-py/.riot/requirements/6382845.txt
diff --git a/.riot/requirements/638973a.txt b/dd-trace-py/.riot/requirements/638973a.txt
similarity index 100%
rename from .riot/requirements/638973a.txt
rename to dd-trace-py/.riot/requirements/638973a.txt
diff --git a/.riot/requirements/640d59b.txt b/dd-trace-py/.riot/requirements/640d59b.txt
similarity index 100%
rename from .riot/requirements/640d59b.txt
rename to dd-trace-py/.riot/requirements/640d59b.txt
diff --git a/.riot/requirements/642bd78.txt b/dd-trace-py/.riot/requirements/642bd78.txt
similarity index 100%
rename from .riot/requirements/642bd78.txt
rename to dd-trace-py/.riot/requirements/642bd78.txt
diff --git a/.riot/requirements/645a194.txt b/dd-trace-py/.riot/requirements/645a194.txt
similarity index 100%
rename from .riot/requirements/645a194.txt
rename to dd-trace-py/.riot/requirements/645a194.txt
diff --git a/.riot/requirements/64e19b6.txt b/dd-trace-py/.riot/requirements/64e19b6.txt
similarity index 100%
rename from .riot/requirements/64e19b6.txt
rename to dd-trace-py/.riot/requirements/64e19b6.txt
diff --git a/.riot/requirements/6518ecc.txt b/dd-trace-py/.riot/requirements/6518ecc.txt
similarity index 100%
rename from .riot/requirements/6518ecc.txt
rename to dd-trace-py/.riot/requirements/6518ecc.txt
diff --git a/.riot/requirements/654f8c0.txt b/dd-trace-py/.riot/requirements/654f8c0.txt
similarity index 100%
rename from .riot/requirements/654f8c0.txt
rename to dd-trace-py/.riot/requirements/654f8c0.txt
diff --git a/.riot/requirements/65aafe7.txt b/dd-trace-py/.riot/requirements/65aafe7.txt
similarity index 100%
rename from .riot/requirements/65aafe7.txt
rename to dd-trace-py/.riot/requirements/65aafe7.txt
diff --git a/.riot/requirements/65c09d3.txt b/dd-trace-py/.riot/requirements/65c09d3.txt
similarity index 100%
rename from .riot/requirements/65c09d3.txt
rename to dd-trace-py/.riot/requirements/65c09d3.txt
diff --git a/.riot/requirements/662817c.txt b/dd-trace-py/.riot/requirements/662817c.txt
similarity index 100%
rename from .riot/requirements/662817c.txt
rename to dd-trace-py/.riot/requirements/662817c.txt
diff --git a/.riot/requirements/663ca38.txt b/dd-trace-py/.riot/requirements/663ca38.txt
similarity index 100%
rename from .riot/requirements/663ca38.txt
rename to dd-trace-py/.riot/requirements/663ca38.txt
diff --git a/.riot/requirements/6682e06.txt b/dd-trace-py/.riot/requirements/6682e06.txt
similarity index 100%
rename from .riot/requirements/6682e06.txt
rename to dd-trace-py/.riot/requirements/6682e06.txt
diff --git a/.riot/requirements/672002e.txt b/dd-trace-py/.riot/requirements/672002e.txt
similarity index 100%
rename from .riot/requirements/672002e.txt
rename to dd-trace-py/.riot/requirements/672002e.txt
diff --git a/.riot/requirements/6738855.txt b/dd-trace-py/.riot/requirements/6738855.txt
similarity index 100%
rename from .riot/requirements/6738855.txt
rename to dd-trace-py/.riot/requirements/6738855.txt
diff --git a/.riot/requirements/675e082.txt b/dd-trace-py/.riot/requirements/675e082.txt
similarity index 100%
rename from .riot/requirements/675e082.txt
rename to dd-trace-py/.riot/requirements/675e082.txt
diff --git a/.riot/requirements/67c0ba5.txt b/dd-trace-py/.riot/requirements/67c0ba5.txt
similarity index 100%
rename from .riot/requirements/67c0ba5.txt
rename to dd-trace-py/.riot/requirements/67c0ba5.txt
diff --git a/.riot/requirements/6850ed5.txt b/dd-trace-py/.riot/requirements/6850ed5.txt
similarity index 100%
rename from .riot/requirements/6850ed5.txt
rename to dd-trace-py/.riot/requirements/6850ed5.txt
diff --git a/.riot/requirements/6851a3c.txt b/dd-trace-py/.riot/requirements/6851a3c.txt
similarity index 100%
rename from .riot/requirements/6851a3c.txt
rename to dd-trace-py/.riot/requirements/6851a3c.txt
diff --git a/.riot/requirements/6875074.txt b/dd-trace-py/.riot/requirements/6875074.txt
similarity index 100%
rename from .riot/requirements/6875074.txt
rename to dd-trace-py/.riot/requirements/6875074.txt
diff --git a/.riot/requirements/689a3fb.txt b/dd-trace-py/.riot/requirements/689a3fb.txt
similarity index 100%
rename from .riot/requirements/689a3fb.txt
rename to dd-trace-py/.riot/requirements/689a3fb.txt
diff --git a/.riot/requirements/68dc670.txt b/dd-trace-py/.riot/requirements/68dc670.txt
similarity index 100%
rename from .riot/requirements/68dc670.txt
rename to dd-trace-py/.riot/requirements/68dc670.txt
diff --git a/.riot/requirements/6939c9a.txt b/dd-trace-py/.riot/requirements/6939c9a.txt
similarity index 100%
rename from .riot/requirements/6939c9a.txt
rename to dd-trace-py/.riot/requirements/6939c9a.txt
diff --git a/.riot/requirements/694a5dc.txt b/dd-trace-py/.riot/requirements/694a5dc.txt
similarity index 100%
rename from .riot/requirements/694a5dc.txt
rename to dd-trace-py/.riot/requirements/694a5dc.txt
diff --git a/.riot/requirements/6980d7a.txt b/dd-trace-py/.riot/requirements/6980d7a.txt
similarity index 100%
rename from .riot/requirements/6980d7a.txt
rename to dd-trace-py/.riot/requirements/6980d7a.txt
diff --git a/.riot/requirements/69b607b.txt b/dd-trace-py/.riot/requirements/69b607b.txt
similarity index 100%
rename from .riot/requirements/69b607b.txt
rename to dd-trace-py/.riot/requirements/69b607b.txt
diff --git a/.riot/requirements/69e1cb1.txt b/dd-trace-py/.riot/requirements/69e1cb1.txt
similarity index 100%
rename from .riot/requirements/69e1cb1.txt
rename to dd-trace-py/.riot/requirements/69e1cb1.txt
diff --git a/.riot/requirements/6a14d43.txt b/dd-trace-py/.riot/requirements/6a14d43.txt
similarity index 100%
rename from .riot/requirements/6a14d43.txt
rename to dd-trace-py/.riot/requirements/6a14d43.txt
diff --git a/.riot/requirements/6c3e5ec.txt b/dd-trace-py/.riot/requirements/6c3e5ec.txt
similarity index 100%
rename from .riot/requirements/6c3e5ec.txt
rename to dd-trace-py/.riot/requirements/6c3e5ec.txt
diff --git a/.riot/requirements/6c76bd7.txt b/dd-trace-py/.riot/requirements/6c76bd7.txt
similarity index 100%
rename from .riot/requirements/6c76bd7.txt
rename to dd-trace-py/.riot/requirements/6c76bd7.txt
diff --git a/.riot/requirements/6c995e2.txt b/dd-trace-py/.riot/requirements/6c995e2.txt
similarity index 100%
rename from .riot/requirements/6c995e2.txt
rename to dd-trace-py/.riot/requirements/6c995e2.txt
diff --git a/.riot/requirements/6cb445e.txt b/dd-trace-py/.riot/requirements/6cb445e.txt
similarity index 100%
rename from .riot/requirements/6cb445e.txt
rename to dd-trace-py/.riot/requirements/6cb445e.txt
diff --git a/.riot/requirements/6ceadae.txt b/dd-trace-py/.riot/requirements/6ceadae.txt
similarity index 100%
rename from .riot/requirements/6ceadae.txt
rename to dd-trace-py/.riot/requirements/6ceadae.txt
diff --git a/.riot/requirements/6cf373b.txt b/dd-trace-py/.riot/requirements/6cf373b.txt
similarity index 100%
rename from .riot/requirements/6cf373b.txt
rename to dd-trace-py/.riot/requirements/6cf373b.txt
diff --git a/.riot/requirements/6d1e866.txt b/dd-trace-py/.riot/requirements/6d1e866.txt
similarity index 100%
rename from .riot/requirements/6d1e866.txt
rename to dd-trace-py/.riot/requirements/6d1e866.txt
diff --git a/.riot/requirements/6d77667.txt b/dd-trace-py/.riot/requirements/6d77667.txt
similarity index 100%
rename from .riot/requirements/6d77667.txt
rename to dd-trace-py/.riot/requirements/6d77667.txt
diff --git a/.riot/requirements/6d820e6.txt b/dd-trace-py/.riot/requirements/6d820e6.txt
similarity index 100%
rename from .riot/requirements/6d820e6.txt
rename to dd-trace-py/.riot/requirements/6d820e6.txt
diff --git a/.riot/requirements/6da10ca.txt b/dd-trace-py/.riot/requirements/6da10ca.txt
similarity index 100%
rename from .riot/requirements/6da10ca.txt
rename to dd-trace-py/.riot/requirements/6da10ca.txt
diff --git a/.riot/requirements/6dbf615.txt b/dd-trace-py/.riot/requirements/6dbf615.txt
similarity index 100%
rename from .riot/requirements/6dbf615.txt
rename to dd-trace-py/.riot/requirements/6dbf615.txt
diff --git a/.riot/requirements/6dcdfb3.txt b/dd-trace-py/.riot/requirements/6dcdfb3.txt
similarity index 100%
rename from .riot/requirements/6dcdfb3.txt
rename to dd-trace-py/.riot/requirements/6dcdfb3.txt
diff --git a/.riot/requirements/6e0f20e.txt b/dd-trace-py/.riot/requirements/6e0f20e.txt
similarity index 100%
rename from .riot/requirements/6e0f20e.txt
rename to dd-trace-py/.riot/requirements/6e0f20e.txt
diff --git a/.riot/requirements/6e616b1.txt b/dd-trace-py/.riot/requirements/6e616b1.txt
similarity index 100%
rename from .riot/requirements/6e616b1.txt
rename to dd-trace-py/.riot/requirements/6e616b1.txt
diff --git a/.riot/requirements/6e664eb.txt b/dd-trace-py/.riot/requirements/6e664eb.txt
similarity index 100%
rename from .riot/requirements/6e664eb.txt
rename to dd-trace-py/.riot/requirements/6e664eb.txt
diff --git a/.riot/requirements/6e78b72.txt b/dd-trace-py/.riot/requirements/6e78b72.txt
similarity index 100%
rename from .riot/requirements/6e78b72.txt
rename to dd-trace-py/.riot/requirements/6e78b72.txt
diff --git a/.riot/requirements/6e85bcc.txt b/dd-trace-py/.riot/requirements/6e85bcc.txt
similarity index 100%
rename from .riot/requirements/6e85bcc.txt
rename to dd-trace-py/.riot/requirements/6e85bcc.txt
diff --git a/.riot/requirements/6ebd15f.txt b/dd-trace-py/.riot/requirements/6ebd15f.txt
similarity index 100%
rename from .riot/requirements/6ebd15f.txt
rename to dd-trace-py/.riot/requirements/6ebd15f.txt
diff --git a/.riot/requirements/6f12901.txt b/dd-trace-py/.riot/requirements/6f12901.txt
similarity index 100%
rename from .riot/requirements/6f12901.txt
rename to dd-trace-py/.riot/requirements/6f12901.txt
diff --git a/.riot/requirements/6f431c9.txt b/dd-trace-py/.riot/requirements/6f431c9.txt
similarity index 100%
rename from .riot/requirements/6f431c9.txt
rename to dd-trace-py/.riot/requirements/6f431c9.txt
diff --git a/.riot/requirements/6f4af29.txt b/dd-trace-py/.riot/requirements/6f4af29.txt
similarity index 100%
rename from .riot/requirements/6f4af29.txt
rename to dd-trace-py/.riot/requirements/6f4af29.txt
diff --git a/.riot/requirements/6f9ac87.txt b/dd-trace-py/.riot/requirements/6f9ac87.txt
similarity index 100%
rename from .riot/requirements/6f9ac87.txt
rename to dd-trace-py/.riot/requirements/6f9ac87.txt
diff --git a/.riot/requirements/6fb117c.txt b/dd-trace-py/.riot/requirements/6fb117c.txt
similarity index 100%
rename from .riot/requirements/6fb117c.txt
rename to dd-trace-py/.riot/requirements/6fb117c.txt
diff --git a/.riot/requirements/701cd18.txt b/dd-trace-py/.riot/requirements/701cd18.txt
similarity index 100%
rename from .riot/requirements/701cd18.txt
rename to dd-trace-py/.riot/requirements/701cd18.txt
diff --git a/.riot/requirements/705b210.txt b/dd-trace-py/.riot/requirements/705b210.txt
similarity index 100%
rename from .riot/requirements/705b210.txt
rename to dd-trace-py/.riot/requirements/705b210.txt
diff --git a/.riot/requirements/70966a9.txt b/dd-trace-py/.riot/requirements/70966a9.txt
similarity index 100%
rename from .riot/requirements/70966a9.txt
rename to dd-trace-py/.riot/requirements/70966a9.txt
diff --git a/.riot/requirements/7219cf4.txt b/dd-trace-py/.riot/requirements/7219cf4.txt
similarity index 100%
rename from .riot/requirements/7219cf4.txt
rename to dd-trace-py/.riot/requirements/7219cf4.txt
diff --git a/.riot/requirements/722cafc.txt b/dd-trace-py/.riot/requirements/722cafc.txt
similarity index 100%
rename from .riot/requirements/722cafc.txt
rename to dd-trace-py/.riot/requirements/722cafc.txt
diff --git a/.riot/requirements/724adbd.txt b/dd-trace-py/.riot/requirements/724adbd.txt
similarity index 100%
rename from .riot/requirements/724adbd.txt
rename to dd-trace-py/.riot/requirements/724adbd.txt
diff --git a/.riot/requirements/7263bf5.txt b/dd-trace-py/.riot/requirements/7263bf5.txt
similarity index 100%
rename from .riot/requirements/7263bf5.txt
rename to dd-trace-py/.riot/requirements/7263bf5.txt
diff --git a/.riot/requirements/728c914.txt b/dd-trace-py/.riot/requirements/728c914.txt
similarity index 100%
rename from .riot/requirements/728c914.txt
rename to dd-trace-py/.riot/requirements/728c914.txt
diff --git a/.riot/requirements/72aa2be.txt b/dd-trace-py/.riot/requirements/72aa2be.txt
similarity index 100%
rename from .riot/requirements/72aa2be.txt
rename to dd-trace-py/.riot/requirements/72aa2be.txt
diff --git a/.riot/requirements/72c03ec.txt b/dd-trace-py/.riot/requirements/72c03ec.txt
similarity index 100%
rename from .riot/requirements/72c03ec.txt
rename to dd-trace-py/.riot/requirements/72c03ec.txt
diff --git a/.riot/requirements/7365790.txt b/dd-trace-py/.riot/requirements/7365790.txt
similarity index 100%
rename from .riot/requirements/7365790.txt
rename to dd-trace-py/.riot/requirements/7365790.txt
diff --git a/.riot/requirements/74b58c1.txt b/dd-trace-py/.riot/requirements/74b58c1.txt
similarity index 100%
rename from .riot/requirements/74b58c1.txt
rename to dd-trace-py/.riot/requirements/74b58c1.txt
diff --git a/.riot/requirements/74e07bf.txt b/dd-trace-py/.riot/requirements/74e07bf.txt
similarity index 100%
rename from .riot/requirements/74e07bf.txt
rename to dd-trace-py/.riot/requirements/74e07bf.txt
diff --git a/.riot/requirements/750c562.txt b/dd-trace-py/.riot/requirements/750c562.txt
similarity index 100%
rename from .riot/requirements/750c562.txt
rename to dd-trace-py/.riot/requirements/750c562.txt
diff --git a/.riot/requirements/7521ca4.txt b/dd-trace-py/.riot/requirements/7521ca4.txt
similarity index 100%
rename from .riot/requirements/7521ca4.txt
rename to dd-trace-py/.riot/requirements/7521ca4.txt
diff --git a/.riot/requirements/759749c.txt b/dd-trace-py/.riot/requirements/759749c.txt
similarity index 100%
rename from .riot/requirements/759749c.txt
rename to dd-trace-py/.riot/requirements/759749c.txt
diff --git a/.riot/requirements/75d9e47.txt b/dd-trace-py/.riot/requirements/75d9e47.txt
similarity index 100%
rename from .riot/requirements/75d9e47.txt
rename to dd-trace-py/.riot/requirements/75d9e47.txt
diff --git a/.riot/requirements/7628925.txt b/dd-trace-py/.riot/requirements/7628925.txt
similarity index 100%
rename from .riot/requirements/7628925.txt
rename to dd-trace-py/.riot/requirements/7628925.txt
diff --git a/.riot/requirements/765862d.txt b/dd-trace-py/.riot/requirements/765862d.txt
similarity index 100%
rename from .riot/requirements/765862d.txt
rename to dd-trace-py/.riot/requirements/765862d.txt
diff --git a/.riot/requirements/7670259.txt b/dd-trace-py/.riot/requirements/7670259.txt
similarity index 100%
rename from .riot/requirements/7670259.txt
rename to dd-trace-py/.riot/requirements/7670259.txt
diff --git a/.riot/requirements/7691722.txt b/dd-trace-py/.riot/requirements/7691722.txt
similarity index 100%
rename from .riot/requirements/7691722.txt
rename to dd-trace-py/.riot/requirements/7691722.txt
diff --git a/.riot/requirements/769aa27.txt b/dd-trace-py/.riot/requirements/769aa27.txt
similarity index 100%
rename from .riot/requirements/769aa27.txt
rename to dd-trace-py/.riot/requirements/769aa27.txt
diff --git a/.riot/requirements/76c89e7.txt b/dd-trace-py/.riot/requirements/76c89e7.txt
similarity index 100%
rename from .riot/requirements/76c89e7.txt
rename to dd-trace-py/.riot/requirements/76c89e7.txt
diff --git a/.riot/requirements/76dd566.txt b/dd-trace-py/.riot/requirements/76dd566.txt
similarity index 100%
rename from .riot/requirements/76dd566.txt
rename to dd-trace-py/.riot/requirements/76dd566.txt
diff --git a/.riot/requirements/770db03.txt b/dd-trace-py/.riot/requirements/770db03.txt
similarity index 100%
rename from .riot/requirements/770db03.txt
rename to dd-trace-py/.riot/requirements/770db03.txt
diff --git a/.riot/requirements/77994b3.txt b/dd-trace-py/.riot/requirements/77994b3.txt
similarity index 100%
rename from .riot/requirements/77994b3.txt
rename to dd-trace-py/.riot/requirements/77994b3.txt
diff --git a/.riot/requirements/77b1594.txt b/dd-trace-py/.riot/requirements/77b1594.txt
similarity index 100%
rename from .riot/requirements/77b1594.txt
rename to dd-trace-py/.riot/requirements/77b1594.txt
diff --git a/.riot/requirements/785dd21.txt b/dd-trace-py/.riot/requirements/785dd21.txt
similarity index 100%
rename from .riot/requirements/785dd21.txt
rename to dd-trace-py/.riot/requirements/785dd21.txt
diff --git a/.riot/requirements/785f3f9.txt b/dd-trace-py/.riot/requirements/785f3f9.txt
similarity index 100%
rename from .riot/requirements/785f3f9.txt
rename to dd-trace-py/.riot/requirements/785f3f9.txt
diff --git a/.riot/requirements/786bd16.txt b/dd-trace-py/.riot/requirements/786bd16.txt
similarity index 100%
rename from .riot/requirements/786bd16.txt
rename to dd-trace-py/.riot/requirements/786bd16.txt
diff --git a/.riot/requirements/7875e98.txt b/dd-trace-py/.riot/requirements/7875e98.txt
similarity index 100%
rename from .riot/requirements/7875e98.txt
rename to dd-trace-py/.riot/requirements/7875e98.txt
diff --git a/.riot/requirements/792479a.txt b/dd-trace-py/.riot/requirements/792479a.txt
similarity index 100%
rename from .riot/requirements/792479a.txt
rename to dd-trace-py/.riot/requirements/792479a.txt
diff --git a/.riot/requirements/792f843.txt b/dd-trace-py/.riot/requirements/792f843.txt
similarity index 100%
rename from .riot/requirements/792f843.txt
rename to dd-trace-py/.riot/requirements/792f843.txt
diff --git a/.riot/requirements/793e383.txt b/dd-trace-py/.riot/requirements/793e383.txt
similarity index 100%
rename from .riot/requirements/793e383.txt
rename to dd-trace-py/.riot/requirements/793e383.txt
diff --git a/.riot/requirements/79de8bb.txt b/dd-trace-py/.riot/requirements/79de8bb.txt
similarity index 100%
rename from .riot/requirements/79de8bb.txt
rename to dd-trace-py/.riot/requirements/79de8bb.txt
diff --git a/.riot/requirements/79ef099.txt b/dd-trace-py/.riot/requirements/79ef099.txt
similarity index 100%
rename from .riot/requirements/79ef099.txt
rename to dd-trace-py/.riot/requirements/79ef099.txt
diff --git a/.riot/requirements/79f2ab7.txt b/dd-trace-py/.riot/requirements/79f2ab7.txt
similarity index 100%
rename from .riot/requirements/79f2ab7.txt
rename to dd-trace-py/.riot/requirements/79f2ab7.txt
diff --git a/.riot/requirements/7a40e08.txt b/dd-trace-py/.riot/requirements/7a40e08.txt
similarity index 100%
rename from .riot/requirements/7a40e08.txt
rename to dd-trace-py/.riot/requirements/7a40e08.txt
diff --git a/.riot/requirements/7a6a528.txt b/dd-trace-py/.riot/requirements/7a6a528.txt
similarity index 100%
rename from .riot/requirements/7a6a528.txt
rename to dd-trace-py/.riot/requirements/7a6a528.txt
diff --git a/.riot/requirements/7b6bce5.txt b/dd-trace-py/.riot/requirements/7b6bce5.txt
similarity index 100%
rename from .riot/requirements/7b6bce5.txt
rename to dd-trace-py/.riot/requirements/7b6bce5.txt
diff --git a/.riot/requirements/7c2d6af.txt b/dd-trace-py/.riot/requirements/7c2d6af.txt
similarity index 100%
rename from .riot/requirements/7c2d6af.txt
rename to dd-trace-py/.riot/requirements/7c2d6af.txt
diff --git a/.riot/requirements/7c88ce5.txt b/dd-trace-py/.riot/requirements/7c88ce5.txt
similarity index 100%
rename from .riot/requirements/7c88ce5.txt
rename to dd-trace-py/.riot/requirements/7c88ce5.txt
diff --git a/.riot/requirements/7c90047.txt b/dd-trace-py/.riot/requirements/7c90047.txt
similarity index 100%
rename from .riot/requirements/7c90047.txt
rename to dd-trace-py/.riot/requirements/7c90047.txt
diff --git a/.riot/requirements/7d5620c.txt b/dd-trace-py/.riot/requirements/7d5620c.txt
similarity index 100%
rename from .riot/requirements/7d5620c.txt
rename to dd-trace-py/.riot/requirements/7d5620c.txt
diff --git a/.riot/requirements/7d76ff9.txt b/dd-trace-py/.riot/requirements/7d76ff9.txt
similarity index 100%
rename from .riot/requirements/7d76ff9.txt
rename to dd-trace-py/.riot/requirements/7d76ff9.txt
diff --git a/.riot/requirements/7d96f3b.txt b/dd-trace-py/.riot/requirements/7d96f3b.txt
similarity index 100%
rename from .riot/requirements/7d96f3b.txt
rename to dd-trace-py/.riot/requirements/7d96f3b.txt
diff --git a/.riot/requirements/7da78f0.txt b/dd-trace-py/.riot/requirements/7da78f0.txt
similarity index 100%
rename from .riot/requirements/7da78f0.txt
rename to dd-trace-py/.riot/requirements/7da78f0.txt
diff --git a/.riot/requirements/7dec5d4.txt b/dd-trace-py/.riot/requirements/7dec5d4.txt
similarity index 100%
rename from .riot/requirements/7dec5d4.txt
rename to dd-trace-py/.riot/requirements/7dec5d4.txt
diff --git a/.riot/requirements/7e1a2a6.txt b/dd-trace-py/.riot/requirements/7e1a2a6.txt
similarity index 100%
rename from .riot/requirements/7e1a2a6.txt
rename to dd-trace-py/.riot/requirements/7e1a2a6.txt
diff --git a/.riot/requirements/7e2d120.txt b/dd-trace-py/.riot/requirements/7e2d120.txt
similarity index 100%
rename from .riot/requirements/7e2d120.txt
rename to dd-trace-py/.riot/requirements/7e2d120.txt
diff --git a/.riot/requirements/7e32ec0.txt b/dd-trace-py/.riot/requirements/7e32ec0.txt
similarity index 100%
rename from .riot/requirements/7e32ec0.txt
rename to dd-trace-py/.riot/requirements/7e32ec0.txt
diff --git a/.riot/requirements/7e7fe30.txt b/dd-trace-py/.riot/requirements/7e7fe30.txt
similarity index 100%
rename from .riot/requirements/7e7fe30.txt
rename to dd-trace-py/.riot/requirements/7e7fe30.txt
diff --git a/.riot/requirements/7e85837.txt b/dd-trace-py/.riot/requirements/7e85837.txt
similarity index 100%
rename from .riot/requirements/7e85837.txt
rename to dd-trace-py/.riot/requirements/7e85837.txt
diff --git a/.riot/requirements/7ed64b0.txt b/dd-trace-py/.riot/requirements/7ed64b0.txt
similarity index 100%
rename from .riot/requirements/7ed64b0.txt
rename to dd-trace-py/.riot/requirements/7ed64b0.txt
diff --git a/.riot/requirements/7eec131.txt b/dd-trace-py/.riot/requirements/7eec131.txt
similarity index 100%
rename from .riot/requirements/7eec131.txt
rename to dd-trace-py/.riot/requirements/7eec131.txt
diff --git a/.riot/requirements/7f3af66.txt b/dd-trace-py/.riot/requirements/7f3af66.txt
similarity index 100%
rename from .riot/requirements/7f3af66.txt
rename to dd-trace-py/.riot/requirements/7f3af66.txt
diff --git a/.riot/requirements/7f56123.txt b/dd-trace-py/.riot/requirements/7f56123.txt
similarity index 100%
rename from .riot/requirements/7f56123.txt
rename to dd-trace-py/.riot/requirements/7f56123.txt
diff --git a/.riot/requirements/7f62003.txt b/dd-trace-py/.riot/requirements/7f62003.txt
similarity index 100%
rename from .riot/requirements/7f62003.txt
rename to dd-trace-py/.riot/requirements/7f62003.txt
diff --git a/.riot/requirements/7f84968.txt b/dd-trace-py/.riot/requirements/7f84968.txt
similarity index 100%
rename from .riot/requirements/7f84968.txt
rename to dd-trace-py/.riot/requirements/7f84968.txt
diff --git a/.riot/requirements/7fa00cf.txt b/dd-trace-py/.riot/requirements/7fa00cf.txt
similarity index 100%
rename from .riot/requirements/7fa00cf.txt
rename to dd-trace-py/.riot/requirements/7fa00cf.txt
diff --git a/.riot/requirements/7fa153d.txt b/dd-trace-py/.riot/requirements/7fa153d.txt
similarity index 100%
rename from .riot/requirements/7fa153d.txt
rename to dd-trace-py/.riot/requirements/7fa153d.txt
diff --git a/.riot/requirements/803a341.txt b/dd-trace-py/.riot/requirements/803a341.txt
similarity index 100%
rename from .riot/requirements/803a341.txt
rename to dd-trace-py/.riot/requirements/803a341.txt
diff --git a/.riot/requirements/8049cd3.txt b/dd-trace-py/.riot/requirements/8049cd3.txt
similarity index 100%
rename from .riot/requirements/8049cd3.txt
rename to dd-trace-py/.riot/requirements/8049cd3.txt
diff --git a/.riot/requirements/808a746.txt b/dd-trace-py/.riot/requirements/808a746.txt
similarity index 100%
rename from .riot/requirements/808a746.txt
rename to dd-trace-py/.riot/requirements/808a746.txt
diff --git a/.riot/requirements/80bbf81.txt b/dd-trace-py/.riot/requirements/80bbf81.txt
similarity index 100%
rename from .riot/requirements/80bbf81.txt
rename to dd-trace-py/.riot/requirements/80bbf81.txt
diff --git a/.riot/requirements/816352e.txt b/dd-trace-py/.riot/requirements/816352e.txt
similarity index 100%
rename from .riot/requirements/816352e.txt
rename to dd-trace-py/.riot/requirements/816352e.txt
diff --git a/.riot/requirements/817352e.txt b/dd-trace-py/.riot/requirements/817352e.txt
similarity index 100%
rename from .riot/requirements/817352e.txt
rename to dd-trace-py/.riot/requirements/817352e.txt
diff --git a/.riot/requirements/81e3c73.txt b/dd-trace-py/.riot/requirements/81e3c73.txt
similarity index 100%
rename from .riot/requirements/81e3c73.txt
rename to dd-trace-py/.riot/requirements/81e3c73.txt
diff --git a/.riot/requirements/8218ff8.txt b/dd-trace-py/.riot/requirements/8218ff8.txt
similarity index 100%
rename from .riot/requirements/8218ff8.txt
rename to dd-trace-py/.riot/requirements/8218ff8.txt
diff --git a/.riot/requirements/8227490.txt b/dd-trace-py/.riot/requirements/8227490.txt
similarity index 100%
rename from .riot/requirements/8227490.txt
rename to dd-trace-py/.riot/requirements/8227490.txt
diff --git a/.riot/requirements/828b288.txt b/dd-trace-py/.riot/requirements/828b288.txt
similarity index 100%
rename from .riot/requirements/828b288.txt
rename to dd-trace-py/.riot/requirements/828b288.txt
diff --git a/.riot/requirements/82b119b.txt b/dd-trace-py/.riot/requirements/82b119b.txt
similarity index 100%
rename from .riot/requirements/82b119b.txt
rename to dd-trace-py/.riot/requirements/82b119b.txt
diff --git a/.riot/requirements/836a469.txt b/dd-trace-py/.riot/requirements/836a469.txt
similarity index 100%
rename from .riot/requirements/836a469.txt
rename to dd-trace-py/.riot/requirements/836a469.txt
diff --git a/.riot/requirements/8400353.txt b/dd-trace-py/.riot/requirements/8400353.txt
similarity index 100%
rename from .riot/requirements/8400353.txt
rename to dd-trace-py/.riot/requirements/8400353.txt
diff --git a/.riot/requirements/846e6df.txt b/dd-trace-py/.riot/requirements/846e6df.txt
similarity index 100%
rename from .riot/requirements/846e6df.txt
rename to dd-trace-py/.riot/requirements/846e6df.txt
diff --git a/.riot/requirements/848bcfc.txt b/dd-trace-py/.riot/requirements/848bcfc.txt
similarity index 100%
rename from .riot/requirements/848bcfc.txt
rename to dd-trace-py/.riot/requirements/848bcfc.txt
diff --git a/.riot/requirements/8510e2e.txt b/dd-trace-py/.riot/requirements/8510e2e.txt
similarity index 100%
rename from .riot/requirements/8510e2e.txt
rename to dd-trace-py/.riot/requirements/8510e2e.txt
diff --git a/.riot/requirements/853b5f0.txt b/dd-trace-py/.riot/requirements/853b5f0.txt
similarity index 100%
rename from .riot/requirements/853b5f0.txt
rename to dd-trace-py/.riot/requirements/853b5f0.txt
diff --git a/.riot/requirements/8567c69.txt b/dd-trace-py/.riot/requirements/8567c69.txt
similarity index 100%
rename from .riot/requirements/8567c69.txt
rename to dd-trace-py/.riot/requirements/8567c69.txt
diff --git a/.riot/requirements/85acf6e.txt b/dd-trace-py/.riot/requirements/85acf6e.txt
similarity index 100%
rename from .riot/requirements/85acf6e.txt
rename to dd-trace-py/.riot/requirements/85acf6e.txt
diff --git a/.riot/requirements/85deb9a.txt b/dd-trace-py/.riot/requirements/85deb9a.txt
similarity index 100%
rename from .riot/requirements/85deb9a.txt
rename to dd-trace-py/.riot/requirements/85deb9a.txt
diff --git a/.riot/requirements/862273e.txt b/dd-trace-py/.riot/requirements/862273e.txt
similarity index 100%
rename from .riot/requirements/862273e.txt
rename to dd-trace-py/.riot/requirements/862273e.txt
diff --git a/.riot/requirements/8638dc9.txt b/dd-trace-py/.riot/requirements/8638dc9.txt
similarity index 100%
rename from .riot/requirements/8638dc9.txt
rename to dd-trace-py/.riot/requirements/8638dc9.txt
diff --git a/.riot/requirements/8704384.txt b/dd-trace-py/.riot/requirements/8704384.txt
similarity index 100%
rename from .riot/requirements/8704384.txt
rename to dd-trace-py/.riot/requirements/8704384.txt
diff --git a/.riot/requirements/872f397.txt b/dd-trace-py/.riot/requirements/872f397.txt
similarity index 100%
rename from .riot/requirements/872f397.txt
rename to dd-trace-py/.riot/requirements/872f397.txt
diff --git a/.riot/requirements/878e6c6.txt b/dd-trace-py/.riot/requirements/878e6c6.txt
similarity index 100%
rename from .riot/requirements/878e6c6.txt
rename to dd-trace-py/.riot/requirements/878e6c6.txt
diff --git a/.riot/requirements/87b8661.txt b/dd-trace-py/.riot/requirements/87b8661.txt
similarity index 100%
rename from .riot/requirements/87b8661.txt
rename to dd-trace-py/.riot/requirements/87b8661.txt
diff --git a/.riot/requirements/881e49e.txt b/dd-trace-py/.riot/requirements/881e49e.txt
similarity index 100%
rename from .riot/requirements/881e49e.txt
rename to dd-trace-py/.riot/requirements/881e49e.txt
diff --git a/.riot/requirements/8830759.txt b/dd-trace-py/.riot/requirements/8830759.txt
similarity index 100%
rename from .riot/requirements/8830759.txt
rename to dd-trace-py/.riot/requirements/8830759.txt
diff --git a/.riot/requirements/88841c7.txt b/dd-trace-py/.riot/requirements/88841c7.txt
similarity index 100%
rename from .riot/requirements/88841c7.txt
rename to dd-trace-py/.riot/requirements/88841c7.txt
diff --git a/.riot/requirements/89f632a.txt b/dd-trace-py/.riot/requirements/89f632a.txt
similarity index 100%
rename from .riot/requirements/89f632a.txt
rename to dd-trace-py/.riot/requirements/89f632a.txt
diff --git a/.riot/requirements/8a57317.txt b/dd-trace-py/.riot/requirements/8a57317.txt
similarity index 100%
rename from .riot/requirements/8a57317.txt
rename to dd-trace-py/.riot/requirements/8a57317.txt
diff --git a/.riot/requirements/8b1a0d1.txt b/dd-trace-py/.riot/requirements/8b1a0d1.txt
similarity index 100%
rename from .riot/requirements/8b1a0d1.txt
rename to dd-trace-py/.riot/requirements/8b1a0d1.txt
diff --git a/.riot/requirements/8b7e1b6.txt b/dd-trace-py/.riot/requirements/8b7e1b6.txt
similarity index 100%
rename from .riot/requirements/8b7e1b6.txt
rename to dd-trace-py/.riot/requirements/8b7e1b6.txt
diff --git a/.riot/requirements/8bc6635.txt b/dd-trace-py/.riot/requirements/8bc6635.txt
similarity index 100%
rename from .riot/requirements/8bc6635.txt
rename to dd-trace-py/.riot/requirements/8bc6635.txt
diff --git a/.riot/requirements/8c0d574.txt b/dd-trace-py/.riot/requirements/8c0d574.txt
similarity index 100%
rename from .riot/requirements/8c0d574.txt
rename to dd-trace-py/.riot/requirements/8c0d574.txt
diff --git a/.riot/requirements/8c5e899.txt b/dd-trace-py/.riot/requirements/8c5e899.txt
similarity index 100%
rename from .riot/requirements/8c5e899.txt
rename to dd-trace-py/.riot/requirements/8c5e899.txt
diff --git a/.riot/requirements/8cd7168.txt b/dd-trace-py/.riot/requirements/8cd7168.txt
similarity index 100%
rename from .riot/requirements/8cd7168.txt
rename to dd-trace-py/.riot/requirements/8cd7168.txt
diff --git a/.riot/requirements/8d10412.txt b/dd-trace-py/.riot/requirements/8d10412.txt
similarity index 100%
rename from .riot/requirements/8d10412.txt
rename to dd-trace-py/.riot/requirements/8d10412.txt
diff --git a/.riot/requirements/8d15996.txt b/dd-trace-py/.riot/requirements/8d15996.txt
similarity index 100%
rename from .riot/requirements/8d15996.txt
rename to dd-trace-py/.riot/requirements/8d15996.txt
diff --git a/.riot/requirements/8d92aac.txt b/dd-trace-py/.riot/requirements/8d92aac.txt
similarity index 100%
rename from .riot/requirements/8d92aac.txt
rename to dd-trace-py/.riot/requirements/8d92aac.txt
diff --git a/.riot/requirements/8e33c6d.txt b/dd-trace-py/.riot/requirements/8e33c6d.txt
similarity index 100%
rename from .riot/requirements/8e33c6d.txt
rename to dd-trace-py/.riot/requirements/8e33c6d.txt
diff --git a/.riot/requirements/8e47e0a.txt b/dd-trace-py/.riot/requirements/8e47e0a.txt
similarity index 100%
rename from .riot/requirements/8e47e0a.txt
rename to dd-trace-py/.riot/requirements/8e47e0a.txt
diff --git a/.riot/requirements/8ef4a62.txt b/dd-trace-py/.riot/requirements/8ef4a62.txt
similarity index 100%
rename from .riot/requirements/8ef4a62.txt
rename to dd-trace-py/.riot/requirements/8ef4a62.txt
diff --git a/.riot/requirements/8f2dccf.txt b/dd-trace-py/.riot/requirements/8f2dccf.txt
similarity index 100%
rename from .riot/requirements/8f2dccf.txt
rename to dd-trace-py/.riot/requirements/8f2dccf.txt
diff --git a/.riot/requirements/8f46789.txt b/dd-trace-py/.riot/requirements/8f46789.txt
similarity index 100%
rename from .riot/requirements/8f46789.txt
rename to dd-trace-py/.riot/requirements/8f46789.txt
diff --git a/.riot/requirements/8f61b5d.txt b/dd-trace-py/.riot/requirements/8f61b5d.txt
similarity index 100%
rename from .riot/requirements/8f61b5d.txt
rename to dd-trace-py/.riot/requirements/8f61b5d.txt
diff --git a/.riot/requirements/8f9b04b.txt b/dd-trace-py/.riot/requirements/8f9b04b.txt
similarity index 100%
rename from .riot/requirements/8f9b04b.txt
rename to dd-trace-py/.riot/requirements/8f9b04b.txt
diff --git a/.riot/requirements/902be05.txt b/dd-trace-py/.riot/requirements/902be05.txt
similarity index 100%
rename from .riot/requirements/902be05.txt
rename to dd-trace-py/.riot/requirements/902be05.txt
diff --git a/.riot/requirements/9059a98.txt b/dd-trace-py/.riot/requirements/9059a98.txt
similarity index 100%
rename from .riot/requirements/9059a98.txt
rename to dd-trace-py/.riot/requirements/9059a98.txt
diff --git a/.riot/requirements/9077e5e.txt b/dd-trace-py/.riot/requirements/9077e5e.txt
similarity index 100%
rename from .riot/requirements/9077e5e.txt
rename to dd-trace-py/.riot/requirements/9077e5e.txt
diff --git a/.riot/requirements/908f9c9.txt b/dd-trace-py/.riot/requirements/908f9c9.txt
similarity index 100%
rename from .riot/requirements/908f9c9.txt
rename to dd-trace-py/.riot/requirements/908f9c9.txt
diff --git a/.riot/requirements/91629cd.txt b/dd-trace-py/.riot/requirements/91629cd.txt
similarity index 100%
rename from .riot/requirements/91629cd.txt
rename to dd-trace-py/.riot/requirements/91629cd.txt
diff --git a/.riot/requirements/91d42a8.txt b/dd-trace-py/.riot/requirements/91d42a8.txt
similarity index 100%
rename from .riot/requirements/91d42a8.txt
rename to dd-trace-py/.riot/requirements/91d42a8.txt
diff --git a/.riot/requirements/91fe586.txt b/dd-trace-py/.riot/requirements/91fe586.txt
similarity index 100%
rename from .riot/requirements/91fe586.txt
rename to dd-trace-py/.riot/requirements/91fe586.txt
diff --git a/.riot/requirements/9204343.txt b/dd-trace-py/.riot/requirements/9204343.txt
similarity index 100%
rename from .riot/requirements/9204343.txt
rename to dd-trace-py/.riot/requirements/9204343.txt
diff --git a/.riot/requirements/92132f5.txt b/dd-trace-py/.riot/requirements/92132f5.txt
similarity index 100%
rename from .riot/requirements/92132f5.txt
rename to dd-trace-py/.riot/requirements/92132f5.txt
diff --git a/.riot/requirements/9232661.txt b/dd-trace-py/.riot/requirements/9232661.txt
similarity index 100%
rename from .riot/requirements/9232661.txt
rename to dd-trace-py/.riot/requirements/9232661.txt
diff --git a/.riot/requirements/923ba84.txt b/dd-trace-py/.riot/requirements/923ba84.txt
similarity index 100%
rename from .riot/requirements/923ba84.txt
rename to dd-trace-py/.riot/requirements/923ba84.txt
diff --git a/.riot/requirements/92459a5.txt b/dd-trace-py/.riot/requirements/92459a5.txt
similarity index 100%
rename from .riot/requirements/92459a5.txt
rename to dd-trace-py/.riot/requirements/92459a5.txt
diff --git a/.riot/requirements/92fcc12.txt b/dd-trace-py/.riot/requirements/92fcc12.txt
similarity index 100%
rename from .riot/requirements/92fcc12.txt
rename to dd-trace-py/.riot/requirements/92fcc12.txt
diff --git a/.riot/requirements/933558b.txt b/dd-trace-py/.riot/requirements/933558b.txt
similarity index 100%
rename from .riot/requirements/933558b.txt
rename to dd-trace-py/.riot/requirements/933558b.txt
diff --git a/.riot/requirements/93524be.txt b/dd-trace-py/.riot/requirements/93524be.txt
similarity index 100%
rename from .riot/requirements/93524be.txt
rename to dd-trace-py/.riot/requirements/93524be.txt
diff --git a/.riot/requirements/936e77e.txt b/dd-trace-py/.riot/requirements/936e77e.txt
similarity index 100%
rename from .riot/requirements/936e77e.txt
rename to dd-trace-py/.riot/requirements/936e77e.txt
diff --git a/.riot/requirements/93b1e3b.txt b/dd-trace-py/.riot/requirements/93b1e3b.txt
similarity index 100%
rename from .riot/requirements/93b1e3b.txt
rename to dd-trace-py/.riot/requirements/93b1e3b.txt
diff --git a/.riot/requirements/93d5541.txt b/dd-trace-py/.riot/requirements/93d5541.txt
similarity index 100%
rename from .riot/requirements/93d5541.txt
rename to dd-trace-py/.riot/requirements/93d5541.txt
diff --git a/.riot/requirements/94509b6.txt b/dd-trace-py/.riot/requirements/94509b6.txt
similarity index 100%
rename from .riot/requirements/94509b6.txt
rename to dd-trace-py/.riot/requirements/94509b6.txt
diff --git a/.riot/requirements/94de9f8.txt b/dd-trace-py/.riot/requirements/94de9f8.txt
similarity index 100%
rename from .riot/requirements/94de9f8.txt
rename to dd-trace-py/.riot/requirements/94de9f8.txt
diff --git a/.riot/requirements/9539a94.txt b/dd-trace-py/.riot/requirements/9539a94.txt
similarity index 100%
rename from .riot/requirements/9539a94.txt
rename to dd-trace-py/.riot/requirements/9539a94.txt
diff --git a/.riot/requirements/9581f36.txt b/dd-trace-py/.riot/requirements/9581f36.txt
similarity index 100%
rename from .riot/requirements/9581f36.txt
rename to dd-trace-py/.riot/requirements/9581f36.txt
diff --git a/.riot/requirements/95aa957.txt b/dd-trace-py/.riot/requirements/95aa957.txt
similarity index 100%
rename from .riot/requirements/95aa957.txt
rename to dd-trace-py/.riot/requirements/95aa957.txt
diff --git a/.riot/requirements/95d28c3.txt b/dd-trace-py/.riot/requirements/95d28c3.txt
similarity index 100%
rename from .riot/requirements/95d28c3.txt
rename to dd-trace-py/.riot/requirements/95d28c3.txt
diff --git a/.riot/requirements/95ed7fd.txt b/dd-trace-py/.riot/requirements/95ed7fd.txt
similarity index 100%
rename from .riot/requirements/95ed7fd.txt
rename to dd-trace-py/.riot/requirements/95ed7fd.txt
diff --git a/.riot/requirements/95f8b96.txt b/dd-trace-py/.riot/requirements/95f8b96.txt
similarity index 100%
rename from .riot/requirements/95f8b96.txt
rename to dd-trace-py/.riot/requirements/95f8b96.txt
diff --git a/.riot/requirements/962f340.txt b/dd-trace-py/.riot/requirements/962f340.txt
similarity index 100%
rename from .riot/requirements/962f340.txt
rename to dd-trace-py/.riot/requirements/962f340.txt
diff --git a/.riot/requirements/965b029.txt b/dd-trace-py/.riot/requirements/965b029.txt
similarity index 100%
rename from .riot/requirements/965b029.txt
rename to dd-trace-py/.riot/requirements/965b029.txt
diff --git a/.riot/requirements/9710280.txt b/dd-trace-py/.riot/requirements/9710280.txt
similarity index 100%
rename from .riot/requirements/9710280.txt
rename to dd-trace-py/.riot/requirements/9710280.txt
diff --git a/.riot/requirements/97d2271.txt b/dd-trace-py/.riot/requirements/97d2271.txt
similarity index 100%
rename from .riot/requirements/97d2271.txt
rename to dd-trace-py/.riot/requirements/97d2271.txt
diff --git a/.riot/requirements/9818a7b.txt b/dd-trace-py/.riot/requirements/9818a7b.txt
similarity index 100%
rename from .riot/requirements/9818a7b.txt
rename to dd-trace-py/.riot/requirements/9818a7b.txt
diff --git a/.riot/requirements/98b02a4.txt b/dd-trace-py/.riot/requirements/98b02a4.txt
similarity index 100%
rename from .riot/requirements/98b02a4.txt
rename to dd-trace-py/.riot/requirements/98b02a4.txt
diff --git a/.riot/requirements/98b12b1.txt b/dd-trace-py/.riot/requirements/98b12b1.txt
similarity index 100%
rename from .riot/requirements/98b12b1.txt
rename to dd-trace-py/.riot/requirements/98b12b1.txt
diff --git a/.riot/requirements/98ec6ba.txt b/dd-trace-py/.riot/requirements/98ec6ba.txt
similarity index 100%
rename from .riot/requirements/98ec6ba.txt
rename to dd-trace-py/.riot/requirements/98ec6ba.txt
diff --git a/.riot/requirements/994f426.txt b/dd-trace-py/.riot/requirements/994f426.txt
similarity index 100%
rename from .riot/requirements/994f426.txt
rename to dd-trace-py/.riot/requirements/994f426.txt
diff --git a/.riot/requirements/9a07d4a.txt b/dd-trace-py/.riot/requirements/9a07d4a.txt
similarity index 100%
rename from .riot/requirements/9a07d4a.txt
rename to dd-trace-py/.riot/requirements/9a07d4a.txt
diff --git a/.riot/requirements/9a13b9a.txt b/dd-trace-py/.riot/requirements/9a13b9a.txt
similarity index 100%
rename from .riot/requirements/9a13b9a.txt
rename to dd-trace-py/.riot/requirements/9a13b9a.txt
diff --git a/.riot/requirements/9a2fcc3.txt b/dd-trace-py/.riot/requirements/9a2fcc3.txt
similarity index 100%
rename from .riot/requirements/9a2fcc3.txt
rename to dd-trace-py/.riot/requirements/9a2fcc3.txt
diff --git a/.riot/requirements/9a5c0d9.txt b/dd-trace-py/.riot/requirements/9a5c0d9.txt
similarity index 100%
rename from .riot/requirements/9a5c0d9.txt
rename to dd-trace-py/.riot/requirements/9a5c0d9.txt
diff --git a/.riot/requirements/9a81f68.txt b/dd-trace-py/.riot/requirements/9a81f68.txt
similarity index 100%
rename from .riot/requirements/9a81f68.txt
rename to dd-trace-py/.riot/requirements/9a81f68.txt
diff --git a/.riot/requirements/9a8d5f9.txt b/dd-trace-py/.riot/requirements/9a8d5f9.txt
similarity index 100%
rename from .riot/requirements/9a8d5f9.txt
rename to dd-trace-py/.riot/requirements/9a8d5f9.txt
diff --git a/.riot/requirements/9adbf36.txt b/dd-trace-py/.riot/requirements/9adbf36.txt
similarity index 100%
rename from .riot/requirements/9adbf36.txt
rename to dd-trace-py/.riot/requirements/9adbf36.txt
diff --git a/.riot/requirements/9ae58d0.txt b/dd-trace-py/.riot/requirements/9ae58d0.txt
similarity index 100%
rename from .riot/requirements/9ae58d0.txt
rename to dd-trace-py/.riot/requirements/9ae58d0.txt
diff --git a/.riot/requirements/9aea1c4.txt b/dd-trace-py/.riot/requirements/9aea1c4.txt
similarity index 100%
rename from .riot/requirements/9aea1c4.txt
rename to dd-trace-py/.riot/requirements/9aea1c4.txt
diff --git a/.riot/requirements/9b48cd8.txt b/dd-trace-py/.riot/requirements/9b48cd8.txt
similarity index 100%
rename from .riot/requirements/9b48cd8.txt
rename to dd-trace-py/.riot/requirements/9b48cd8.txt
diff --git a/.riot/requirements/9cea290.txt b/dd-trace-py/.riot/requirements/9cea290.txt
similarity index 100%
rename from .riot/requirements/9cea290.txt
rename to dd-trace-py/.riot/requirements/9cea290.txt
diff --git a/.riot/requirements/9d631d9.txt b/dd-trace-py/.riot/requirements/9d631d9.txt
similarity index 100%
rename from .riot/requirements/9d631d9.txt
rename to dd-trace-py/.riot/requirements/9d631d9.txt
diff --git a/.riot/requirements/9d9517f.txt b/dd-trace-py/.riot/requirements/9d9517f.txt
similarity index 100%
rename from .riot/requirements/9d9517f.txt
rename to dd-trace-py/.riot/requirements/9d9517f.txt
diff --git a/.riot/requirements/9da4f77.txt b/dd-trace-py/.riot/requirements/9da4f77.txt
similarity index 100%
rename from .riot/requirements/9da4f77.txt
rename to dd-trace-py/.riot/requirements/9da4f77.txt
diff --git a/.riot/requirements/9e9a4a0.txt b/dd-trace-py/.riot/requirements/9e9a4a0.txt
similarity index 100%
rename from .riot/requirements/9e9a4a0.txt
rename to dd-trace-py/.riot/requirements/9e9a4a0.txt
diff --git a/.riot/requirements/9f052d0.txt b/dd-trace-py/.riot/requirements/9f052d0.txt
similarity index 100%
rename from .riot/requirements/9f052d0.txt
rename to dd-trace-py/.riot/requirements/9f052d0.txt
diff --git a/.riot/requirements/9f4d6f1.txt b/dd-trace-py/.riot/requirements/9f4d6f1.txt
similarity index 100%
rename from .riot/requirements/9f4d6f1.txt
rename to dd-trace-py/.riot/requirements/9f4d6f1.txt
diff --git a/.riot/requirements/9f95734.txt b/dd-trace-py/.riot/requirements/9f95734.txt
similarity index 100%
rename from .riot/requirements/9f95734.txt
rename to dd-trace-py/.riot/requirements/9f95734.txt
diff --git a/.riot/requirements/9fa7157.txt b/dd-trace-py/.riot/requirements/9fa7157.txt
similarity index 100%
rename from .riot/requirements/9fa7157.txt
rename to dd-trace-py/.riot/requirements/9fa7157.txt
diff --git a/.riot/requirements/9fbe7fd.txt b/dd-trace-py/.riot/requirements/9fbe7fd.txt
similarity index 100%
rename from .riot/requirements/9fbe7fd.txt
rename to dd-trace-py/.riot/requirements/9fbe7fd.txt
diff --git a/.riot/requirements/a0119a1.txt b/dd-trace-py/.riot/requirements/a0119a1.txt
similarity index 100%
rename from .riot/requirements/a0119a1.txt
rename to dd-trace-py/.riot/requirements/a0119a1.txt
diff --git a/.riot/requirements/a012a26.txt b/dd-trace-py/.riot/requirements/a012a26.txt
similarity index 100%
rename from .riot/requirements/a012a26.txt
rename to dd-trace-py/.riot/requirements/a012a26.txt
diff --git a/.riot/requirements/a031170.txt b/dd-trace-py/.riot/requirements/a031170.txt
similarity index 100%
rename from .riot/requirements/a031170.txt
rename to dd-trace-py/.riot/requirements/a031170.txt
diff --git a/.riot/requirements/a039894.txt b/dd-trace-py/.riot/requirements/a039894.txt
similarity index 100%
rename from .riot/requirements/a039894.txt
rename to dd-trace-py/.riot/requirements/a039894.txt
diff --git a/.riot/requirements/a0454b7.txt b/dd-trace-py/.riot/requirements/a0454b7.txt
similarity index 100%
rename from .riot/requirements/a0454b7.txt
rename to dd-trace-py/.riot/requirements/a0454b7.txt
diff --git a/.riot/requirements/a06729a.txt b/dd-trace-py/.riot/requirements/a06729a.txt
similarity index 100%
rename from .riot/requirements/a06729a.txt
rename to dd-trace-py/.riot/requirements/a06729a.txt
diff --git a/.riot/requirements/a0b5e82.txt b/dd-trace-py/.riot/requirements/a0b5e82.txt
similarity index 100%
rename from .riot/requirements/a0b5e82.txt
rename to dd-trace-py/.riot/requirements/a0b5e82.txt
diff --git a/.riot/requirements/a0cc2a4.txt b/dd-trace-py/.riot/requirements/a0cc2a4.txt
similarity index 100%
rename from .riot/requirements/a0cc2a4.txt
rename to dd-trace-py/.riot/requirements/a0cc2a4.txt
diff --git a/.riot/requirements/a1ca9a5.txt b/dd-trace-py/.riot/requirements/a1ca9a5.txt
similarity index 100%
rename from .riot/requirements/a1ca9a5.txt
rename to dd-trace-py/.riot/requirements/a1ca9a5.txt
diff --git a/.riot/requirements/a1eb4c8.txt b/dd-trace-py/.riot/requirements/a1eb4c8.txt
similarity index 100%
rename from .riot/requirements/a1eb4c8.txt
rename to dd-trace-py/.riot/requirements/a1eb4c8.txt
diff --git a/.riot/requirements/a20816c.txt b/dd-trace-py/.riot/requirements/a20816c.txt
similarity index 100%
rename from .riot/requirements/a20816c.txt
rename to dd-trace-py/.riot/requirements/a20816c.txt
diff --git a/.riot/requirements/a273f3b.txt b/dd-trace-py/.riot/requirements/a273f3b.txt
similarity index 100%
rename from .riot/requirements/a273f3b.txt
rename to dd-trace-py/.riot/requirements/a273f3b.txt
diff --git a/.riot/requirements/a2b9112.txt b/dd-trace-py/.riot/requirements/a2b9112.txt
similarity index 100%
rename from .riot/requirements/a2b9112.txt
rename to dd-trace-py/.riot/requirements/a2b9112.txt
diff --git a/.riot/requirements/a2c65bc.txt b/dd-trace-py/.riot/requirements/a2c65bc.txt
similarity index 100%
rename from .riot/requirements/a2c65bc.txt
rename to dd-trace-py/.riot/requirements/a2c65bc.txt
diff --git a/.riot/requirements/a3342b8.txt b/dd-trace-py/.riot/requirements/a3342b8.txt
similarity index 100%
rename from .riot/requirements/a3342b8.txt
rename to dd-trace-py/.riot/requirements/a3342b8.txt
diff --git a/.riot/requirements/a34686d.txt b/dd-trace-py/.riot/requirements/a34686d.txt
similarity index 100%
rename from .riot/requirements/a34686d.txt
rename to dd-trace-py/.riot/requirements/a34686d.txt
diff --git a/.riot/requirements/a36a30e.txt b/dd-trace-py/.riot/requirements/a36a30e.txt
similarity index 100%
rename from .riot/requirements/a36a30e.txt
rename to dd-trace-py/.riot/requirements/a36a30e.txt
diff --git a/.riot/requirements/a3c3dfa.txt b/dd-trace-py/.riot/requirements/a3c3dfa.txt
similarity index 100%
rename from .riot/requirements/a3c3dfa.txt
rename to dd-trace-py/.riot/requirements/a3c3dfa.txt
diff --git a/.riot/requirements/a3e327c.txt b/dd-trace-py/.riot/requirements/a3e327c.txt
similarity index 100%
rename from .riot/requirements/a3e327c.txt
rename to dd-trace-py/.riot/requirements/a3e327c.txt
diff --git a/.riot/requirements/a40995b.txt b/dd-trace-py/.riot/requirements/a40995b.txt
similarity index 100%
rename from .riot/requirements/a40995b.txt
rename to dd-trace-py/.riot/requirements/a40995b.txt
diff --git a/.riot/requirements/a41adfe.txt b/dd-trace-py/.riot/requirements/a41adfe.txt
similarity index 100%
rename from .riot/requirements/a41adfe.txt
rename to dd-trace-py/.riot/requirements/a41adfe.txt
diff --git a/.riot/requirements/a421c15.txt b/dd-trace-py/.riot/requirements/a421c15.txt
similarity index 100%
rename from .riot/requirements/a421c15.txt
rename to dd-trace-py/.riot/requirements/a421c15.txt
diff --git a/.riot/requirements/a42e1fb.txt b/dd-trace-py/.riot/requirements/a42e1fb.txt
similarity index 100%
rename from .riot/requirements/a42e1fb.txt
rename to dd-trace-py/.riot/requirements/a42e1fb.txt
diff --git a/.riot/requirements/a4331a5.txt b/dd-trace-py/.riot/requirements/a4331a5.txt
similarity index 100%
rename from .riot/requirements/a4331a5.txt
rename to dd-trace-py/.riot/requirements/a4331a5.txt
diff --git a/.riot/requirements/a4aa6ca.txt b/dd-trace-py/.riot/requirements/a4aa6ca.txt
similarity index 100%
rename from .riot/requirements/a4aa6ca.txt
rename to dd-trace-py/.riot/requirements/a4aa6ca.txt
diff --git a/.riot/requirements/a4d4867.txt b/dd-trace-py/.riot/requirements/a4d4867.txt
similarity index 100%
rename from .riot/requirements/a4d4867.txt
rename to dd-trace-py/.riot/requirements/a4d4867.txt
diff --git a/.riot/requirements/a4fc6be.txt b/dd-trace-py/.riot/requirements/a4fc6be.txt
similarity index 100%
rename from .riot/requirements/a4fc6be.txt
rename to dd-trace-py/.riot/requirements/a4fc6be.txt
diff --git a/.riot/requirements/a503806.txt b/dd-trace-py/.riot/requirements/a503806.txt
similarity index 100%
rename from .riot/requirements/a503806.txt
rename to dd-trace-py/.riot/requirements/a503806.txt
diff --git a/.riot/requirements/a52ca01.txt b/dd-trace-py/.riot/requirements/a52ca01.txt
similarity index 100%
rename from .riot/requirements/a52ca01.txt
rename to dd-trace-py/.riot/requirements/a52ca01.txt
diff --git a/.riot/requirements/a53d339.txt b/dd-trace-py/.riot/requirements/a53d339.txt
similarity index 100%
rename from .riot/requirements/a53d339.txt
rename to dd-trace-py/.riot/requirements/a53d339.txt
diff --git a/.riot/requirements/a54b2db.txt b/dd-trace-py/.riot/requirements/a54b2db.txt
similarity index 100%
rename from .riot/requirements/a54b2db.txt
rename to dd-trace-py/.riot/requirements/a54b2db.txt
diff --git a/.riot/requirements/a55b017.txt b/dd-trace-py/.riot/requirements/a55b017.txt
similarity index 100%
rename from .riot/requirements/a55b017.txt
rename to dd-trace-py/.riot/requirements/a55b017.txt
diff --git a/.riot/requirements/a5abd83.txt b/dd-trace-py/.riot/requirements/a5abd83.txt
similarity index 100%
rename from .riot/requirements/a5abd83.txt
rename to dd-trace-py/.riot/requirements/a5abd83.txt
diff --git a/.riot/requirements/a5c98ed.txt b/dd-trace-py/.riot/requirements/a5c98ed.txt
similarity index 100%
rename from .riot/requirements/a5c98ed.txt
rename to dd-trace-py/.riot/requirements/a5c98ed.txt
diff --git a/.riot/requirements/a5eb94b.txt b/dd-trace-py/.riot/requirements/a5eb94b.txt
similarity index 100%
rename from .riot/requirements/a5eb94b.txt
rename to dd-trace-py/.riot/requirements/a5eb94b.txt
diff --git a/.riot/requirements/a61304c.txt b/dd-trace-py/.riot/requirements/a61304c.txt
similarity index 100%
rename from .riot/requirements/a61304c.txt
rename to dd-trace-py/.riot/requirements/a61304c.txt
diff --git a/.riot/requirements/a782af1.txt b/dd-trace-py/.riot/requirements/a782af1.txt
similarity index 100%
rename from .riot/requirements/a782af1.txt
rename to dd-trace-py/.riot/requirements/a782af1.txt
diff --git a/.riot/requirements/a7998f4.txt b/dd-trace-py/.riot/requirements/a7998f4.txt
similarity index 100%
rename from .riot/requirements/a7998f4.txt
rename to dd-trace-py/.riot/requirements/a7998f4.txt
diff --git a/.riot/requirements/a7f9374.txt b/dd-trace-py/.riot/requirements/a7f9374.txt
similarity index 100%
rename from .riot/requirements/a7f9374.txt
rename to dd-trace-py/.riot/requirements/a7f9374.txt
diff --git a/.riot/requirements/a827c2f.txt b/dd-trace-py/.riot/requirements/a827c2f.txt
similarity index 100%
rename from .riot/requirements/a827c2f.txt
rename to dd-trace-py/.riot/requirements/a827c2f.txt
diff --git a/.riot/requirements/a85d3e6.txt b/dd-trace-py/.riot/requirements/a85d3e6.txt
similarity index 100%
rename from .riot/requirements/a85d3e6.txt
rename to dd-trace-py/.riot/requirements/a85d3e6.txt
diff --git a/.riot/requirements/a944bde.txt b/dd-trace-py/.riot/requirements/a944bde.txt
similarity index 100%
rename from .riot/requirements/a944bde.txt
rename to dd-trace-py/.riot/requirements/a944bde.txt
diff --git a/.riot/requirements/a971ee3.txt b/dd-trace-py/.riot/requirements/a971ee3.txt
similarity index 100%
rename from .riot/requirements/a971ee3.txt
rename to dd-trace-py/.riot/requirements/a971ee3.txt
diff --git a/.riot/requirements/a972630.txt b/dd-trace-py/.riot/requirements/a972630.txt
similarity index 100%
rename from .riot/requirements/a972630.txt
rename to dd-trace-py/.riot/requirements/a972630.txt
diff --git a/.riot/requirements/a98b986.txt b/dd-trace-py/.riot/requirements/a98b986.txt
similarity index 100%
rename from .riot/requirements/a98b986.txt
rename to dd-trace-py/.riot/requirements/a98b986.txt
diff --git a/.riot/requirements/a9f0bf3.txt b/dd-trace-py/.riot/requirements/a9f0bf3.txt
similarity index 100%
rename from .riot/requirements/a9f0bf3.txt
rename to dd-trace-py/.riot/requirements/a9f0bf3.txt
diff --git a/.riot/requirements/aa305b8.txt b/dd-trace-py/.riot/requirements/aa305b8.txt
similarity index 100%
rename from .riot/requirements/aa305b8.txt
rename to dd-trace-py/.riot/requirements/aa305b8.txt
diff --git a/.riot/requirements/aa4ae37.txt b/dd-trace-py/.riot/requirements/aa4ae37.txt
similarity index 100%
rename from .riot/requirements/aa4ae37.txt
rename to dd-trace-py/.riot/requirements/aa4ae37.txt
diff --git a/.riot/requirements/aa8261a.txt b/dd-trace-py/.riot/requirements/aa8261a.txt
similarity index 100%
rename from .riot/requirements/aa8261a.txt
rename to dd-trace-py/.riot/requirements/aa8261a.txt
diff --git a/.riot/requirements/aaf6987.txt b/dd-trace-py/.riot/requirements/aaf6987.txt
similarity index 100%
rename from .riot/requirements/aaf6987.txt
rename to dd-trace-py/.riot/requirements/aaf6987.txt
diff --git a/.riot/requirements/ab5767e.txt b/dd-trace-py/.riot/requirements/ab5767e.txt
similarity index 100%
rename from .riot/requirements/ab5767e.txt
rename to dd-trace-py/.riot/requirements/ab5767e.txt
diff --git a/.riot/requirements/ab96a60.txt b/dd-trace-py/.riot/requirements/ab96a60.txt
similarity index 100%
rename from .riot/requirements/ab96a60.txt
rename to dd-trace-py/.riot/requirements/ab96a60.txt
diff --git a/.riot/requirements/aba00fe.txt b/dd-trace-py/.riot/requirements/aba00fe.txt
similarity index 100%
rename from .riot/requirements/aba00fe.txt
rename to dd-trace-py/.riot/requirements/aba00fe.txt
diff --git a/.riot/requirements/abc8aee.txt b/dd-trace-py/.riot/requirements/abc8aee.txt
similarity index 100%
rename from .riot/requirements/abc8aee.txt
rename to dd-trace-py/.riot/requirements/abc8aee.txt
diff --git a/.riot/requirements/ac53b06.txt b/dd-trace-py/.riot/requirements/ac53b06.txt
similarity index 100%
rename from .riot/requirements/ac53b06.txt
rename to dd-trace-py/.riot/requirements/ac53b06.txt
diff --git a/.riot/requirements/ad22fca.txt b/dd-trace-py/.riot/requirements/ad22fca.txt
similarity index 100%
rename from .riot/requirements/ad22fca.txt
rename to dd-trace-py/.riot/requirements/ad22fca.txt
diff --git a/.riot/requirements/ad3a56c.txt b/dd-trace-py/.riot/requirements/ad3a56c.txt
similarity index 100%
rename from .riot/requirements/ad3a56c.txt
rename to dd-trace-py/.riot/requirements/ad3a56c.txt
diff --git a/.riot/requirements/ad7633a.txt b/dd-trace-py/.riot/requirements/ad7633a.txt
similarity index 100%
rename from .riot/requirements/ad7633a.txt
rename to dd-trace-py/.riot/requirements/ad7633a.txt
diff --git a/.riot/requirements/adec509.txt b/dd-trace-py/.riot/requirements/adec509.txt
similarity index 100%
rename from .riot/requirements/adec509.txt
rename to dd-trace-py/.riot/requirements/adec509.txt
diff --git a/.riot/requirements/ae7e800.txt b/dd-trace-py/.riot/requirements/ae7e800.txt
similarity index 100%
rename from .riot/requirements/ae7e800.txt
rename to dd-trace-py/.riot/requirements/ae7e800.txt
diff --git a/.riot/requirements/af72903.txt b/dd-trace-py/.riot/requirements/af72903.txt
similarity index 100%
rename from .riot/requirements/af72903.txt
rename to dd-trace-py/.riot/requirements/af72903.txt
diff --git a/.riot/requirements/afc1791.txt b/dd-trace-py/.riot/requirements/afc1791.txt
similarity index 100%
rename from .riot/requirements/afc1791.txt
rename to dd-trace-py/.riot/requirements/afc1791.txt
diff --git a/.riot/requirements/b06371b.txt b/dd-trace-py/.riot/requirements/b06371b.txt
similarity index 100%
rename from .riot/requirements/b06371b.txt
rename to dd-trace-py/.riot/requirements/b06371b.txt
diff --git a/.riot/requirements/b084483.txt b/dd-trace-py/.riot/requirements/b084483.txt
similarity index 100%
rename from .riot/requirements/b084483.txt
rename to dd-trace-py/.riot/requirements/b084483.txt
diff --git a/.riot/requirements/b0b51fa.txt b/dd-trace-py/.riot/requirements/b0b51fa.txt
similarity index 100%
rename from .riot/requirements/b0b51fa.txt
rename to dd-trace-py/.riot/requirements/b0b51fa.txt
diff --git a/.riot/requirements/b0d5dee.txt b/dd-trace-py/.riot/requirements/b0d5dee.txt
similarity index 100%
rename from .riot/requirements/b0d5dee.txt
rename to dd-trace-py/.riot/requirements/b0d5dee.txt
diff --git a/.riot/requirements/b12a18a.txt b/dd-trace-py/.riot/requirements/b12a18a.txt
similarity index 100%
rename from .riot/requirements/b12a18a.txt
rename to dd-trace-py/.riot/requirements/b12a18a.txt
diff --git a/.riot/requirements/b13655a.txt b/dd-trace-py/.riot/requirements/b13655a.txt
similarity index 100%
rename from .riot/requirements/b13655a.txt
rename to dd-trace-py/.riot/requirements/b13655a.txt
diff --git a/.riot/requirements/b1eb794.txt b/dd-trace-py/.riot/requirements/b1eb794.txt
similarity index 100%
rename from .riot/requirements/b1eb794.txt
rename to dd-trace-py/.riot/requirements/b1eb794.txt
diff --git a/.riot/requirements/b1f6b59.txt b/dd-trace-py/.riot/requirements/b1f6b59.txt
similarity index 100%
rename from .riot/requirements/b1f6b59.txt
rename to dd-trace-py/.riot/requirements/b1f6b59.txt
diff --git a/.riot/requirements/b21297e.txt b/dd-trace-py/.riot/requirements/b21297e.txt
similarity index 100%
rename from .riot/requirements/b21297e.txt
rename to dd-trace-py/.riot/requirements/b21297e.txt
diff --git a/.riot/requirements/b26db48.txt b/dd-trace-py/.riot/requirements/b26db48.txt
similarity index 100%
rename from .riot/requirements/b26db48.txt
rename to dd-trace-py/.riot/requirements/b26db48.txt
diff --git a/.riot/requirements/b29075f.txt b/dd-trace-py/.riot/requirements/b29075f.txt
similarity index 100%
rename from .riot/requirements/b29075f.txt
rename to dd-trace-py/.riot/requirements/b29075f.txt
diff --git a/.riot/requirements/b29b7a2.txt b/dd-trace-py/.riot/requirements/b29b7a2.txt
similarity index 100%
rename from .riot/requirements/b29b7a2.txt
rename to dd-trace-py/.riot/requirements/b29b7a2.txt
diff --git a/.riot/requirements/b2cb8af.txt b/dd-trace-py/.riot/requirements/b2cb8af.txt
similarity index 100%
rename from .riot/requirements/b2cb8af.txt
rename to dd-trace-py/.riot/requirements/b2cb8af.txt
diff --git a/.riot/requirements/b34ec02.txt b/dd-trace-py/.riot/requirements/b34ec02.txt
similarity index 100%
rename from .riot/requirements/b34ec02.txt
rename to dd-trace-py/.riot/requirements/b34ec02.txt
diff --git a/.riot/requirements/b3b9ce6.txt b/dd-trace-py/.riot/requirements/b3b9ce6.txt
similarity index 100%
rename from .riot/requirements/b3b9ce6.txt
rename to dd-trace-py/.riot/requirements/b3b9ce6.txt
diff --git a/.riot/requirements/b3bdd52.txt b/dd-trace-py/.riot/requirements/b3bdd52.txt
similarity index 100%
rename from .riot/requirements/b3bdd52.txt
rename to dd-trace-py/.riot/requirements/b3bdd52.txt
diff --git a/.riot/requirements/b403d9d.txt b/dd-trace-py/.riot/requirements/b403d9d.txt
similarity index 100%
rename from .riot/requirements/b403d9d.txt
rename to dd-trace-py/.riot/requirements/b403d9d.txt
diff --git a/.riot/requirements/b42974d.txt b/dd-trace-py/.riot/requirements/b42974d.txt
similarity index 100%
rename from .riot/requirements/b42974d.txt
rename to dd-trace-py/.riot/requirements/b42974d.txt
diff --git a/.riot/requirements/b44f8fd.txt b/dd-trace-py/.riot/requirements/b44f8fd.txt
similarity index 100%
rename from .riot/requirements/b44f8fd.txt
rename to dd-trace-py/.riot/requirements/b44f8fd.txt
diff --git a/.riot/requirements/b48f657.txt b/dd-trace-py/.riot/requirements/b48f657.txt
similarity index 100%
rename from .riot/requirements/b48f657.txt
rename to dd-trace-py/.riot/requirements/b48f657.txt
diff --git a/.riot/requirements/b4e5c07.txt b/dd-trace-py/.riot/requirements/b4e5c07.txt
similarity index 100%
rename from .riot/requirements/b4e5c07.txt
rename to dd-trace-py/.riot/requirements/b4e5c07.txt
diff --git a/.riot/requirements/b5233ea.txt b/dd-trace-py/.riot/requirements/b5233ea.txt
similarity index 100%
rename from .riot/requirements/b5233ea.txt
rename to dd-trace-py/.riot/requirements/b5233ea.txt
diff --git a/.riot/requirements/b56d9af.txt b/dd-trace-py/.riot/requirements/b56d9af.txt
similarity index 100%
rename from .riot/requirements/b56d9af.txt
rename to dd-trace-py/.riot/requirements/b56d9af.txt
diff --git a/.riot/requirements/b5739b8.txt b/dd-trace-py/.riot/requirements/b5739b8.txt
similarity index 100%
rename from .riot/requirements/b5739b8.txt
rename to dd-trace-py/.riot/requirements/b5739b8.txt
diff --git a/.riot/requirements/b5e9131.txt b/dd-trace-py/.riot/requirements/b5e9131.txt
similarity index 100%
rename from .riot/requirements/b5e9131.txt
rename to dd-trace-py/.riot/requirements/b5e9131.txt
diff --git a/.riot/requirements/b5fb73e.txt b/dd-trace-py/.riot/requirements/b5fb73e.txt
similarity index 100%
rename from .riot/requirements/b5fb73e.txt
rename to dd-trace-py/.riot/requirements/b5fb73e.txt
diff --git a/.riot/requirements/b66280d.txt b/dd-trace-py/.riot/requirements/b66280d.txt
similarity index 100%
rename from .riot/requirements/b66280d.txt
rename to dd-trace-py/.riot/requirements/b66280d.txt
diff --git a/.riot/requirements/b6d51fd.txt b/dd-trace-py/.riot/requirements/b6d51fd.txt
similarity index 100%
rename from .riot/requirements/b6d51fd.txt
rename to dd-trace-py/.riot/requirements/b6d51fd.txt
diff --git a/.riot/requirements/b767984.txt b/dd-trace-py/.riot/requirements/b767984.txt
similarity index 100%
rename from .riot/requirements/b767984.txt
rename to dd-trace-py/.riot/requirements/b767984.txt
diff --git a/.riot/requirements/b783dae.txt b/dd-trace-py/.riot/requirements/b783dae.txt
similarity index 100%
rename from .riot/requirements/b783dae.txt
rename to dd-trace-py/.riot/requirements/b783dae.txt
diff --git a/.riot/requirements/b90472a.txt b/dd-trace-py/.riot/requirements/b90472a.txt
similarity index 100%
rename from .riot/requirements/b90472a.txt
rename to dd-trace-py/.riot/requirements/b90472a.txt
diff --git a/.riot/requirements/b910bfb.txt b/dd-trace-py/.riot/requirements/b910bfb.txt
similarity index 100%
rename from .riot/requirements/b910bfb.txt
rename to dd-trace-py/.riot/requirements/b910bfb.txt
diff --git a/.riot/requirements/b92b3b0.txt b/dd-trace-py/.riot/requirements/b92b3b0.txt
similarity index 100%
rename from .riot/requirements/b92b3b0.txt
rename to dd-trace-py/.riot/requirements/b92b3b0.txt
diff --git a/.riot/requirements/b947449.txt b/dd-trace-py/.riot/requirements/b947449.txt
similarity index 100%
rename from .riot/requirements/b947449.txt
rename to dd-trace-py/.riot/requirements/b947449.txt
diff --git a/.riot/requirements/b959120.txt b/dd-trace-py/.riot/requirements/b959120.txt
similarity index 100%
rename from .riot/requirements/b959120.txt
rename to dd-trace-py/.riot/requirements/b959120.txt
diff --git a/.riot/requirements/b96b665.txt b/dd-trace-py/.riot/requirements/b96b665.txt
similarity index 100%
rename from .riot/requirements/b96b665.txt
rename to dd-trace-py/.riot/requirements/b96b665.txt
diff --git a/.riot/requirements/b970d9a.txt b/dd-trace-py/.riot/requirements/b970d9a.txt
similarity index 100%
rename from .riot/requirements/b970d9a.txt
rename to dd-trace-py/.riot/requirements/b970d9a.txt
diff --git a/.riot/requirements/b9fa4af.txt b/dd-trace-py/.riot/requirements/b9fa4af.txt
similarity index 100%
rename from .riot/requirements/b9fa4af.txt
rename to dd-trace-py/.riot/requirements/b9fa4af.txt
diff --git a/.riot/requirements/ba009af.txt b/dd-trace-py/.riot/requirements/ba009af.txt
similarity index 100%
rename from .riot/requirements/ba009af.txt
rename to dd-trace-py/.riot/requirements/ba009af.txt
diff --git a/.riot/requirements/bade9f1.txt b/dd-trace-py/.riot/requirements/bade9f1.txt
similarity index 100%
rename from .riot/requirements/bade9f1.txt
rename to dd-trace-py/.riot/requirements/bade9f1.txt
diff --git a/.riot/requirements/bb514db.txt b/dd-trace-py/.riot/requirements/bb514db.txt
similarity index 100%
rename from .riot/requirements/bb514db.txt
rename to dd-trace-py/.riot/requirements/bb514db.txt
diff --git a/.riot/requirements/bb7aaff.txt b/dd-trace-py/.riot/requirements/bb7aaff.txt
similarity index 100%
rename from .riot/requirements/bb7aaff.txt
rename to dd-trace-py/.riot/requirements/bb7aaff.txt
diff --git a/.riot/requirements/bb7d091.txt b/dd-trace-py/.riot/requirements/bb7d091.txt
similarity index 100%
rename from .riot/requirements/bb7d091.txt
rename to dd-trace-py/.riot/requirements/bb7d091.txt
diff --git a/.riot/requirements/bbcdb10.txt b/dd-trace-py/.riot/requirements/bbcdb10.txt
similarity index 100%
rename from .riot/requirements/bbcdb10.txt
rename to dd-trace-py/.riot/requirements/bbcdb10.txt
diff --git a/.riot/requirements/bc5cfa5.txt b/dd-trace-py/.riot/requirements/bc5cfa5.txt
similarity index 100%
rename from .riot/requirements/bc5cfa5.txt
rename to dd-trace-py/.riot/requirements/bc5cfa5.txt
diff --git a/.riot/requirements/bc64f49.txt b/dd-trace-py/.riot/requirements/bc64f49.txt
similarity index 100%
rename from .riot/requirements/bc64f49.txt
rename to dd-trace-py/.riot/requirements/bc64f49.txt
diff --git a/.riot/requirements/bc7a1f4.txt b/dd-trace-py/.riot/requirements/bc7a1f4.txt
similarity index 100%
rename from .riot/requirements/bc7a1f4.txt
rename to dd-trace-py/.riot/requirements/bc7a1f4.txt
diff --git a/.riot/requirements/bc8e8c6.txt b/dd-trace-py/.riot/requirements/bc8e8c6.txt
similarity index 100%
rename from .riot/requirements/bc8e8c6.txt
rename to dd-trace-py/.riot/requirements/bc8e8c6.txt
diff --git a/.riot/requirements/bc9aff8.txt b/dd-trace-py/.riot/requirements/bc9aff8.txt
similarity index 100%
rename from .riot/requirements/bc9aff8.txt
rename to dd-trace-py/.riot/requirements/bc9aff8.txt
diff --git a/.riot/requirements/bd14427.txt b/dd-trace-py/.riot/requirements/bd14427.txt
similarity index 100%
rename from .riot/requirements/bd14427.txt
rename to dd-trace-py/.riot/requirements/bd14427.txt
diff --git a/.riot/requirements/bd87c18.txt b/dd-trace-py/.riot/requirements/bd87c18.txt
similarity index 100%
rename from .riot/requirements/bd87c18.txt
rename to dd-trace-py/.riot/requirements/bd87c18.txt
diff --git a/.riot/requirements/bd89eb3.txt b/dd-trace-py/.riot/requirements/bd89eb3.txt
similarity index 100%
rename from .riot/requirements/bd89eb3.txt
rename to dd-trace-py/.riot/requirements/bd89eb3.txt
diff --git a/.riot/requirements/be25791.txt b/dd-trace-py/.riot/requirements/be25791.txt
similarity index 100%
rename from .riot/requirements/be25791.txt
rename to dd-trace-py/.riot/requirements/be25791.txt
diff --git a/.riot/requirements/be3147f.txt b/dd-trace-py/.riot/requirements/be3147f.txt
similarity index 100%
rename from .riot/requirements/be3147f.txt
rename to dd-trace-py/.riot/requirements/be3147f.txt
diff --git a/.riot/requirements/bebdd41.txt b/dd-trace-py/.riot/requirements/bebdd41.txt
similarity index 100%
rename from .riot/requirements/bebdd41.txt
rename to dd-trace-py/.riot/requirements/bebdd41.txt
diff --git a/.riot/requirements/becad20.txt b/dd-trace-py/.riot/requirements/becad20.txt
similarity index 100%
rename from .riot/requirements/becad20.txt
rename to dd-trace-py/.riot/requirements/becad20.txt
diff --git a/.riot/requirements/bef9b3d.txt b/dd-trace-py/.riot/requirements/bef9b3d.txt
similarity index 100%
rename from .riot/requirements/bef9b3d.txt
rename to dd-trace-py/.riot/requirements/bef9b3d.txt
diff --git a/.riot/requirements/bf0511f.txt b/dd-trace-py/.riot/requirements/bf0511f.txt
similarity index 100%
rename from .riot/requirements/bf0511f.txt
rename to dd-trace-py/.riot/requirements/bf0511f.txt
diff --git a/.riot/requirements/bf481d9.txt b/dd-trace-py/.riot/requirements/bf481d9.txt
similarity index 100%
rename from .riot/requirements/bf481d9.txt
rename to dd-trace-py/.riot/requirements/bf481d9.txt
diff --git a/.riot/requirements/bf99122.txt b/dd-trace-py/.riot/requirements/bf99122.txt
similarity index 100%
rename from .riot/requirements/bf99122.txt
rename to dd-trace-py/.riot/requirements/bf99122.txt
diff --git a/.riot/requirements/bfaf096.txt b/dd-trace-py/.riot/requirements/bfaf096.txt
similarity index 100%
rename from .riot/requirements/bfaf096.txt
rename to dd-trace-py/.riot/requirements/bfaf096.txt
diff --git a/.riot/requirements/c05715c.txt b/dd-trace-py/.riot/requirements/c05715c.txt
similarity index 100%
rename from .riot/requirements/c05715c.txt
rename to dd-trace-py/.riot/requirements/c05715c.txt
diff --git a/.riot/requirements/c0bc2fa.txt b/dd-trace-py/.riot/requirements/c0bc2fa.txt
similarity index 100%
rename from .riot/requirements/c0bc2fa.txt
rename to dd-trace-py/.riot/requirements/c0bc2fa.txt
diff --git a/.riot/requirements/c0d357f.txt b/dd-trace-py/.riot/requirements/c0d357f.txt
similarity index 100%
rename from .riot/requirements/c0d357f.txt
rename to dd-trace-py/.riot/requirements/c0d357f.txt
diff --git a/.riot/requirements/c0e2ef5.txt b/dd-trace-py/.riot/requirements/c0e2ef5.txt
similarity index 100%
rename from .riot/requirements/c0e2ef5.txt
rename to dd-trace-py/.riot/requirements/c0e2ef5.txt
diff --git a/.riot/requirements/c123ddc.txt b/dd-trace-py/.riot/requirements/c123ddc.txt
similarity index 100%
rename from .riot/requirements/c123ddc.txt
rename to dd-trace-py/.riot/requirements/c123ddc.txt
diff --git a/.riot/requirements/c1351c9.txt b/dd-trace-py/.riot/requirements/c1351c9.txt
similarity index 100%
rename from .riot/requirements/c1351c9.txt
rename to dd-trace-py/.riot/requirements/c1351c9.txt
diff --git a/.riot/requirements/c18a3b5.txt b/dd-trace-py/.riot/requirements/c18a3b5.txt
similarity index 100%
rename from .riot/requirements/c18a3b5.txt
rename to dd-trace-py/.riot/requirements/c18a3b5.txt
diff --git a/.riot/requirements/c2420c2.txt b/dd-trace-py/.riot/requirements/c2420c2.txt
similarity index 100%
rename from .riot/requirements/c2420c2.txt
rename to dd-trace-py/.riot/requirements/c2420c2.txt
diff --git a/.riot/requirements/c285110.txt b/dd-trace-py/.riot/requirements/c285110.txt
similarity index 100%
rename from .riot/requirements/c285110.txt
rename to dd-trace-py/.riot/requirements/c285110.txt
diff --git a/.riot/requirements/c2e69f8.txt b/dd-trace-py/.riot/requirements/c2e69f8.txt
similarity index 100%
rename from .riot/requirements/c2e69f8.txt
rename to dd-trace-py/.riot/requirements/c2e69f8.txt
diff --git a/.riot/requirements/c32fba4.txt b/dd-trace-py/.riot/requirements/c32fba4.txt
similarity index 100%
rename from .riot/requirements/c32fba4.txt
rename to dd-trace-py/.riot/requirements/c32fba4.txt
diff --git a/.riot/requirements/c36f019.txt b/dd-trace-py/.riot/requirements/c36f019.txt
similarity index 100%
rename from .riot/requirements/c36f019.txt
rename to dd-trace-py/.riot/requirements/c36f019.txt
diff --git a/.riot/requirements/c3912b5.txt b/dd-trace-py/.riot/requirements/c3912b5.txt
similarity index 100%
rename from .riot/requirements/c3912b5.txt
rename to dd-trace-py/.riot/requirements/c3912b5.txt
diff --git a/.riot/requirements/c48b0f7.txt b/dd-trace-py/.riot/requirements/c48b0f7.txt
similarity index 100%
rename from .riot/requirements/c48b0f7.txt
rename to dd-trace-py/.riot/requirements/c48b0f7.txt
diff --git a/.riot/requirements/c5214fe.txt b/dd-trace-py/.riot/requirements/c5214fe.txt
similarity index 100%
rename from .riot/requirements/c5214fe.txt
rename to dd-trace-py/.riot/requirements/c5214fe.txt
diff --git a/.riot/requirements/c54cef3.txt b/dd-trace-py/.riot/requirements/c54cef3.txt
similarity index 100%
rename from .riot/requirements/c54cef3.txt
rename to dd-trace-py/.riot/requirements/c54cef3.txt
diff --git a/.riot/requirements/c5dcf84.txt b/dd-trace-py/.riot/requirements/c5dcf84.txt
similarity index 100%
rename from .riot/requirements/c5dcf84.txt
rename to dd-trace-py/.riot/requirements/c5dcf84.txt
diff --git a/.riot/requirements/c60dd9e.txt b/dd-trace-py/.riot/requirements/c60dd9e.txt
similarity index 100%
rename from .riot/requirements/c60dd9e.txt
rename to dd-trace-py/.riot/requirements/c60dd9e.txt
diff --git a/.riot/requirements/c6176a9.txt b/dd-trace-py/.riot/requirements/c6176a9.txt
similarity index 100%
rename from .riot/requirements/c6176a9.txt
rename to dd-trace-py/.riot/requirements/c6176a9.txt
diff --git a/.riot/requirements/c61da82.txt b/dd-trace-py/.riot/requirements/c61da82.txt
similarity index 100%
rename from .riot/requirements/c61da82.txt
rename to dd-trace-py/.riot/requirements/c61da82.txt
diff --git a/.riot/requirements/c6373ab.txt b/dd-trace-py/.riot/requirements/c6373ab.txt
similarity index 100%
rename from .riot/requirements/c6373ab.txt
rename to dd-trace-py/.riot/requirements/c6373ab.txt
diff --git a/.riot/requirements/c663307.txt b/dd-trace-py/.riot/requirements/c663307.txt
similarity index 100%
rename from .riot/requirements/c663307.txt
rename to dd-trace-py/.riot/requirements/c663307.txt
diff --git a/.riot/requirements/c69f571.txt b/dd-trace-py/.riot/requirements/c69f571.txt
similarity index 100%
rename from .riot/requirements/c69f571.txt
rename to dd-trace-py/.riot/requirements/c69f571.txt
diff --git a/.riot/requirements/c6df201.txt b/dd-trace-py/.riot/requirements/c6df201.txt
similarity index 100%
rename from .riot/requirements/c6df201.txt
rename to dd-trace-py/.riot/requirements/c6df201.txt
diff --git a/.riot/requirements/c6f2827.txt b/dd-trace-py/.riot/requirements/c6f2827.txt
similarity index 100%
rename from .riot/requirements/c6f2827.txt
rename to dd-trace-py/.riot/requirements/c6f2827.txt
diff --git a/.riot/requirements/c6fa72d.txt b/dd-trace-py/.riot/requirements/c6fa72d.txt
similarity index 100%
rename from .riot/requirements/c6fa72d.txt
rename to dd-trace-py/.riot/requirements/c6fa72d.txt
diff --git a/.riot/requirements/c724a8e.txt b/dd-trace-py/.riot/requirements/c724a8e.txt
similarity index 100%
rename from .riot/requirements/c724a8e.txt
rename to dd-trace-py/.riot/requirements/c724a8e.txt
diff --git a/.riot/requirements/c7c679a.txt b/dd-trace-py/.riot/requirements/c7c679a.txt
similarity index 100%
rename from .riot/requirements/c7c679a.txt
rename to dd-trace-py/.riot/requirements/c7c679a.txt
diff --git a/.riot/requirements/c815af0.txt b/dd-trace-py/.riot/requirements/c815af0.txt
similarity index 100%
rename from .riot/requirements/c815af0.txt
rename to dd-trace-py/.riot/requirements/c815af0.txt
diff --git a/.riot/requirements/c894f67.txt b/dd-trace-py/.riot/requirements/c894f67.txt
similarity index 100%
rename from .riot/requirements/c894f67.txt
rename to dd-trace-py/.riot/requirements/c894f67.txt
diff --git a/.riot/requirements/c8b476b.txt b/dd-trace-py/.riot/requirements/c8b476b.txt
similarity index 100%
rename from .riot/requirements/c8b476b.txt
rename to dd-trace-py/.riot/requirements/c8b476b.txt
diff --git a/.riot/requirements/c8ba76f.txt b/dd-trace-py/.riot/requirements/c8ba76f.txt
similarity index 100%
rename from .riot/requirements/c8ba76f.txt
rename to dd-trace-py/.riot/requirements/c8ba76f.txt
diff --git a/.riot/requirements/c8ff47b.txt b/dd-trace-py/.riot/requirements/c8ff47b.txt
similarity index 100%
rename from .riot/requirements/c8ff47b.txt
rename to dd-trace-py/.riot/requirements/c8ff47b.txt
diff --git a/.riot/requirements/c952599.txt b/dd-trace-py/.riot/requirements/c952599.txt
similarity index 100%
rename from .riot/requirements/c952599.txt
rename to dd-trace-py/.riot/requirements/c952599.txt
diff --git a/.riot/requirements/c961281.txt b/dd-trace-py/.riot/requirements/c961281.txt
similarity index 100%
rename from .riot/requirements/c961281.txt
rename to dd-trace-py/.riot/requirements/c961281.txt
diff --git a/.riot/requirements/c9aa18f.txt b/dd-trace-py/.riot/requirements/c9aa18f.txt
similarity index 100%
rename from .riot/requirements/c9aa18f.txt
rename to dd-trace-py/.riot/requirements/c9aa18f.txt
diff --git a/.riot/requirements/cac5000.txt b/dd-trace-py/.riot/requirements/cac5000.txt
similarity index 100%
rename from .riot/requirements/cac5000.txt
rename to dd-trace-py/.riot/requirements/cac5000.txt
diff --git a/.riot/requirements/cb657ca.txt b/dd-trace-py/.riot/requirements/cb657ca.txt
similarity index 100%
rename from .riot/requirements/cb657ca.txt
rename to dd-trace-py/.riot/requirements/cb657ca.txt
diff --git a/.riot/requirements/cc2f3f8.txt b/dd-trace-py/.riot/requirements/cc2f3f8.txt
similarity index 100%
rename from .riot/requirements/cc2f3f8.txt
rename to dd-trace-py/.riot/requirements/cc2f3f8.txt
diff --git a/.riot/requirements/ccffa6b.txt b/dd-trace-py/.riot/requirements/ccffa6b.txt
similarity index 100%
rename from .riot/requirements/ccffa6b.txt
rename to dd-trace-py/.riot/requirements/ccffa6b.txt
diff --git a/.riot/requirements/cd83bf1.txt b/dd-trace-py/.riot/requirements/cd83bf1.txt
similarity index 100%
rename from .riot/requirements/cd83bf1.txt
rename to dd-trace-py/.riot/requirements/cd83bf1.txt
diff --git a/.riot/requirements/cdab08a.txt b/dd-trace-py/.riot/requirements/cdab08a.txt
similarity index 100%
rename from .riot/requirements/cdab08a.txt
rename to dd-trace-py/.riot/requirements/cdab08a.txt
diff --git a/.riot/requirements/cdfce2e.txt b/dd-trace-py/.riot/requirements/cdfce2e.txt
similarity index 100%
rename from .riot/requirements/cdfce2e.txt
rename to dd-trace-py/.riot/requirements/cdfce2e.txt
diff --git a/.riot/requirements/ce2bb40.txt b/dd-trace-py/.riot/requirements/ce2bb40.txt
similarity index 100%
rename from .riot/requirements/ce2bb40.txt
rename to dd-trace-py/.riot/requirements/ce2bb40.txt
diff --git a/.riot/requirements/cf1ae9f.txt b/dd-trace-py/.riot/requirements/cf1ae9f.txt
similarity index 100%
rename from .riot/requirements/cf1ae9f.txt
rename to dd-trace-py/.riot/requirements/cf1ae9f.txt
diff --git a/.riot/requirements/cf86081.txt b/dd-trace-py/.riot/requirements/cf86081.txt
similarity index 100%
rename from .riot/requirements/cf86081.txt
rename to dd-trace-py/.riot/requirements/cf86081.txt
diff --git a/.riot/requirements/d0116c6.txt b/dd-trace-py/.riot/requirements/d0116c6.txt
similarity index 100%
rename from .riot/requirements/d0116c6.txt
rename to dd-trace-py/.riot/requirements/d0116c6.txt
diff --git a/.riot/requirements/d056ddd.txt b/dd-trace-py/.riot/requirements/d056ddd.txt
similarity index 100%
rename from .riot/requirements/d056ddd.txt
rename to dd-trace-py/.riot/requirements/d056ddd.txt
diff --git a/.riot/requirements/d0b2693.txt b/dd-trace-py/.riot/requirements/d0b2693.txt
similarity index 100%
rename from .riot/requirements/d0b2693.txt
rename to dd-trace-py/.riot/requirements/d0b2693.txt
diff --git a/.riot/requirements/d0fc014.txt b/dd-trace-py/.riot/requirements/d0fc014.txt
similarity index 100%
rename from .riot/requirements/d0fc014.txt
rename to dd-trace-py/.riot/requirements/d0fc014.txt
diff --git a/.riot/requirements/d168e78.txt b/dd-trace-py/.riot/requirements/d168e78.txt
similarity index 100%
rename from .riot/requirements/d168e78.txt
rename to dd-trace-py/.riot/requirements/d168e78.txt
diff --git a/.riot/requirements/d184b05.txt b/dd-trace-py/.riot/requirements/d184b05.txt
similarity index 100%
rename from .riot/requirements/d184b05.txt
rename to dd-trace-py/.riot/requirements/d184b05.txt
diff --git a/.riot/requirements/d2b8f24.txt b/dd-trace-py/.riot/requirements/d2b8f24.txt
similarity index 100%
rename from .riot/requirements/d2b8f24.txt
rename to dd-trace-py/.riot/requirements/d2b8f24.txt
diff --git a/.riot/requirements/d308d1f.txt b/dd-trace-py/.riot/requirements/d308d1f.txt
similarity index 100%
rename from .riot/requirements/d308d1f.txt
rename to dd-trace-py/.riot/requirements/d308d1f.txt
diff --git a/.riot/requirements/d33e71b.txt b/dd-trace-py/.riot/requirements/d33e71b.txt
similarity index 100%
rename from .riot/requirements/d33e71b.txt
rename to dd-trace-py/.riot/requirements/d33e71b.txt
diff --git a/.riot/requirements/d33fd55.txt b/dd-trace-py/.riot/requirements/d33fd55.txt
similarity index 100%
rename from .riot/requirements/d33fd55.txt
rename to dd-trace-py/.riot/requirements/d33fd55.txt
diff --git a/.riot/requirements/d3c9ec8.txt b/dd-trace-py/.riot/requirements/d3c9ec8.txt
similarity index 100%
rename from .riot/requirements/d3c9ec8.txt
rename to dd-trace-py/.riot/requirements/d3c9ec8.txt
diff --git a/.riot/requirements/d44f455.txt b/dd-trace-py/.riot/requirements/d44f455.txt
similarity index 100%
rename from .riot/requirements/d44f455.txt
rename to dd-trace-py/.riot/requirements/d44f455.txt
diff --git a/.riot/requirements/d4a8f85.txt b/dd-trace-py/.riot/requirements/d4a8f85.txt
similarity index 100%
rename from .riot/requirements/d4a8f85.txt
rename to dd-trace-py/.riot/requirements/d4a8f85.txt
diff --git a/.riot/requirements/d4e1055.txt b/dd-trace-py/.riot/requirements/d4e1055.txt
similarity index 100%
rename from .riot/requirements/d4e1055.txt
rename to dd-trace-py/.riot/requirements/d4e1055.txt
diff --git a/.riot/requirements/d5098dd.txt b/dd-trace-py/.riot/requirements/d5098dd.txt
similarity index 100%
rename from .riot/requirements/d5098dd.txt
rename to dd-trace-py/.riot/requirements/d5098dd.txt
diff --git a/.riot/requirements/d5214d5.txt b/dd-trace-py/.riot/requirements/d5214d5.txt
similarity index 100%
rename from .riot/requirements/d5214d5.txt
rename to dd-trace-py/.riot/requirements/d5214d5.txt
diff --git a/.riot/requirements/d59b088.txt b/dd-trace-py/.riot/requirements/d59b088.txt
similarity index 100%
rename from .riot/requirements/d59b088.txt
rename to dd-trace-py/.riot/requirements/d59b088.txt
diff --git a/.riot/requirements/d6184aa.txt b/dd-trace-py/.riot/requirements/d6184aa.txt
similarity index 100%
rename from .riot/requirements/d6184aa.txt
rename to dd-trace-py/.riot/requirements/d6184aa.txt
diff --git a/.riot/requirements/d625448.txt b/dd-trace-py/.riot/requirements/d625448.txt
similarity index 100%
rename from .riot/requirements/d625448.txt
rename to dd-trace-py/.riot/requirements/d625448.txt
diff --git a/.riot/requirements/d638313.txt b/dd-trace-py/.riot/requirements/d638313.txt
similarity index 100%
rename from .riot/requirements/d638313.txt
rename to dd-trace-py/.riot/requirements/d638313.txt
diff --git a/.riot/requirements/d68083c.txt b/dd-trace-py/.riot/requirements/d68083c.txt
similarity index 100%
rename from .riot/requirements/d68083c.txt
rename to dd-trace-py/.riot/requirements/d68083c.txt
diff --git a/.riot/requirements/d6d5131.txt b/dd-trace-py/.riot/requirements/d6d5131.txt
similarity index 100%
rename from .riot/requirements/d6d5131.txt
rename to dd-trace-py/.riot/requirements/d6d5131.txt
diff --git a/.riot/requirements/d712663.txt b/dd-trace-py/.riot/requirements/d712663.txt
similarity index 100%
rename from .riot/requirements/d712663.txt
rename to dd-trace-py/.riot/requirements/d712663.txt
diff --git a/.riot/requirements/d728b27.txt b/dd-trace-py/.riot/requirements/d728b27.txt
similarity index 100%
rename from .riot/requirements/d728b27.txt
rename to dd-trace-py/.riot/requirements/d728b27.txt
diff --git a/.riot/requirements/d78868d.txt b/dd-trace-py/.riot/requirements/d78868d.txt
similarity index 100%
rename from .riot/requirements/d78868d.txt
rename to dd-trace-py/.riot/requirements/d78868d.txt
diff --git a/.riot/requirements/d7dfbc2.txt b/dd-trace-py/.riot/requirements/d7dfbc2.txt
similarity index 100%
rename from .riot/requirements/d7dfbc2.txt
rename to dd-trace-py/.riot/requirements/d7dfbc2.txt
diff --git a/.riot/requirements/d7e97af.txt b/dd-trace-py/.riot/requirements/d7e97af.txt
similarity index 100%
rename from .riot/requirements/d7e97af.txt
rename to dd-trace-py/.riot/requirements/d7e97af.txt
diff --git a/.riot/requirements/d7f052d.txt b/dd-trace-py/.riot/requirements/d7f052d.txt
similarity index 100%
rename from .riot/requirements/d7f052d.txt
rename to dd-trace-py/.riot/requirements/d7f052d.txt
diff --git a/.riot/requirements/d819d11.txt b/dd-trace-py/.riot/requirements/d819d11.txt
similarity index 100%
rename from .riot/requirements/d819d11.txt
rename to dd-trace-py/.riot/requirements/d819d11.txt
diff --git a/.riot/requirements/d81ad99.txt b/dd-trace-py/.riot/requirements/d81ad99.txt
similarity index 100%
rename from .riot/requirements/d81ad99.txt
rename to dd-trace-py/.riot/requirements/d81ad99.txt
diff --git a/.riot/requirements/d82f331.txt b/dd-trace-py/.riot/requirements/d82f331.txt
similarity index 100%
rename from .riot/requirements/d82f331.txt
rename to dd-trace-py/.riot/requirements/d82f331.txt
diff --git a/.riot/requirements/d85a7c2.txt b/dd-trace-py/.riot/requirements/d85a7c2.txt
similarity index 100%
rename from .riot/requirements/d85a7c2.txt
rename to dd-trace-py/.riot/requirements/d85a7c2.txt
diff --git a/.riot/requirements/d8af6dc.txt b/dd-trace-py/.riot/requirements/d8af6dc.txt
similarity index 100%
rename from .riot/requirements/d8af6dc.txt
rename to dd-trace-py/.riot/requirements/d8af6dc.txt
diff --git a/.riot/requirements/d8bb960.txt b/dd-trace-py/.riot/requirements/d8bb960.txt
similarity index 100%
rename from .riot/requirements/d8bb960.txt
rename to dd-trace-py/.riot/requirements/d8bb960.txt
diff --git a/.riot/requirements/d95803b.txt b/dd-trace-py/.riot/requirements/d95803b.txt
similarity index 100%
rename from .riot/requirements/d95803b.txt
rename to dd-trace-py/.riot/requirements/d95803b.txt
diff --git a/.riot/requirements/d982137.txt b/dd-trace-py/.riot/requirements/d982137.txt
similarity index 100%
rename from .riot/requirements/d982137.txt
rename to dd-trace-py/.riot/requirements/d982137.txt
diff --git a/.riot/requirements/da15808.txt b/dd-trace-py/.riot/requirements/da15808.txt
similarity index 100%
rename from .riot/requirements/da15808.txt
rename to dd-trace-py/.riot/requirements/da15808.txt
diff --git a/.riot/requirements/da475fd.txt b/dd-trace-py/.riot/requirements/da475fd.txt
similarity index 100%
rename from .riot/requirements/da475fd.txt
rename to dd-trace-py/.riot/requirements/da475fd.txt
diff --git a/.riot/requirements/da79693.txt b/dd-trace-py/.riot/requirements/da79693.txt
similarity index 100%
rename from .riot/requirements/da79693.txt
rename to dd-trace-py/.riot/requirements/da79693.txt
diff --git a/.riot/requirements/daa4242.txt b/dd-trace-py/.riot/requirements/daa4242.txt
similarity index 100%
rename from .riot/requirements/daa4242.txt
rename to dd-trace-py/.riot/requirements/daa4242.txt
diff --git a/.riot/requirements/daada28.txt b/dd-trace-py/.riot/requirements/daada28.txt
similarity index 100%
rename from .riot/requirements/daada28.txt
rename to dd-trace-py/.riot/requirements/daada28.txt
diff --git a/.riot/requirements/dab7cce.txt b/dd-trace-py/.riot/requirements/dab7cce.txt
similarity index 100%
rename from .riot/requirements/dab7cce.txt
rename to dd-trace-py/.riot/requirements/dab7cce.txt
diff --git a/.riot/requirements/daba82d.txt b/dd-trace-py/.riot/requirements/daba82d.txt
similarity index 100%
rename from .riot/requirements/daba82d.txt
rename to dd-trace-py/.riot/requirements/daba82d.txt
diff --git a/.riot/requirements/db0f71f.txt b/dd-trace-py/.riot/requirements/db0f71f.txt
similarity index 100%
rename from .riot/requirements/db0f71f.txt
rename to dd-trace-py/.riot/requirements/db0f71f.txt
diff --git a/.riot/requirements/db343a1.txt b/dd-trace-py/.riot/requirements/db343a1.txt
similarity index 100%
rename from .riot/requirements/db343a1.txt
rename to dd-trace-py/.riot/requirements/db343a1.txt
diff --git a/.riot/requirements/db4c577.txt b/dd-trace-py/.riot/requirements/db4c577.txt
similarity index 100%
rename from .riot/requirements/db4c577.txt
rename to dd-trace-py/.riot/requirements/db4c577.txt
diff --git a/.riot/requirements/db78045.txt b/dd-trace-py/.riot/requirements/db78045.txt
similarity index 100%
rename from .riot/requirements/db78045.txt
rename to dd-trace-py/.riot/requirements/db78045.txt
diff --git a/.riot/requirements/dbc6a48.txt b/dd-trace-py/.riot/requirements/dbc6a48.txt
similarity index 100%
rename from .riot/requirements/dbc6a48.txt
rename to dd-trace-py/.riot/requirements/dbc6a48.txt
diff --git a/.riot/requirements/dbcf3c6.txt b/dd-trace-py/.riot/requirements/dbcf3c6.txt
similarity index 100%
rename from .riot/requirements/dbcf3c6.txt
rename to dd-trace-py/.riot/requirements/dbcf3c6.txt
diff --git a/.riot/requirements/dbdd97d.txt b/dd-trace-py/.riot/requirements/dbdd97d.txt
similarity index 100%
rename from .riot/requirements/dbdd97d.txt
rename to dd-trace-py/.riot/requirements/dbdd97d.txt
diff --git a/.riot/requirements/dbeb1d7.txt b/dd-trace-py/.riot/requirements/dbeb1d7.txt
similarity index 100%
rename from .riot/requirements/dbeb1d7.txt
rename to dd-trace-py/.riot/requirements/dbeb1d7.txt
diff --git a/.riot/requirements/dbf2d5f.txt b/dd-trace-py/.riot/requirements/dbf2d5f.txt
similarity index 100%
rename from .riot/requirements/dbf2d5f.txt
rename to dd-trace-py/.riot/requirements/dbf2d5f.txt
diff --git a/.riot/requirements/dcd1818.txt b/dd-trace-py/.riot/requirements/dcd1818.txt
similarity index 100%
rename from .riot/requirements/dcd1818.txt
rename to dd-trace-py/.riot/requirements/dcd1818.txt
diff --git a/.riot/requirements/dcfed5e.txt b/dd-trace-py/.riot/requirements/dcfed5e.txt
similarity index 100%
rename from .riot/requirements/dcfed5e.txt
rename to dd-trace-py/.riot/requirements/dcfed5e.txt
diff --git a/.riot/requirements/dd2bb3b.txt b/dd-trace-py/.riot/requirements/dd2bb3b.txt
similarity index 100%
rename from .riot/requirements/dd2bb3b.txt
rename to dd-trace-py/.riot/requirements/dd2bb3b.txt
diff --git a/.riot/requirements/dd346e6.txt b/dd-trace-py/.riot/requirements/dd346e6.txt
similarity index 100%
rename from .riot/requirements/dd346e6.txt
rename to dd-trace-py/.riot/requirements/dd346e6.txt
diff --git a/.riot/requirements/dd68acc.txt b/dd-trace-py/.riot/requirements/dd68acc.txt
similarity index 100%
rename from .riot/requirements/dd68acc.txt
rename to dd-trace-py/.riot/requirements/dd68acc.txt
diff --git a/.riot/requirements/ddba314.txt b/dd-trace-py/.riot/requirements/ddba314.txt
similarity index 100%
rename from .riot/requirements/ddba314.txt
rename to dd-trace-py/.riot/requirements/ddba314.txt
diff --git a/.riot/requirements/ddd8721.txt b/dd-trace-py/.riot/requirements/ddd8721.txt
similarity index 100%
rename from .riot/requirements/ddd8721.txt
rename to dd-trace-py/.riot/requirements/ddd8721.txt
diff --git a/.riot/requirements/de38314.txt b/dd-trace-py/.riot/requirements/de38314.txt
similarity index 100%
rename from .riot/requirements/de38314.txt
rename to dd-trace-py/.riot/requirements/de38314.txt
diff --git a/.riot/requirements/de7d3ce.txt b/dd-trace-py/.riot/requirements/de7d3ce.txt
similarity index 100%
rename from .riot/requirements/de7d3ce.txt
rename to dd-trace-py/.riot/requirements/de7d3ce.txt
diff --git a/.riot/requirements/dedea98.txt b/dd-trace-py/.riot/requirements/dedea98.txt
similarity index 100%
rename from .riot/requirements/dedea98.txt
rename to dd-trace-py/.riot/requirements/dedea98.txt
diff --git a/.riot/requirements/deec456.txt b/dd-trace-py/.riot/requirements/deec456.txt
similarity index 100%
rename from .riot/requirements/deec456.txt
rename to dd-trace-py/.riot/requirements/deec456.txt
diff --git a/.riot/requirements/df250b9.txt b/dd-trace-py/.riot/requirements/df250b9.txt
similarity index 100%
rename from .riot/requirements/df250b9.txt
rename to dd-trace-py/.riot/requirements/df250b9.txt
diff --git a/.riot/requirements/df5c335.txt b/dd-trace-py/.riot/requirements/df5c335.txt
similarity index 100%
rename from .riot/requirements/df5c335.txt
rename to dd-trace-py/.riot/requirements/df5c335.txt
diff --git a/.riot/requirements/df7a937.txt b/dd-trace-py/.riot/requirements/df7a937.txt
similarity index 100%
rename from .riot/requirements/df7a937.txt
rename to dd-trace-py/.riot/requirements/df7a937.txt
diff --git a/.riot/requirements/e02e81a.txt b/dd-trace-py/.riot/requirements/e02e81a.txt
similarity index 100%
rename from .riot/requirements/e02e81a.txt
rename to dd-trace-py/.riot/requirements/e02e81a.txt
diff --git a/.riot/requirements/e06abee.txt b/dd-trace-py/.riot/requirements/e06abee.txt
similarity index 100%
rename from .riot/requirements/e06abee.txt
rename to dd-trace-py/.riot/requirements/e06abee.txt
diff --git a/.riot/requirements/e09a90b.txt b/dd-trace-py/.riot/requirements/e09a90b.txt
similarity index 100%
rename from .riot/requirements/e09a90b.txt
rename to dd-trace-py/.riot/requirements/e09a90b.txt
diff --git a/.riot/requirements/e0d72bf.txt b/dd-trace-py/.riot/requirements/e0d72bf.txt
similarity index 100%
rename from .riot/requirements/e0d72bf.txt
rename to dd-trace-py/.riot/requirements/e0d72bf.txt
diff --git a/.riot/requirements/e1220d6.txt b/dd-trace-py/.riot/requirements/e1220d6.txt
similarity index 100%
rename from .riot/requirements/e1220d6.txt
rename to dd-trace-py/.riot/requirements/e1220d6.txt
diff --git a/.riot/requirements/e126ba4.txt b/dd-trace-py/.riot/requirements/e126ba4.txt
similarity index 100%
rename from .riot/requirements/e126ba4.txt
rename to dd-trace-py/.riot/requirements/e126ba4.txt
diff --git a/.riot/requirements/e13bf52.txt b/dd-trace-py/.riot/requirements/e13bf52.txt
similarity index 100%
rename from .riot/requirements/e13bf52.txt
rename to dd-trace-py/.riot/requirements/e13bf52.txt
diff --git a/.riot/requirements/e1e96b2.txt b/dd-trace-py/.riot/requirements/e1e96b2.txt
similarity index 100%
rename from .riot/requirements/e1e96b2.txt
rename to dd-trace-py/.riot/requirements/e1e96b2.txt
diff --git a/.riot/requirements/e1faa28.txt b/dd-trace-py/.riot/requirements/e1faa28.txt
similarity index 100%
rename from .riot/requirements/e1faa28.txt
rename to dd-trace-py/.riot/requirements/e1faa28.txt
diff --git a/.riot/requirements/e20152c.txt b/dd-trace-py/.riot/requirements/e20152c.txt
similarity index 100%
rename from .riot/requirements/e20152c.txt
rename to dd-trace-py/.riot/requirements/e20152c.txt
diff --git a/.riot/requirements/e26d820.txt b/dd-trace-py/.riot/requirements/e26d820.txt
similarity index 100%
rename from .riot/requirements/e26d820.txt
rename to dd-trace-py/.riot/requirements/e26d820.txt
diff --git a/.riot/requirements/e2ae847.txt b/dd-trace-py/.riot/requirements/e2ae847.txt
similarity index 100%
rename from .riot/requirements/e2ae847.txt
rename to dd-trace-py/.riot/requirements/e2ae847.txt
diff --git a/.riot/requirements/e2bf559.txt b/dd-trace-py/.riot/requirements/e2bf559.txt
similarity index 100%
rename from .riot/requirements/e2bf559.txt
rename to dd-trace-py/.riot/requirements/e2bf559.txt
diff --git a/.riot/requirements/e2d2cc8.txt b/dd-trace-py/.riot/requirements/e2d2cc8.txt
similarity index 100%
rename from .riot/requirements/e2d2cc8.txt
rename to dd-trace-py/.riot/requirements/e2d2cc8.txt
diff --git a/.riot/requirements/e33edda.txt b/dd-trace-py/.riot/requirements/e33edda.txt
similarity index 100%
rename from .riot/requirements/e33edda.txt
rename to dd-trace-py/.riot/requirements/e33edda.txt
diff --git a/.riot/requirements/e385023.txt b/dd-trace-py/.riot/requirements/e385023.txt
similarity index 100%
rename from .riot/requirements/e385023.txt
rename to dd-trace-py/.riot/requirements/e385023.txt
diff --git a/.riot/requirements/e4226c8.txt b/dd-trace-py/.riot/requirements/e4226c8.txt
similarity index 100%
rename from .riot/requirements/e4226c8.txt
rename to dd-trace-py/.riot/requirements/e4226c8.txt
diff --git a/.riot/requirements/e45d6bf.txt b/dd-trace-py/.riot/requirements/e45d6bf.txt
similarity index 100%
rename from .riot/requirements/e45d6bf.txt
rename to dd-trace-py/.riot/requirements/e45d6bf.txt
diff --git a/.riot/requirements/e4781b7.txt b/dd-trace-py/.riot/requirements/e4781b7.txt
similarity index 100%
rename from .riot/requirements/e4781b7.txt
rename to dd-trace-py/.riot/requirements/e4781b7.txt
diff --git a/.riot/requirements/e580d94.txt b/dd-trace-py/.riot/requirements/e580d94.txt
similarity index 100%
rename from .riot/requirements/e580d94.txt
rename to dd-trace-py/.riot/requirements/e580d94.txt
diff --git a/.riot/requirements/e5a3994.txt b/dd-trace-py/.riot/requirements/e5a3994.txt
similarity index 100%
rename from .riot/requirements/e5a3994.txt
rename to dd-trace-py/.riot/requirements/e5a3994.txt
diff --git a/.riot/requirements/e610a94.txt b/dd-trace-py/.riot/requirements/e610a94.txt
similarity index 100%
rename from .riot/requirements/e610a94.txt
rename to dd-trace-py/.riot/requirements/e610a94.txt
diff --git a/.riot/requirements/e660d69.txt b/dd-trace-py/.riot/requirements/e660d69.txt
similarity index 100%
rename from .riot/requirements/e660d69.txt
rename to dd-trace-py/.riot/requirements/e660d69.txt
diff --git a/.riot/requirements/e6872f6.txt b/dd-trace-py/.riot/requirements/e6872f6.txt
similarity index 100%
rename from .riot/requirements/e6872f6.txt
rename to dd-trace-py/.riot/requirements/e6872f6.txt
diff --git a/.riot/requirements/e6e4cca.txt b/dd-trace-py/.riot/requirements/e6e4cca.txt
similarity index 100%
rename from .riot/requirements/e6e4cca.txt
rename to dd-trace-py/.riot/requirements/e6e4cca.txt
diff --git a/.riot/requirements/e712306.txt b/dd-trace-py/.riot/requirements/e712306.txt
similarity index 100%
rename from .riot/requirements/e712306.txt
rename to dd-trace-py/.riot/requirements/e712306.txt
diff --git a/.riot/requirements/e7249f1.txt b/dd-trace-py/.riot/requirements/e7249f1.txt
similarity index 100%
rename from .riot/requirements/e7249f1.txt
rename to dd-trace-py/.riot/requirements/e7249f1.txt
diff --git a/.riot/requirements/e73e989.txt b/dd-trace-py/.riot/requirements/e73e989.txt
similarity index 100%
rename from .riot/requirements/e73e989.txt
rename to dd-trace-py/.riot/requirements/e73e989.txt
diff --git a/.riot/requirements/e75aea6.txt b/dd-trace-py/.riot/requirements/e75aea6.txt
similarity index 100%
rename from .riot/requirements/e75aea6.txt
rename to dd-trace-py/.riot/requirements/e75aea6.txt
diff --git a/.riot/requirements/e776347.txt b/dd-trace-py/.riot/requirements/e776347.txt
similarity index 100%
rename from .riot/requirements/e776347.txt
rename to dd-trace-py/.riot/requirements/e776347.txt
diff --git a/.riot/requirements/e778ce8.txt b/dd-trace-py/.riot/requirements/e778ce8.txt
similarity index 100%
rename from .riot/requirements/e778ce8.txt
rename to dd-trace-py/.riot/requirements/e778ce8.txt
diff --git a/.riot/requirements/e82070b.txt b/dd-trace-py/.riot/requirements/e82070b.txt
similarity index 100%
rename from .riot/requirements/e82070b.txt
rename to dd-trace-py/.riot/requirements/e82070b.txt
diff --git a/.riot/requirements/e829ee8.txt b/dd-trace-py/.riot/requirements/e829ee8.txt
similarity index 100%
rename from .riot/requirements/e829ee8.txt
rename to dd-trace-py/.riot/requirements/e829ee8.txt
diff --git a/.riot/requirements/e86781c.txt b/dd-trace-py/.riot/requirements/e86781c.txt
similarity index 100%
rename from .riot/requirements/e86781c.txt
rename to dd-trace-py/.riot/requirements/e86781c.txt
diff --git a/.riot/requirements/e895ba1.txt b/dd-trace-py/.riot/requirements/e895ba1.txt
similarity index 100%
rename from .riot/requirements/e895ba1.txt
rename to dd-trace-py/.riot/requirements/e895ba1.txt
diff --git a/.riot/requirements/e8d8aa5.txt b/dd-trace-py/.riot/requirements/e8d8aa5.txt
similarity index 100%
rename from .riot/requirements/e8d8aa5.txt
rename to dd-trace-py/.riot/requirements/e8d8aa5.txt
diff --git a/.riot/requirements/e8dec3f.txt b/dd-trace-py/.riot/requirements/e8dec3f.txt
similarity index 100%
rename from .riot/requirements/e8dec3f.txt
rename to dd-trace-py/.riot/requirements/e8dec3f.txt
diff --git a/.riot/requirements/e8fbd30.txt b/dd-trace-py/.riot/requirements/e8fbd30.txt
similarity index 100%
rename from .riot/requirements/e8fbd30.txt
rename to dd-trace-py/.riot/requirements/e8fbd30.txt
diff --git a/.riot/requirements/e98519b.txt b/dd-trace-py/.riot/requirements/e98519b.txt
similarity index 100%
rename from .riot/requirements/e98519b.txt
rename to dd-trace-py/.riot/requirements/e98519b.txt
diff --git a/.riot/requirements/e98b1fe.txt b/dd-trace-py/.riot/requirements/e98b1fe.txt
similarity index 100%
rename from .riot/requirements/e98b1fe.txt
rename to dd-trace-py/.riot/requirements/e98b1fe.txt
diff --git a/.riot/requirements/e9955b3.txt b/dd-trace-py/.riot/requirements/e9955b3.txt
similarity index 100%
rename from .riot/requirements/e9955b3.txt
rename to dd-trace-py/.riot/requirements/e9955b3.txt
diff --git a/.riot/requirements/e9aeb44.txt b/dd-trace-py/.riot/requirements/e9aeb44.txt
similarity index 100%
rename from .riot/requirements/e9aeb44.txt
rename to dd-trace-py/.riot/requirements/e9aeb44.txt
diff --git a/.riot/requirements/e9c65d0.txt b/dd-trace-py/.riot/requirements/e9c65d0.txt
similarity index 100%
rename from .riot/requirements/e9c65d0.txt
rename to dd-trace-py/.riot/requirements/e9c65d0.txt
diff --git a/.riot/requirements/e9e35ef.txt b/dd-trace-py/.riot/requirements/e9e35ef.txt
similarity index 100%
rename from .riot/requirements/e9e35ef.txt
rename to dd-trace-py/.riot/requirements/e9e35ef.txt
diff --git a/.riot/requirements/ea14309.txt b/dd-trace-py/.riot/requirements/ea14309.txt
similarity index 100%
rename from .riot/requirements/ea14309.txt
rename to dd-trace-py/.riot/requirements/ea14309.txt
diff --git a/.riot/requirements/eaeea2d.txt b/dd-trace-py/.riot/requirements/eaeea2d.txt
similarity index 100%
rename from .riot/requirements/eaeea2d.txt
rename to dd-trace-py/.riot/requirements/eaeea2d.txt
diff --git a/.riot/requirements/eb07ebb.txt b/dd-trace-py/.riot/requirements/eb07ebb.txt
similarity index 100%
rename from .riot/requirements/eb07ebb.txt
rename to dd-trace-py/.riot/requirements/eb07ebb.txt
diff --git a/.riot/requirements/eb2f2a5.txt b/dd-trace-py/.riot/requirements/eb2f2a5.txt
similarity index 100%
rename from .riot/requirements/eb2f2a5.txt
rename to dd-trace-py/.riot/requirements/eb2f2a5.txt
diff --git a/.riot/requirements/eb6e579.txt b/dd-trace-py/.riot/requirements/eb6e579.txt
similarity index 100%
rename from .riot/requirements/eb6e579.txt
rename to dd-trace-py/.riot/requirements/eb6e579.txt
diff --git a/.riot/requirements/eb94001.txt b/dd-trace-py/.riot/requirements/eb94001.txt
similarity index 100%
rename from .riot/requirements/eb94001.txt
rename to dd-trace-py/.riot/requirements/eb94001.txt
diff --git a/.riot/requirements/ebf73f9.txt b/dd-trace-py/.riot/requirements/ebf73f9.txt
similarity index 100%
rename from .riot/requirements/ebf73f9.txt
rename to dd-trace-py/.riot/requirements/ebf73f9.txt
diff --git a/.riot/requirements/ec11642.txt b/dd-trace-py/.riot/requirements/ec11642.txt
similarity index 100%
rename from .riot/requirements/ec11642.txt
rename to dd-trace-py/.riot/requirements/ec11642.txt
diff --git a/.riot/requirements/ec404a0.txt b/dd-trace-py/.riot/requirements/ec404a0.txt
similarity index 100%
rename from .riot/requirements/ec404a0.txt
rename to dd-trace-py/.riot/requirements/ec404a0.txt
diff --git a/.riot/requirements/ec6fa8e.txt b/dd-trace-py/.riot/requirements/ec6fa8e.txt
similarity index 100%
rename from .riot/requirements/ec6fa8e.txt
rename to dd-trace-py/.riot/requirements/ec6fa8e.txt
diff --git a/.riot/requirements/ec8c580.txt b/dd-trace-py/.riot/requirements/ec8c580.txt
similarity index 100%
rename from .riot/requirements/ec8c580.txt
rename to dd-trace-py/.riot/requirements/ec8c580.txt
diff --git a/.riot/requirements/ed437ab.txt b/dd-trace-py/.riot/requirements/ed437ab.txt
similarity index 100%
rename from .riot/requirements/ed437ab.txt
rename to dd-trace-py/.riot/requirements/ed437ab.txt
diff --git a/.riot/requirements/ed78a8f.txt b/dd-trace-py/.riot/requirements/ed78a8f.txt
similarity index 100%
rename from .riot/requirements/ed78a8f.txt
rename to dd-trace-py/.riot/requirements/ed78a8f.txt
diff --git a/.riot/requirements/ee0b75a.txt b/dd-trace-py/.riot/requirements/ee0b75a.txt
similarity index 100%
rename from .riot/requirements/ee0b75a.txt
rename to dd-trace-py/.riot/requirements/ee0b75a.txt
diff --git a/.riot/requirements/ee48b16.txt b/dd-trace-py/.riot/requirements/ee48b16.txt
similarity index 100%
rename from .riot/requirements/ee48b16.txt
rename to dd-trace-py/.riot/requirements/ee48b16.txt
diff --git a/.riot/requirements/ee80c7e.txt b/dd-trace-py/.riot/requirements/ee80c7e.txt
similarity index 100%
rename from .riot/requirements/ee80c7e.txt
rename to dd-trace-py/.riot/requirements/ee80c7e.txt
diff --git a/.riot/requirements/eeaed0d.txt b/dd-trace-py/.riot/requirements/eeaed0d.txt
similarity index 100%
rename from .riot/requirements/eeaed0d.txt
rename to dd-trace-py/.riot/requirements/eeaed0d.txt
diff --git a/.riot/requirements/eeea2eb.txt b/dd-trace-py/.riot/requirements/eeea2eb.txt
similarity index 100%
rename from .riot/requirements/eeea2eb.txt
rename to dd-trace-py/.riot/requirements/eeea2eb.txt
diff --git a/.riot/requirements/eef30c1.txt b/dd-trace-py/.riot/requirements/eef30c1.txt
similarity index 100%
rename from .riot/requirements/eef30c1.txt
rename to dd-trace-py/.riot/requirements/eef30c1.txt
diff --git a/.riot/requirements/ef257ac.txt b/dd-trace-py/.riot/requirements/ef257ac.txt
similarity index 100%
rename from .riot/requirements/ef257ac.txt
rename to dd-trace-py/.riot/requirements/ef257ac.txt
diff --git a/.riot/requirements/efbceb1.txt b/dd-trace-py/.riot/requirements/efbceb1.txt
similarity index 100%
rename from .riot/requirements/efbceb1.txt
rename to dd-trace-py/.riot/requirements/efbceb1.txt
diff --git a/.riot/requirements/efbfad6.txt b/dd-trace-py/.riot/requirements/efbfad6.txt
similarity index 100%
rename from .riot/requirements/efbfad6.txt
rename to dd-trace-py/.riot/requirements/efbfad6.txt
diff --git a/.riot/requirements/f027911.txt b/dd-trace-py/.riot/requirements/f027911.txt
similarity index 100%
rename from .riot/requirements/f027911.txt
rename to dd-trace-py/.riot/requirements/f027911.txt
diff --git a/.riot/requirements/f05659a.txt b/dd-trace-py/.riot/requirements/f05659a.txt
similarity index 100%
rename from .riot/requirements/f05659a.txt
rename to dd-trace-py/.riot/requirements/f05659a.txt
diff --git a/.riot/requirements/f0a9034.txt b/dd-trace-py/.riot/requirements/f0a9034.txt
similarity index 100%
rename from .riot/requirements/f0a9034.txt
rename to dd-trace-py/.riot/requirements/f0a9034.txt
diff --git a/.riot/requirements/f151048.txt b/dd-trace-py/.riot/requirements/f151048.txt
similarity index 100%
rename from .riot/requirements/f151048.txt
rename to dd-trace-py/.riot/requirements/f151048.txt
diff --git a/.riot/requirements/f15bee1.txt b/dd-trace-py/.riot/requirements/f15bee1.txt
similarity index 100%
rename from .riot/requirements/f15bee1.txt
rename to dd-trace-py/.riot/requirements/f15bee1.txt
diff --git a/.riot/requirements/f169434.txt b/dd-trace-py/.riot/requirements/f169434.txt
similarity index 100%
rename from .riot/requirements/f169434.txt
rename to dd-trace-py/.riot/requirements/f169434.txt
diff --git a/.riot/requirements/f1a0a59.txt b/dd-trace-py/.riot/requirements/f1a0a59.txt
similarity index 100%
rename from .riot/requirements/f1a0a59.txt
rename to dd-trace-py/.riot/requirements/f1a0a59.txt
diff --git a/.riot/requirements/f1c0963.txt b/dd-trace-py/.riot/requirements/f1c0963.txt
similarity index 100%
rename from .riot/requirements/f1c0963.txt
rename to dd-trace-py/.riot/requirements/f1c0963.txt
diff --git a/.riot/requirements/f20c964.txt b/dd-trace-py/.riot/requirements/f20c964.txt
similarity index 100%
rename from .riot/requirements/f20c964.txt
rename to dd-trace-py/.riot/requirements/f20c964.txt
diff --git a/.riot/requirements/f269fac.txt b/dd-trace-py/.riot/requirements/f269fac.txt
similarity index 100%
rename from .riot/requirements/f269fac.txt
rename to dd-trace-py/.riot/requirements/f269fac.txt
diff --git a/.riot/requirements/f2d92e1.txt b/dd-trace-py/.riot/requirements/f2d92e1.txt
similarity index 100%
rename from .riot/requirements/f2d92e1.txt
rename to dd-trace-py/.riot/requirements/f2d92e1.txt
diff --git a/.riot/requirements/f30334b.txt b/dd-trace-py/.riot/requirements/f30334b.txt
similarity index 100%
rename from .riot/requirements/f30334b.txt
rename to dd-trace-py/.riot/requirements/f30334b.txt
diff --git a/.riot/requirements/f32655d.txt b/dd-trace-py/.riot/requirements/f32655d.txt
similarity index 100%
rename from .riot/requirements/f32655d.txt
rename to dd-trace-py/.riot/requirements/f32655d.txt
diff --git a/.riot/requirements/f339e99.txt b/dd-trace-py/.riot/requirements/f339e99.txt
similarity index 100%
rename from .riot/requirements/f339e99.txt
rename to dd-trace-py/.riot/requirements/f339e99.txt
diff --git a/.riot/requirements/f33b994.txt b/dd-trace-py/.riot/requirements/f33b994.txt
similarity index 100%
rename from .riot/requirements/f33b994.txt
rename to dd-trace-py/.riot/requirements/f33b994.txt
diff --git a/.riot/requirements/f343cca.txt b/dd-trace-py/.riot/requirements/f343cca.txt
similarity index 100%
rename from .riot/requirements/f343cca.txt
rename to dd-trace-py/.riot/requirements/f343cca.txt
diff --git a/.riot/requirements/f3bb079.txt b/dd-trace-py/.riot/requirements/f3bb079.txt
similarity index 100%
rename from .riot/requirements/f3bb079.txt
rename to dd-trace-py/.riot/requirements/f3bb079.txt
diff --git a/.riot/requirements/f3bee4b.txt b/dd-trace-py/.riot/requirements/f3bee4b.txt
similarity index 100%
rename from .riot/requirements/f3bee4b.txt
rename to dd-trace-py/.riot/requirements/f3bee4b.txt
diff --git a/.riot/requirements/f3fb520.txt b/dd-trace-py/.riot/requirements/f3fb520.txt
similarity index 100%
rename from .riot/requirements/f3fb520.txt
rename to dd-trace-py/.riot/requirements/f3fb520.txt
diff --git a/.riot/requirements/f3fdfae.txt b/dd-trace-py/.riot/requirements/f3fdfae.txt
similarity index 100%
rename from .riot/requirements/f3fdfae.txt
rename to dd-trace-py/.riot/requirements/f3fdfae.txt
diff --git a/.riot/requirements/f424ead.txt b/dd-trace-py/.riot/requirements/f424ead.txt
similarity index 100%
rename from .riot/requirements/f424ead.txt
rename to dd-trace-py/.riot/requirements/f424ead.txt
diff --git a/.riot/requirements/f444071.txt b/dd-trace-py/.riot/requirements/f444071.txt
similarity index 100%
rename from .riot/requirements/f444071.txt
rename to dd-trace-py/.riot/requirements/f444071.txt
diff --git a/.riot/requirements/f46a802.txt b/dd-trace-py/.riot/requirements/f46a802.txt
similarity index 100%
rename from .riot/requirements/f46a802.txt
rename to dd-trace-py/.riot/requirements/f46a802.txt
diff --git a/.riot/requirements/f477c55.txt b/dd-trace-py/.riot/requirements/f477c55.txt
similarity index 100%
rename from .riot/requirements/f477c55.txt
rename to dd-trace-py/.riot/requirements/f477c55.txt
diff --git a/.riot/requirements/f4e4b12.txt b/dd-trace-py/.riot/requirements/f4e4b12.txt
similarity index 100%
rename from .riot/requirements/f4e4b12.txt
rename to dd-trace-py/.riot/requirements/f4e4b12.txt
diff --git a/.riot/requirements/f4ec092.txt b/dd-trace-py/.riot/requirements/f4ec092.txt
similarity index 100%
rename from .riot/requirements/f4ec092.txt
rename to dd-trace-py/.riot/requirements/f4ec092.txt
diff --git a/.riot/requirements/f5256ad.txt b/dd-trace-py/.riot/requirements/f5256ad.txt
similarity index 100%
rename from .riot/requirements/f5256ad.txt
rename to dd-trace-py/.riot/requirements/f5256ad.txt
diff --git a/.riot/requirements/f5ecf02.txt b/dd-trace-py/.riot/requirements/f5ecf02.txt
similarity index 100%
rename from .riot/requirements/f5ecf02.txt
rename to dd-trace-py/.riot/requirements/f5ecf02.txt
diff --git a/.riot/requirements/f63a4f0.txt b/dd-trace-py/.riot/requirements/f63a4f0.txt
similarity index 100%
rename from .riot/requirements/f63a4f0.txt
rename to dd-trace-py/.riot/requirements/f63a4f0.txt
diff --git a/.riot/requirements/f65661f.txt b/dd-trace-py/.riot/requirements/f65661f.txt
similarity index 100%
rename from .riot/requirements/f65661f.txt
rename to dd-trace-py/.riot/requirements/f65661f.txt
diff --git a/.riot/requirements/f66dc0b.txt b/dd-trace-py/.riot/requirements/f66dc0b.txt
similarity index 100%
rename from .riot/requirements/f66dc0b.txt
rename to dd-trace-py/.riot/requirements/f66dc0b.txt
diff --git a/.riot/requirements/f69af7e.txt b/dd-trace-py/.riot/requirements/f69af7e.txt
similarity index 100%
rename from .riot/requirements/f69af7e.txt
rename to dd-trace-py/.riot/requirements/f69af7e.txt
diff --git a/.riot/requirements/f6b5a5d.txt b/dd-trace-py/.riot/requirements/f6b5a5d.txt
similarity index 100%
rename from .riot/requirements/f6b5a5d.txt
rename to dd-trace-py/.riot/requirements/f6b5a5d.txt
diff --git a/.riot/requirements/f6bd23d.txt b/dd-trace-py/.riot/requirements/f6bd23d.txt
similarity index 100%
rename from .riot/requirements/f6bd23d.txt
rename to dd-trace-py/.riot/requirements/f6bd23d.txt
diff --git a/.riot/requirements/f6ccb86.txt b/dd-trace-py/.riot/requirements/f6ccb86.txt
similarity index 100%
rename from .riot/requirements/f6ccb86.txt
rename to dd-trace-py/.riot/requirements/f6ccb86.txt
diff --git a/.riot/requirements/f6f0f28.txt b/dd-trace-py/.riot/requirements/f6f0f28.txt
similarity index 100%
rename from .riot/requirements/f6f0f28.txt
rename to dd-trace-py/.riot/requirements/f6f0f28.txt
diff --git a/.riot/requirements/f81bf39.txt b/dd-trace-py/.riot/requirements/f81bf39.txt
similarity index 100%
rename from .riot/requirements/f81bf39.txt
rename to dd-trace-py/.riot/requirements/f81bf39.txt
diff --git a/.riot/requirements/f850b22.txt b/dd-trace-py/.riot/requirements/f850b22.txt
similarity index 100%
rename from .riot/requirements/f850b22.txt
rename to dd-trace-py/.riot/requirements/f850b22.txt
diff --git a/.riot/requirements/f87779b.txt b/dd-trace-py/.riot/requirements/f87779b.txt
similarity index 100%
rename from .riot/requirements/f87779b.txt
rename to dd-trace-py/.riot/requirements/f87779b.txt
diff --git a/.riot/requirements/f8ee464.txt b/dd-trace-py/.riot/requirements/f8ee464.txt
similarity index 100%
rename from .riot/requirements/f8ee464.txt
rename to dd-trace-py/.riot/requirements/f8ee464.txt
diff --git a/.riot/requirements/f8f807c.txt b/dd-trace-py/.riot/requirements/f8f807c.txt
similarity index 100%
rename from .riot/requirements/f8f807c.txt
rename to dd-trace-py/.riot/requirements/f8f807c.txt
diff --git a/.riot/requirements/f912787.txt b/dd-trace-py/.riot/requirements/f912787.txt
similarity index 100%
rename from .riot/requirements/f912787.txt
rename to dd-trace-py/.riot/requirements/f912787.txt
diff --git a/.riot/requirements/f95117e.txt b/dd-trace-py/.riot/requirements/f95117e.txt
similarity index 100%
rename from .riot/requirements/f95117e.txt
rename to dd-trace-py/.riot/requirements/f95117e.txt
diff --git a/.riot/requirements/f957816.txt b/dd-trace-py/.riot/requirements/f957816.txt
similarity index 100%
rename from .riot/requirements/f957816.txt
rename to dd-trace-py/.riot/requirements/f957816.txt
diff --git a/.riot/requirements/f98475b.txt b/dd-trace-py/.riot/requirements/f98475b.txt
similarity index 100%
rename from .riot/requirements/f98475b.txt
rename to dd-trace-py/.riot/requirements/f98475b.txt
diff --git a/.riot/requirements/f9ab665.txt b/dd-trace-py/.riot/requirements/f9ab665.txt
similarity index 100%
rename from .riot/requirements/f9ab665.txt
rename to dd-trace-py/.riot/requirements/f9ab665.txt
diff --git a/.riot/requirements/f9c2ba1.txt b/dd-trace-py/.riot/requirements/f9c2ba1.txt
similarity index 100%
rename from .riot/requirements/f9c2ba1.txt
rename to dd-trace-py/.riot/requirements/f9c2ba1.txt
diff --git a/.riot/requirements/f9d7735.txt b/dd-trace-py/.riot/requirements/f9d7735.txt
similarity index 100%
rename from .riot/requirements/f9d7735.txt
rename to dd-trace-py/.riot/requirements/f9d7735.txt
diff --git a/.riot/requirements/fa62093.txt b/dd-trace-py/.riot/requirements/fa62093.txt
similarity index 100%
rename from .riot/requirements/fa62093.txt
rename to dd-trace-py/.riot/requirements/fa62093.txt
diff --git a/.riot/requirements/fa9267f.txt b/dd-trace-py/.riot/requirements/fa9267f.txt
similarity index 100%
rename from .riot/requirements/fa9267f.txt
rename to dd-trace-py/.riot/requirements/fa9267f.txt
diff --git a/.riot/requirements/fa9fe1c.txt b/dd-trace-py/.riot/requirements/fa9fe1c.txt
similarity index 100%
rename from .riot/requirements/fa9fe1c.txt
rename to dd-trace-py/.riot/requirements/fa9fe1c.txt
diff --git a/.riot/requirements/faa42e9.txt b/dd-trace-py/.riot/requirements/faa42e9.txt
similarity index 100%
rename from .riot/requirements/faa42e9.txt
rename to dd-trace-py/.riot/requirements/faa42e9.txt
diff --git a/.riot/requirements/fae216f.txt b/dd-trace-py/.riot/requirements/fae216f.txt
similarity index 100%
rename from .riot/requirements/fae216f.txt
rename to dd-trace-py/.riot/requirements/fae216f.txt
diff --git a/.riot/requirements/fae918b.txt b/dd-trace-py/.riot/requirements/fae918b.txt
similarity index 100%
rename from .riot/requirements/fae918b.txt
rename to dd-trace-py/.riot/requirements/fae918b.txt
diff --git a/.riot/requirements/fb50881.txt b/dd-trace-py/.riot/requirements/fb50881.txt
similarity index 100%
rename from .riot/requirements/fb50881.txt
rename to dd-trace-py/.riot/requirements/fb50881.txt
diff --git a/.riot/requirements/fb8986c.txt b/dd-trace-py/.riot/requirements/fb8986c.txt
similarity index 100%
rename from .riot/requirements/fb8986c.txt
rename to dd-trace-py/.riot/requirements/fb8986c.txt
diff --git a/.riot/requirements/fba51d6.txt b/dd-trace-py/.riot/requirements/fba51d6.txt
similarity index 100%
rename from .riot/requirements/fba51d6.txt
rename to dd-trace-py/.riot/requirements/fba51d6.txt
diff --git a/.riot/requirements/fbcf227.txt b/dd-trace-py/.riot/requirements/fbcf227.txt
similarity index 100%
rename from .riot/requirements/fbcf227.txt
rename to dd-trace-py/.riot/requirements/fbcf227.txt
diff --git a/.riot/requirements/fbd9c5b.txt b/dd-trace-py/.riot/requirements/fbd9c5b.txt
similarity index 100%
rename from .riot/requirements/fbd9c5b.txt
rename to dd-trace-py/.riot/requirements/fbd9c5b.txt
diff --git a/.riot/requirements/fbe6b3d.txt b/dd-trace-py/.riot/requirements/fbe6b3d.txt
similarity index 100%
rename from .riot/requirements/fbe6b3d.txt
rename to dd-trace-py/.riot/requirements/fbe6b3d.txt
diff --git a/.riot/requirements/fc173b8.txt b/dd-trace-py/.riot/requirements/fc173b8.txt
similarity index 100%
rename from .riot/requirements/fc173b8.txt
rename to dd-trace-py/.riot/requirements/fc173b8.txt
diff --git a/.riot/requirements/fc54849.txt b/dd-trace-py/.riot/requirements/fc54849.txt
similarity index 100%
rename from .riot/requirements/fc54849.txt
rename to dd-trace-py/.riot/requirements/fc54849.txt
diff --git a/.riot/requirements/fc72580.txt b/dd-trace-py/.riot/requirements/fc72580.txt
similarity index 100%
rename from .riot/requirements/fc72580.txt
rename to dd-trace-py/.riot/requirements/fc72580.txt
diff --git a/.riot/requirements/fc7a41b.txt b/dd-trace-py/.riot/requirements/fc7a41b.txt
similarity index 100%
rename from .riot/requirements/fc7a41b.txt
rename to dd-trace-py/.riot/requirements/fc7a41b.txt
diff --git a/.riot/requirements/fce5178.txt b/dd-trace-py/.riot/requirements/fce5178.txt
similarity index 100%
rename from .riot/requirements/fce5178.txt
rename to dd-trace-py/.riot/requirements/fce5178.txt
diff --git a/.riot/requirements/fcf2285.txt b/dd-trace-py/.riot/requirements/fcf2285.txt
similarity index 100%
rename from .riot/requirements/fcf2285.txt
rename to dd-trace-py/.riot/requirements/fcf2285.txt
diff --git a/.riot/requirements/fcfaa6e.txt b/dd-trace-py/.riot/requirements/fcfaa6e.txt
similarity index 100%
rename from .riot/requirements/fcfaa6e.txt
rename to dd-trace-py/.riot/requirements/fcfaa6e.txt
diff --git a/.riot/requirements/fd57e36.txt b/dd-trace-py/.riot/requirements/fd57e36.txt
similarity index 100%
rename from .riot/requirements/fd57e36.txt
rename to dd-trace-py/.riot/requirements/fd57e36.txt
diff --git a/.riot/requirements/fd98f16.txt b/dd-trace-py/.riot/requirements/fd98f16.txt
similarity index 100%
rename from .riot/requirements/fd98f16.txt
rename to dd-trace-py/.riot/requirements/fd98f16.txt
diff --git a/.riot/requirements/fdaebf2.txt b/dd-trace-py/.riot/requirements/fdaebf2.txt
similarity index 100%
rename from .riot/requirements/fdaebf2.txt
rename to dd-trace-py/.riot/requirements/fdaebf2.txt
diff --git a/.riot/requirements/fe1d595.txt b/dd-trace-py/.riot/requirements/fe1d595.txt
similarity index 100%
rename from .riot/requirements/fe1d595.txt
rename to dd-trace-py/.riot/requirements/fe1d595.txt
diff --git a/.riot/requirements/fe43c7c.txt b/dd-trace-py/.riot/requirements/fe43c7c.txt
similarity index 100%
rename from .riot/requirements/fe43c7c.txt
rename to dd-trace-py/.riot/requirements/fe43c7c.txt
diff --git a/.riot/requirements/fe50ba7.txt b/dd-trace-py/.riot/requirements/fe50ba7.txt
similarity index 100%
rename from .riot/requirements/fe50ba7.txt
rename to dd-trace-py/.riot/requirements/fe50ba7.txt
diff --git a/.riot/requirements/ff873f4.txt b/dd-trace-py/.riot/requirements/ff873f4.txt
similarity index 100%
rename from .riot/requirements/ff873f4.txt
rename to dd-trace-py/.riot/requirements/ff873f4.txt
diff --git a/.riot/requirements/ffa69c7.txt b/dd-trace-py/.riot/requirements/ffa69c7.txt
similarity index 100%
rename from .riot/requirements/ffa69c7.txt
rename to dd-trace-py/.riot/requirements/ffa69c7.txt
diff --git a/.riot/requirements/ffc7e44.txt b/dd-trace-py/.riot/requirements/ffc7e44.txt
similarity index 100%
rename from .riot/requirements/ffc7e44.txt
rename to dd-trace-py/.riot/requirements/ffc7e44.txt
diff --git a/.riot/requirements/ffee599.txt b/dd-trace-py/.riot/requirements/ffee599.txt
similarity index 100%
rename from .riot/requirements/ffee599.txt
rename to dd-trace-py/.riot/requirements/ffee599.txt
diff --git a/.sg/rules/core-dispatch-with-results.yml b/dd-trace-py/.sg/rules/core-dispatch-with-results.yml
similarity index 100%
rename from .sg/rules/core-dispatch-with-results.yml
rename to dd-trace-py/.sg/rules/core-dispatch-with-results.yml
diff --git a/.sg/rules/core-raising-dispatch.yml b/dd-trace-py/.sg/rules/core-raising-dispatch.yml
similarity index 100%
rename from .sg/rules/core-raising-dispatch.yml
rename to dd-trace-py/.sg/rules/core-raising-dispatch.yml
diff --git a/.sg/rules/ddtrace-version-import.yml b/dd-trace-py/.sg/rules/ddtrace-version-import.yml
similarity index 100%
rename from .sg/rules/ddtrace-version-import.yml
rename to dd-trace-py/.sg/rules/ddtrace-version-import.yml
diff --git a/.sg/rules/fork-without-subprocess-marker.yml b/dd-trace-py/.sg/rules/fork-without-subprocess-marker.yml
similarity index 100%
rename from .sg/rules/fork-without-subprocess-marker.yml
rename to dd-trace-py/.sg/rules/fork-without-subprocess-marker.yml
diff --git a/.sg/rules/no-unittest-test-classes.yml b/dd-trace-py/.sg/rules/no-unittest-test-classes.yml
similarity index 100%
rename from .sg/rules/no-unittest-test-classes.yml
rename to dd-trace-py/.sg/rules/no-unittest-test-classes.yml
diff --git a/.sg/rules/os-environ-fix-access.yml b/dd-trace-py/.sg/rules/os-environ-fix-access.yml
similarity index 100%
rename from .sg/rules/os-environ-fix-access.yml
rename to dd-trace-py/.sg/rules/os-environ-fix-access.yml
diff --git a/.sg/rules/os-environ-fix-getenv.yml b/dd-trace-py/.sg/rules/os-environ-fix-getenv.yml
similarity index 100%
rename from .sg/rules/os-environ-fix-getenv.yml
rename to dd-trace-py/.sg/rules/os-environ-fix-getenv.yml
diff --git a/.sg/rules/os-environ-fix-import.yml b/dd-trace-py/.sg/rules/os-environ-fix-import.yml
similarity index 100%
rename from .sg/rules/os-environ-fix-import.yml
rename to dd-trace-py/.sg/rules/os-environ-fix-import.yml
diff --git a/.sg/rules/os-environ-usage.yml b/dd-trace-py/.sg/rules/os-environ-usage.yml
similarity index 100%
rename from .sg/rules/os-environ-usage.yml
rename to dd-trace-py/.sg/rules/os-environ-usage.yml
diff --git a/.sg/rules/pep765-control-flow-in-finally.yml b/dd-trace-py/.sg/rules/pep765-control-flow-in-finally.yml
similarity index 100%
rename from .sg/rules/pep765-control-flow-in-finally.yml
rename to dd-trace-py/.sg/rules/pep765-control-flow-in-finally.yml
diff --git a/.sg/rules/pin-import.yml b/dd-trace-py/.sg/rules/pin-import.yml
similarity index 100%
rename from .sg/rules/pin-import.yml
rename to dd-trace-py/.sg/rules/pin-import.yml
diff --git a/.sg/rules/span-meta-access.yml b/dd-trace-py/.sg/rules/span-meta-access.yml
similarity index 100%
rename from .sg/rules/span-meta-access.yml
rename to dd-trace-py/.sg/rules/span-meta-access.yml
diff --git a/.sg/rules/span-metrics-access.yml b/dd-trace-py/.sg/rules/span-metrics-access.yml
similarity index 100%
rename from .sg/rules/span-metrics-access.yml
rename to dd-trace-py/.sg/rules/span-metrics-access.yml
diff --git a/.sg/rules/span-set-attribute-measured.yml b/dd-trace-py/.sg/rules/span-set-attribute-measured.yml
similarity index 100%
rename from .sg/rules/span-set-attribute-measured.yml
rename to dd-trace-py/.sg/rules/span-set-attribute-measured.yml
diff --git a/.sg/rules/span-set-metric-measured.yml b/dd-trace-py/.sg/rules/span-set-metric-measured.yml
similarity index 100%
rename from .sg/rules/span-set-metric-measured.yml
rename to dd-trace-py/.sg/rules/span-set-metric-measured.yml
diff --git a/.sg/rules/span-set-metric.yml b/dd-trace-py/.sg/rules/span-set-metric.yml
similarity index 100%
rename from .sg/rules/span-set-metric.yml
rename to dd-trace-py/.sg/rules/span-set-metric.yml
diff --git a/.sg/rules/span-set-tag-manual-drop.yml b/dd-trace-py/.sg/rules/span-set-tag-manual-drop.yml
similarity index 100%
rename from .sg/rules/span-set-tag-manual-drop.yml
rename to dd-trace-py/.sg/rules/span-set-tag-manual-drop.yml
diff --git a/.sg/rules/span-set-tag-manual-keep.yml b/dd-trace-py/.sg/rules/span-set-tag-manual-keep.yml
similarity index 100%
rename from .sg/rules/span-set-tag-manual-keep.yml
rename to dd-trace-py/.sg/rules/span-set-tag-manual-keep.yml
diff --git a/.sg/rules/span-set-tag-measured.yml b/dd-trace-py/.sg/rules/span-set-tag-measured.yml
similarity index 100%
rename from .sg/rules/span-set-tag-measured.yml
rename to dd-trace-py/.sg/rules/span-set-tag-measured.yml
diff --git a/.sg/rules/span-set-tag-service-key.yml b/dd-trace-py/.sg/rules/span-set-tag-service-key.yml
similarity index 100%
rename from .sg/rules/span-set-tag-service-key.yml
rename to dd-trace-py/.sg/rules/span-set-tag-service-key.yml
diff --git a/.sg/tests/__snapshots__/core-dispatch-with-results-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/core-dispatch-with-results-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/core-dispatch-with-results-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/core-dispatch-with-results-snapshot.yml
diff --git a/.sg/tests/__snapshots__/core-raising-dispatch-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/core-raising-dispatch-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/core-raising-dispatch-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/core-raising-dispatch-snapshot.yml
diff --git a/.sg/tests/__snapshots__/ddtrace-version-import-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/ddtrace-version-import-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/ddtrace-version-import-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/ddtrace-version-import-snapshot.yml
diff --git a/.sg/tests/__snapshots__/fork-without-subprocess-marker-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/fork-without-subprocess-marker-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/fork-without-subprocess-marker-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/fork-without-subprocess-marker-snapshot.yml
diff --git a/.sg/tests/__snapshots__/no-unittest-test-classes-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/no-unittest-test-classes-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/no-unittest-test-classes-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/no-unittest-test-classes-snapshot.yml
diff --git a/.sg/tests/__snapshots__/os-environ-fix-access-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/os-environ-fix-access-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/os-environ-fix-access-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/os-environ-fix-access-snapshot.yml
diff --git a/.sg/tests/__snapshots__/os-environ-fix-getenv-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/os-environ-fix-getenv-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/os-environ-fix-getenv-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/os-environ-fix-getenv-snapshot.yml
diff --git a/.sg/tests/__snapshots__/os-environ-fix-import-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/os-environ-fix-import-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/os-environ-fix-import-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/os-environ-fix-import-snapshot.yml
diff --git a/.sg/tests/__snapshots__/os-environ-usage-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/os-environ-usage-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/os-environ-usage-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/os-environ-usage-snapshot.yml
diff --git a/.sg/tests/__snapshots__/pep765-control-flow-in-finally-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/pep765-control-flow-in-finally-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/pep765-control-flow-in-finally-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/pep765-control-flow-in-finally-snapshot.yml
diff --git a/.sg/tests/__snapshots__/pin-import-deprecated-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/pin-import-deprecated-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/pin-import-deprecated-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/pin-import-deprecated-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-meta-access-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-meta-access-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-meta-access-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-meta-access-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-metrics-access-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-metrics-access-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-metrics-access-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-metrics-access-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-set-attribute-measured-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-set-attribute-measured-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-set-attribute-measured-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-set-attribute-measured-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-set-metric-measured-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-set-metric-measured-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-set-metric-measured-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-set-metric-measured-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-set-metric-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-set-metric-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-set-metric-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-set-metric-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-set-tag-manual-drop-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-set-tag-manual-drop-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-set-tag-manual-drop-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-set-tag-manual-drop-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-set-tag-manual-keep-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-set-tag-manual-keep-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-set-tag-manual-keep-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-set-tag-manual-keep-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-set-tag-measured-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-set-tag-measured-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-set-tag-measured-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-set-tag-measured-snapshot.yml
diff --git a/.sg/tests/__snapshots__/span-set-tag-service-key-snapshot.yml b/dd-trace-py/.sg/tests/__snapshots__/span-set-tag-service-key-snapshot.yml
similarity index 100%
rename from .sg/tests/__snapshots__/span-set-tag-service-key-snapshot.yml
rename to dd-trace-py/.sg/tests/__snapshots__/span-set-tag-service-key-snapshot.yml
diff --git a/.sg/tests/core-dispatch-with-results-test.yml b/dd-trace-py/.sg/tests/core-dispatch-with-results-test.yml
similarity index 100%
rename from .sg/tests/core-dispatch-with-results-test.yml
rename to dd-trace-py/.sg/tests/core-dispatch-with-results-test.yml
diff --git a/.sg/tests/core-raising-dispatch-test.yml b/dd-trace-py/.sg/tests/core-raising-dispatch-test.yml
similarity index 100%
rename from .sg/tests/core-raising-dispatch-test.yml
rename to dd-trace-py/.sg/tests/core-raising-dispatch-test.yml
diff --git a/.sg/tests/ddtrace-version-import-test.yml b/dd-trace-py/.sg/tests/ddtrace-version-import-test.yml
similarity index 100%
rename from .sg/tests/ddtrace-version-import-test.yml
rename to dd-trace-py/.sg/tests/ddtrace-version-import-test.yml
diff --git a/.sg/tests/fork-without-subprocess-marker-test.yml b/dd-trace-py/.sg/tests/fork-without-subprocess-marker-test.yml
similarity index 100%
rename from .sg/tests/fork-without-subprocess-marker-test.yml
rename to dd-trace-py/.sg/tests/fork-without-subprocess-marker-test.yml
diff --git a/.sg/tests/no-unittest-test-classes-test.yml b/dd-trace-py/.sg/tests/no-unittest-test-classes-test.yml
similarity index 100%
rename from .sg/tests/no-unittest-test-classes-test.yml
rename to dd-trace-py/.sg/tests/no-unittest-test-classes-test.yml
diff --git a/.sg/tests/os-environ-fix-access-test.yml b/dd-trace-py/.sg/tests/os-environ-fix-access-test.yml
similarity index 100%
rename from .sg/tests/os-environ-fix-access-test.yml
rename to dd-trace-py/.sg/tests/os-environ-fix-access-test.yml
diff --git a/.sg/tests/os-environ-fix-getenv-test.yml b/dd-trace-py/.sg/tests/os-environ-fix-getenv-test.yml
similarity index 100%
rename from .sg/tests/os-environ-fix-getenv-test.yml
rename to dd-trace-py/.sg/tests/os-environ-fix-getenv-test.yml
diff --git a/.sg/tests/os-environ-fix-import-test.yml b/dd-trace-py/.sg/tests/os-environ-fix-import-test.yml
similarity index 100%
rename from .sg/tests/os-environ-fix-import-test.yml
rename to dd-trace-py/.sg/tests/os-environ-fix-import-test.yml
diff --git a/.sg/tests/os-environ-usage-test.yml b/dd-trace-py/.sg/tests/os-environ-usage-test.yml
similarity index 100%
rename from .sg/tests/os-environ-usage-test.yml
rename to dd-trace-py/.sg/tests/os-environ-usage-test.yml
diff --git a/.sg/tests/pep765-control-flow-in-finally-test.yml b/dd-trace-py/.sg/tests/pep765-control-flow-in-finally-test.yml
similarity index 100%
rename from .sg/tests/pep765-control-flow-in-finally-test.yml
rename to dd-trace-py/.sg/tests/pep765-control-flow-in-finally-test.yml
diff --git a/.sg/tests/pin-import-deprecated-test.yml b/dd-trace-py/.sg/tests/pin-import-deprecated-test.yml
similarity index 100%
rename from .sg/tests/pin-import-deprecated-test.yml
rename to dd-trace-py/.sg/tests/pin-import-deprecated-test.yml
diff --git a/.sg/tests/span-meta-access-test.yml b/dd-trace-py/.sg/tests/span-meta-access-test.yml
similarity index 100%
rename from .sg/tests/span-meta-access-test.yml
rename to dd-trace-py/.sg/tests/span-meta-access-test.yml
diff --git a/.sg/tests/span-metrics-access-test.yml b/dd-trace-py/.sg/tests/span-metrics-access-test.yml
similarity index 100%
rename from .sg/tests/span-metrics-access-test.yml
rename to dd-trace-py/.sg/tests/span-metrics-access-test.yml
diff --git a/.sg/tests/span-set-attribute-measured-test.yml b/dd-trace-py/.sg/tests/span-set-attribute-measured-test.yml
similarity index 100%
rename from .sg/tests/span-set-attribute-measured-test.yml
rename to dd-trace-py/.sg/tests/span-set-attribute-measured-test.yml
diff --git a/.sg/tests/span-set-metric-measured-test.yml b/dd-trace-py/.sg/tests/span-set-metric-measured-test.yml
similarity index 100%
rename from .sg/tests/span-set-metric-measured-test.yml
rename to dd-trace-py/.sg/tests/span-set-metric-measured-test.yml
diff --git a/.sg/tests/span-set-metric-test.yml b/dd-trace-py/.sg/tests/span-set-metric-test.yml
similarity index 100%
rename from .sg/tests/span-set-metric-test.yml
rename to dd-trace-py/.sg/tests/span-set-metric-test.yml
diff --git a/.sg/tests/span-set-tag-manual-drop-test.yml b/dd-trace-py/.sg/tests/span-set-tag-manual-drop-test.yml
similarity index 100%
rename from .sg/tests/span-set-tag-manual-drop-test.yml
rename to dd-trace-py/.sg/tests/span-set-tag-manual-drop-test.yml
diff --git a/.sg/tests/span-set-tag-manual-keep-test.yml b/dd-trace-py/.sg/tests/span-set-tag-manual-keep-test.yml
similarity index 100%
rename from .sg/tests/span-set-tag-manual-keep-test.yml
rename to dd-trace-py/.sg/tests/span-set-tag-manual-keep-test.yml
diff --git a/.sg/tests/span-set-tag-measured-test.yml b/dd-trace-py/.sg/tests/span-set-tag-measured-test.yml
similarity index 100%
rename from .sg/tests/span-set-tag-measured-test.yml
rename to dd-trace-py/.sg/tests/span-set-tag-measured-test.yml
diff --git a/.sg/tests/span-set-tag-service-key-test.yml b/dd-trace-py/.sg/tests/span-set-tag-service-key-test.yml
similarity index 100%
rename from .sg/tests/span-set-tag-service-key-test.yml
rename to dd-trace-py/.sg/tests/span-set-tag-service-key-test.yml
diff --git a/.sg/utils/.gitkeep b/dd-trace-py/.sg/utils/.gitkeep
similarity index 100%
rename from .sg/utils/.gitkeep
rename to dd-trace-py/.sg/utils/.gitkeep
diff --git a/AGENTS.md b/dd-trace-py/AGENTS.md
similarity index 100%
rename from AGENTS.md
rename to dd-trace-py/AGENTS.md
diff --git a/CHANGELOG.md b/dd-trace-py/CHANGELOG.md
similarity index 100%
rename from CHANGELOG.md
rename to dd-trace-py/CHANGELOG.md
diff --git a/LICENSE b/dd-trace-py/LICENSE
similarity index 100%
rename from LICENSE
rename to dd-trace-py/LICENSE
diff --git a/LICENSE.Apache b/dd-trace-py/LICENSE.Apache
similarity index 100%
rename from LICENSE.Apache
rename to dd-trace-py/LICENSE.Apache
diff --git a/LICENSE.BSD3 b/dd-trace-py/LICENSE.BSD3
similarity index 100%
rename from LICENSE.BSD3
rename to dd-trace-py/LICENSE.BSD3
diff --git a/MANIFEST.in b/dd-trace-py/MANIFEST.in
similarity index 100%
rename from MANIFEST.in
rename to dd-trace-py/MANIFEST.in
diff --git a/NOTICE b/dd-trace-py/NOTICE
similarity index 100%
rename from NOTICE
rename to dd-trace-py/NOTICE
diff --git a/dd-trace-py/README.md b/dd-trace-py/README.md
new file mode 100644
index 00000000000..32273825b3a
--- /dev/null
+++ b/dd-trace-py/README.md
@@ -0,0 +1,29 @@
+# `ddtrace`
+
+[](https://circleci.com/gh/DataDog/dd-trace-py/tree/main)
+[](https://pypi.org/project/ddtrace/)
+[](https://pypi.org/project/ddtrace/)
+
+
+
+This library powers [Distributed Tracing](https://docs.datadoghq.com/tracing/),
+ [Continuous Profiling](https://docs.datadoghq.com/tracing/profiler/),
+ [Error Tracking](https://docs.datadoghq.com/tracing/error_tracking/),
+ [Test Optimization](https://docs.datadoghq.com/tests/),
+ [Deployment Tracking](https://docs.datadoghq.com/tracing/deployment_tracking/),
+ [Code Hotspots](https://docs.datadoghq.com/tracing/profiler/connect_traces_and_profiles/),
+ [Dynamic Instrumentation](https://docs.datadoghq.com/dynamic_instrumentation/),
+ and more.
+
+To get started with tracing, check out the [product documentation][setup docs] or the [glossary][visualization docs].
+
+For advanced usage and configuration information, check out the [library documentation][api docs].
+
+To get started as a contributor, see [the contributing docs](https://ddtrace.readthedocs.io/en/stable/contributing.html) first.
+
+For information about the bug/security fix and maintenance policy, see the [versioning docs][versioning docs].
+
+[setup docs]: https://docs.datadoghq.com/tracing/setup/python/
+[api docs]: https://ddtrace.readthedocs.io/
+[visualization docs]: https://docs.datadoghq.com/tracing/visualization/
+[versioning docs]: https://github.com/DataDog/dd-trace-py/blob/main/docs/versioning.rst#release-support
diff --git a/SECURITY.md b/dd-trace-py/SECURITY.md
similarity index 100%
rename from SECURITY.md
rename to dd-trace-py/SECURITY.md
diff --git a/benchmarks/Dockerfile b/dd-trace-py/benchmarks/Dockerfile
similarity index 100%
rename from benchmarks/Dockerfile
rename to dd-trace-py/benchmarks/Dockerfile
diff --git a/benchmarks/README.rst b/dd-trace-py/benchmarks/README.rst
similarity index 100%
rename from benchmarks/README.rst
rename to dd-trace-py/benchmarks/README.rst
diff --git a/benchmarks/__init__.py b/dd-trace-py/benchmarks/__init__.py
similarity index 100%
rename from benchmarks/__init__.py
rename to dd-trace-py/benchmarks/__init__.py
diff --git a/benchmarks/appsec_iast_aspects/config.yaml b/dd-trace-py/benchmarks/appsec_iast_aspects/config.yaml
similarity index 100%
rename from benchmarks/appsec_iast_aspects/config.yaml
rename to dd-trace-py/benchmarks/appsec_iast_aspects/config.yaml
diff --git a/benchmarks/appsec_iast_aspects/functions.py b/dd-trace-py/benchmarks/appsec_iast_aspects/functions.py
similarity index 100%
rename from benchmarks/appsec_iast_aspects/functions.py
rename to dd-trace-py/benchmarks/appsec_iast_aspects/functions.py
diff --git a/benchmarks/appsec_iast_aspects/scenario.py b/dd-trace-py/benchmarks/appsec_iast_aspects/scenario.py
similarity index 100%
rename from benchmarks/appsec_iast_aspects/scenario.py
rename to dd-trace-py/benchmarks/appsec_iast_aspects/scenario.py
diff --git a/benchmarks/appsec_iast_aspects_ospath/config.yaml b/dd-trace-py/benchmarks/appsec_iast_aspects_ospath/config.yaml
similarity index 100%
rename from benchmarks/appsec_iast_aspects_ospath/config.yaml
rename to dd-trace-py/benchmarks/appsec_iast_aspects_ospath/config.yaml
diff --git a/benchmarks/appsec_iast_aspects_ospath/functions.py b/dd-trace-py/benchmarks/appsec_iast_aspects_ospath/functions.py
similarity index 100%
rename from benchmarks/appsec_iast_aspects_ospath/functions.py
rename to dd-trace-py/benchmarks/appsec_iast_aspects_ospath/functions.py
diff --git a/benchmarks/appsec_iast_aspects_ospath/scenario.py b/dd-trace-py/benchmarks/appsec_iast_aspects_ospath/scenario.py
similarity index 100%
rename from benchmarks/appsec_iast_aspects_ospath/scenario.py
rename to dd-trace-py/benchmarks/appsec_iast_aspects_ospath/scenario.py
diff --git a/benchmarks/appsec_iast_aspects_re_module/config.yaml b/dd-trace-py/benchmarks/appsec_iast_aspects_re_module/config.yaml
similarity index 100%
rename from benchmarks/appsec_iast_aspects_re_module/config.yaml
rename to dd-trace-py/benchmarks/appsec_iast_aspects_re_module/config.yaml
diff --git a/benchmarks/appsec_iast_aspects_re_module/functions.py b/dd-trace-py/benchmarks/appsec_iast_aspects_re_module/functions.py
similarity index 100%
rename from benchmarks/appsec_iast_aspects_re_module/functions.py
rename to dd-trace-py/benchmarks/appsec_iast_aspects_re_module/functions.py
diff --git a/benchmarks/appsec_iast_aspects_re_module/scenario.py b/dd-trace-py/benchmarks/appsec_iast_aspects_re_module/scenario.py
similarity index 100%
rename from benchmarks/appsec_iast_aspects_re_module/scenario.py
rename to dd-trace-py/benchmarks/appsec_iast_aspects_re_module/scenario.py
diff --git a/benchmarks/appsec_iast_aspects_split/config.yaml b/dd-trace-py/benchmarks/appsec_iast_aspects_split/config.yaml
similarity index 100%
rename from benchmarks/appsec_iast_aspects_split/config.yaml
rename to dd-trace-py/benchmarks/appsec_iast_aspects_split/config.yaml
diff --git a/benchmarks/appsec_iast_aspects_split/functions.py b/dd-trace-py/benchmarks/appsec_iast_aspects_split/functions.py
similarity index 100%
rename from benchmarks/appsec_iast_aspects_split/functions.py
rename to dd-trace-py/benchmarks/appsec_iast_aspects_split/functions.py
diff --git a/benchmarks/appsec_iast_aspects_split/scenario.py b/dd-trace-py/benchmarks/appsec_iast_aspects_split/scenario.py
similarity index 100%
rename from benchmarks/appsec_iast_aspects_split/scenario.py
rename to dd-trace-py/benchmarks/appsec_iast_aspects_split/scenario.py
diff --git a/benchmarks/appsec_iast_django_startup/config.yaml b/dd-trace-py/benchmarks/appsec_iast_django_startup/config.yaml
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/config.yaml
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/config.yaml
diff --git a/benchmarks/appsec_iast_django_startup/install.sh b/dd-trace-py/benchmarks/appsec_iast_django_startup/install.sh
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/install.sh
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/install.sh
diff --git a/benchmarks/appsec_iast_django_startup/manage.py b/dd-trace-py/benchmarks/appsec_iast_django_startup/manage.py
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/manage.py
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/manage.py
diff --git a/benchmarks/appsec_iast_django_startup/requirements.in b/dd-trace-py/benchmarks/appsec_iast_django_startup/requirements.in
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/requirements.in
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/requirements.in
diff --git a/benchmarks/appsec_iast_django_startup/requirements_scenario.txt b/dd-trace-py/benchmarks/appsec_iast_django_startup/requirements_scenario.txt
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/requirements_scenario.txt
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/requirements_scenario.txt
diff --git a/benchmarks/appsec_iast_django_startup/scenario.py b/dd-trace-py/benchmarks/appsec_iast_django_startup/scenario.py
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/scenario.py
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/scenario.py
diff --git a/benchmarks/appsec_iast_django_startup/settings.py b/dd-trace-py/benchmarks/appsec_iast_django_startup/settings.py
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/settings.py
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/settings.py
diff --git a/benchmarks/appsec_iast_django_startup/urls.py b/dd-trace-py/benchmarks/appsec_iast_django_startup/urls.py
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/urls.py
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/urls.py
diff --git a/benchmarks/appsec_iast_django_startup/views.py b/dd-trace-py/benchmarks/appsec_iast_django_startup/views.py
similarity index 100%
rename from benchmarks/appsec_iast_django_startup/views.py
rename to dd-trace-py/benchmarks/appsec_iast_django_startup/views.py
diff --git a/benchmarks/appsec_iast_propagation/config.yaml b/dd-trace-py/benchmarks/appsec_iast_propagation/config.yaml
similarity index 100%
rename from benchmarks/appsec_iast_propagation/config.yaml
rename to dd-trace-py/benchmarks/appsec_iast_propagation/config.yaml
diff --git a/benchmarks/appsec_iast_propagation/scenario.py b/dd-trace-py/benchmarks/appsec_iast_propagation/scenario.py
similarity index 100%
rename from benchmarks/appsec_iast_propagation/scenario.py
rename to dd-trace-py/benchmarks/appsec_iast_propagation/scenario.py
diff --git a/benchmarks/base/benchmark b/dd-trace-py/benchmarks/base/benchmark
similarity index 100%
rename from benchmarks/base/benchmark
rename to dd-trace-py/benchmarks/base/benchmark
diff --git a/benchmarks/base/entrypoint b/dd-trace-py/benchmarks/base/entrypoint
similarity index 100%
rename from benchmarks/base/entrypoint
rename to dd-trace-py/benchmarks/base/entrypoint
diff --git a/benchmarks/base/requirements.txt b/dd-trace-py/benchmarks/base/requirements.txt
similarity index 100%
rename from benchmarks/base/requirements.txt
rename to dd-trace-py/benchmarks/base/requirements.txt
diff --git a/benchmarks/base/requirements_scenario.txt b/dd-trace-py/benchmarks/base/requirements_scenario.txt
similarity index 100%
rename from benchmarks/base/requirements_scenario.txt
rename to dd-trace-py/benchmarks/base/requirements_scenario.txt
diff --git a/benchmarks/base/run.py b/dd-trace-py/benchmarks/base/run.py
similarity index 100%
rename from benchmarks/base/run.py
rename to dd-trace-py/benchmarks/base/run.py
diff --git a/benchmarks/bm/__init__.py b/dd-trace-py/benchmarks/bm/__init__.py
similarity index 100%
rename from benchmarks/bm/__init__.py
rename to dd-trace-py/benchmarks/bm/__init__.py
diff --git a/benchmarks/bm/_scenario.py b/dd-trace-py/benchmarks/bm/_scenario.py
similarity index 100%
rename from benchmarks/bm/_scenario.py
rename to dd-trace-py/benchmarks/bm/_scenario.py
diff --git a/benchmarks/bm/di_utils.py b/dd-trace-py/benchmarks/bm/di_utils.py
similarity index 100%
rename from benchmarks/bm/di_utils.py
rename to dd-trace-py/benchmarks/bm/di_utils.py
diff --git a/benchmarks/bm/flask_utils.py b/dd-trace-py/benchmarks/bm/flask_utils.py
similarity index 100%
rename from benchmarks/bm/flask_utils.py
rename to dd-trace-py/benchmarks/bm/flask_utils.py
diff --git a/benchmarks/bm/iast_fixtures/module_functions.py b/dd-trace-py/benchmarks/bm/iast_fixtures/module_functions.py
similarity index 100%
rename from benchmarks/bm/iast_fixtures/module_functions.py
rename to dd-trace-py/benchmarks/bm/iast_fixtures/module_functions.py
diff --git a/benchmarks/bm/iast_fixtures/str_methods.py b/dd-trace-py/benchmarks/bm/iast_fixtures/str_methods.py
similarity index 100%
rename from benchmarks/bm/iast_fixtures/str_methods.py
rename to dd-trace-py/benchmarks/bm/iast_fixtures/str_methods.py
diff --git a/benchmarks/bm/iast_fixtures/str_methods_py3.py b/dd-trace-py/benchmarks/bm/iast_fixtures/str_methods_py3.py
similarity index 100%
rename from benchmarks/bm/iast_fixtures/str_methods_py3.py
rename to dd-trace-py/benchmarks/bm/iast_fixtures/str_methods_py3.py
diff --git a/benchmarks/bm/iast_fixtures/template_strings.py b/dd-trace-py/benchmarks/bm/iast_fixtures/template_strings.py
similarity index 100%
rename from benchmarks/bm/iast_fixtures/template_strings.py
rename to dd-trace-py/benchmarks/bm/iast_fixtures/template_strings.py
diff --git a/benchmarks/bm/iast_utils.py b/dd-trace-py/benchmarks/bm/iast_utils.py
similarity index 100%
rename from benchmarks/bm/iast_utils.py
rename to dd-trace-py/benchmarks/bm/iast_utils.py
diff --git a/benchmarks/bm/utils.py b/dd-trace-py/benchmarks/bm/utils.py
similarity index 100%
rename from benchmarks/bm/utils.py
rename to dd-trace-py/benchmarks/bm/utils.py
diff --git a/benchmarks/code_provenance/config.yaml b/dd-trace-py/benchmarks/code_provenance/config.yaml
similarity index 100%
rename from benchmarks/code_provenance/config.yaml
rename to dd-trace-py/benchmarks/code_provenance/config.yaml
diff --git a/benchmarks/code_provenance/requirements_scenario.txt b/dd-trace-py/benchmarks/code_provenance/requirements_scenario.txt
similarity index 100%
rename from benchmarks/code_provenance/requirements_scenario.txt
rename to dd-trace-py/benchmarks/code_provenance/requirements_scenario.txt
diff --git a/benchmarks/code_provenance/scenario.py b/dd-trace-py/benchmarks/code_provenance/scenario.py
similarity index 100%
rename from benchmarks/code_provenance/scenario.py
rename to dd-trace-py/benchmarks/code_provenance/scenario.py
diff --git a/benchmarks/core_api/config.yaml b/dd-trace-py/benchmarks/core_api/config.yaml
similarity index 100%
rename from benchmarks/core_api/config.yaml
rename to dd-trace-py/benchmarks/core_api/config.yaml
diff --git a/benchmarks/core_api/scenario.py b/dd-trace-py/benchmarks/core_api/scenario.py
similarity index 100%
rename from benchmarks/core_api/scenario.py
rename to dd-trace-py/benchmarks/core_api/scenario.py
diff --git a/benchmarks/coverage_fibonacci/config.yaml b/dd-trace-py/benchmarks/coverage_fibonacci/config.yaml
similarity index 100%
rename from benchmarks/coverage_fibonacci/config.yaml
rename to dd-trace-py/benchmarks/coverage_fibonacci/config.yaml
diff --git a/benchmarks/coverage_fibonacci/scenario.py b/dd-trace-py/benchmarks/coverage_fibonacci/scenario.py
similarity index 100%
rename from benchmarks/coverage_fibonacci/scenario.py
rename to dd-trace-py/benchmarks/coverage_fibonacci/scenario.py
diff --git a/benchmarks/coverage_fibonacci/utils.py b/dd-trace-py/benchmarks/coverage_fibonacci/utils.py
similarity index 100%
rename from benchmarks/coverage_fibonacci/utils.py
rename to dd-trace-py/benchmarks/coverage_fibonacci/utils.py
diff --git a/benchmarks/django_simple/app.py b/dd-trace-py/benchmarks/django_simple/app.py
similarity index 100%
rename from benchmarks/django_simple/app.py
rename to dd-trace-py/benchmarks/django_simple/app.py
diff --git a/benchmarks/django_simple/config.yaml b/dd-trace-py/benchmarks/django_simple/config.yaml
similarity index 100%
rename from benchmarks/django_simple/config.yaml
rename to dd-trace-py/benchmarks/django_simple/config.yaml
diff --git a/benchmarks/django_simple/install.sh b/dd-trace-py/benchmarks/django_simple/install.sh
similarity index 100%
rename from benchmarks/django_simple/install.sh
rename to dd-trace-py/benchmarks/django_simple/install.sh
diff --git a/benchmarks/django_simple/requirements_scenario.txt b/dd-trace-py/benchmarks/django_simple/requirements_scenario.txt
similarity index 100%
rename from benchmarks/django_simple/requirements_scenario.txt
rename to dd-trace-py/benchmarks/django_simple/requirements_scenario.txt
diff --git a/benchmarks/django_simple/scenario.py b/dd-trace-py/benchmarks/django_simple/scenario.py
similarity index 100%
rename from benchmarks/django_simple/scenario.py
rename to dd-trace-py/benchmarks/django_simple/scenario.py
diff --git a/benchmarks/encoder/config.yaml b/dd-trace-py/benchmarks/encoder/config.yaml
similarity index 100%
rename from benchmarks/encoder/config.yaml
rename to dd-trace-py/benchmarks/encoder/config.yaml
diff --git a/benchmarks/encoder/scenario.py b/dd-trace-py/benchmarks/encoder/scenario.py
similarity index 100%
rename from benchmarks/encoder/scenario.py
rename to dd-trace-py/benchmarks/encoder/scenario.py
diff --git a/benchmarks/encoder/utils.py b/dd-trace-py/benchmarks/encoder/utils.py
similarity index 100%
rename from benchmarks/encoder/utils.py
rename to dd-trace-py/benchmarks/encoder/utils.py
diff --git a/benchmarks/errortracking_django_simple/app.py b/dd-trace-py/benchmarks/errortracking_django_simple/app.py
similarity index 100%
rename from benchmarks/errortracking_django_simple/app.py
rename to dd-trace-py/benchmarks/errortracking_django_simple/app.py
diff --git a/benchmarks/errortracking_django_simple/config.yaml b/dd-trace-py/benchmarks/errortracking_django_simple/config.yaml
similarity index 100%
rename from benchmarks/errortracking_django_simple/config.yaml
rename to dd-trace-py/benchmarks/errortracking_django_simple/config.yaml
diff --git a/benchmarks/errortracking_django_simple/install.sh b/dd-trace-py/benchmarks/errortracking_django_simple/install.sh
similarity index 100%
rename from benchmarks/errortracking_django_simple/install.sh
rename to dd-trace-py/benchmarks/errortracking_django_simple/install.sh
diff --git a/benchmarks/errortracking_django_simple/requirements_scenario.txt b/dd-trace-py/benchmarks/errortracking_django_simple/requirements_scenario.txt
similarity index 100%
rename from benchmarks/errortracking_django_simple/requirements_scenario.txt
rename to dd-trace-py/benchmarks/errortracking_django_simple/requirements_scenario.txt
diff --git a/benchmarks/errortracking_django_simple/scenario.py b/dd-trace-py/benchmarks/errortracking_django_simple/scenario.py
similarity index 100%
rename from benchmarks/errortracking_django_simple/scenario.py
rename to dd-trace-py/benchmarks/errortracking_django_simple/scenario.py
diff --git a/benchmarks/errortracking_flask_sqli/config.yaml b/dd-trace-py/benchmarks/errortracking_flask_sqli/config.yaml
similarity index 100%
rename from benchmarks/errortracking_flask_sqli/config.yaml
rename to dd-trace-py/benchmarks/errortracking_flask_sqli/config.yaml
diff --git a/benchmarks/errortracking_flask_sqli/requirements_scenario.txt b/dd-trace-py/benchmarks/errortracking_flask_sqli/requirements_scenario.txt
similarity index 100%
rename from benchmarks/errortracking_flask_sqli/requirements_scenario.txt
rename to dd-trace-py/benchmarks/errortracking_flask_sqli/requirements_scenario.txt
diff --git a/benchmarks/errortracking_flask_sqli/scenario.py b/dd-trace-py/benchmarks/errortracking_flask_sqli/scenario.py
similarity index 100%
rename from benchmarks/errortracking_flask_sqli/scenario.py
rename to dd-trace-py/benchmarks/errortracking_flask_sqli/scenario.py
diff --git a/benchmarks/events_api/config.yaml b/dd-trace-py/benchmarks/events_api/config.yaml
similarity index 100%
rename from benchmarks/events_api/config.yaml
rename to dd-trace-py/benchmarks/events_api/config.yaml
diff --git a/benchmarks/events_api/scenario.py b/dd-trace-py/benchmarks/events_api/scenario.py
similarity index 100%
rename from benchmarks/events_api/scenario.py
rename to dd-trace-py/benchmarks/events_api/scenario.py
diff --git a/benchmarks/flask_simple/config.yaml b/dd-trace-py/benchmarks/flask_simple/config.yaml
similarity index 100%
rename from benchmarks/flask_simple/config.yaml
rename to dd-trace-py/benchmarks/flask_simple/config.yaml
diff --git a/benchmarks/flask_simple/requirements_scenario.txt b/dd-trace-py/benchmarks/flask_simple/requirements_scenario.txt
similarity index 100%
rename from benchmarks/flask_simple/requirements_scenario.txt
rename to dd-trace-py/benchmarks/flask_simple/requirements_scenario.txt
diff --git a/benchmarks/flask_simple/scenario.py b/dd-trace-py/benchmarks/flask_simple/scenario.py
similarity index 100%
rename from benchmarks/flask_simple/scenario.py
rename to dd-trace-py/benchmarks/flask_simple/scenario.py
diff --git a/benchmarks/flask_sqli/config.yaml b/dd-trace-py/benchmarks/flask_sqli/config.yaml
similarity index 100%
rename from benchmarks/flask_sqli/config.yaml
rename to dd-trace-py/benchmarks/flask_sqli/config.yaml
diff --git a/benchmarks/flask_sqli/requirements_scenario.txt b/dd-trace-py/benchmarks/flask_sqli/requirements_scenario.txt
similarity index 100%
rename from benchmarks/flask_sqli/requirements_scenario.txt
rename to dd-trace-py/benchmarks/flask_sqli/requirements_scenario.txt
diff --git a/benchmarks/flask_sqli/scenario.py b/dd-trace-py/benchmarks/flask_sqli/scenario.py
similarity index 100%
rename from benchmarks/flask_sqli/scenario.py
rename to dd-trace-py/benchmarks/flask_sqli/scenario.py
diff --git a/benchmarks/fork_time/config.yaml b/dd-trace-py/benchmarks/fork_time/config.yaml
similarity index 100%
rename from benchmarks/fork_time/config.yaml
rename to dd-trace-py/benchmarks/fork_time/config.yaml
diff --git a/benchmarks/fork_time/requirements_scenario.txt b/dd-trace-py/benchmarks/fork_time/requirements_scenario.txt
similarity index 100%
rename from benchmarks/fork_time/requirements_scenario.txt
rename to dd-trace-py/benchmarks/fork_time/requirements_scenario.txt
diff --git a/benchmarks/fork_time/scenario.py b/dd-trace-py/benchmarks/fork_time/scenario.py
similarity index 100%
rename from benchmarks/fork_time/scenario.py
rename to dd-trace-py/benchmarks/fork_time/scenario.py
diff --git a/benchmarks/http_propagation_extract/config.yaml b/dd-trace-py/benchmarks/http_propagation_extract/config.yaml
similarity index 100%
rename from benchmarks/http_propagation_extract/config.yaml
rename to dd-trace-py/benchmarks/http_propagation_extract/config.yaml
diff --git a/benchmarks/http_propagation_extract/scenario.py b/dd-trace-py/benchmarks/http_propagation_extract/scenario.py
similarity index 100%
rename from benchmarks/http_propagation_extract/scenario.py
rename to dd-trace-py/benchmarks/http_propagation_extract/scenario.py
diff --git a/benchmarks/http_propagation_inject/config.yaml b/dd-trace-py/benchmarks/http_propagation_inject/config.yaml
similarity index 100%
rename from benchmarks/http_propagation_inject/config.yaml
rename to dd-trace-py/benchmarks/http_propagation_inject/config.yaml
diff --git a/benchmarks/http_propagation_inject/scenario.py b/dd-trace-py/benchmarks/http_propagation_inject/scenario.py
similarity index 100%
rename from benchmarks/http_propagation_inject/scenario.py
rename to dd-trace-py/benchmarks/http_propagation_inject/scenario.py
diff --git a/benchmarks/iast_ast_patching/config.yaml b/dd-trace-py/benchmarks/iast_ast_patching/config.yaml
similarity index 100%
rename from benchmarks/iast_ast_patching/config.yaml
rename to dd-trace-py/benchmarks/iast_ast_patching/config.yaml
diff --git a/benchmarks/iast_ast_patching/scenario.py b/dd-trace-py/benchmarks/iast_ast_patching/scenario.py
similarity index 100%
rename from benchmarks/iast_ast_patching/scenario.py
rename to dd-trace-py/benchmarks/iast_ast_patching/scenario.py
diff --git a/benchmarks/otel_sdk_span/config.yaml b/dd-trace-py/benchmarks/otel_sdk_span/config.yaml
similarity index 100%
rename from benchmarks/otel_sdk_span/config.yaml
rename to dd-trace-py/benchmarks/otel_sdk_span/config.yaml
diff --git a/benchmarks/otel_sdk_span/requirements_scenario.txt b/dd-trace-py/benchmarks/otel_sdk_span/requirements_scenario.txt
similarity index 100%
rename from benchmarks/otel_sdk_span/requirements_scenario.txt
rename to dd-trace-py/benchmarks/otel_sdk_span/requirements_scenario.txt
diff --git a/benchmarks/otel_sdk_span/scenario.py b/dd-trace-py/benchmarks/otel_sdk_span/scenario.py
similarity index 100%
rename from benchmarks/otel_sdk_span/scenario.py
rename to dd-trace-py/benchmarks/otel_sdk_span/scenario.py
diff --git a/benchmarks/otel_span/config.yaml b/dd-trace-py/benchmarks/otel_span/config.yaml
similarity index 100%
rename from benchmarks/otel_span/config.yaml
rename to dd-trace-py/benchmarks/otel_span/config.yaml
diff --git a/benchmarks/otel_span/requirements_scenario.txt b/dd-trace-py/benchmarks/otel_span/requirements_scenario.txt
similarity index 100%
rename from benchmarks/otel_span/requirements_scenario.txt
rename to dd-trace-py/benchmarks/otel_span/requirements_scenario.txt
diff --git a/benchmarks/otel_span/scenario.py b/dd-trace-py/benchmarks/otel_span/scenario.py
similarity index 100%
rename from benchmarks/otel_span/scenario.py
rename to dd-trace-py/benchmarks/otel_span/scenario.py
diff --git a/benchmarks/packages_package_for_root_module_mapping/config.yaml b/dd-trace-py/benchmarks/packages_package_for_root_module_mapping/config.yaml
similarity index 100%
rename from benchmarks/packages_package_for_root_module_mapping/config.yaml
rename to dd-trace-py/benchmarks/packages_package_for_root_module_mapping/config.yaml
diff --git a/benchmarks/packages_package_for_root_module_mapping/requirements_scenario.txt b/dd-trace-py/benchmarks/packages_package_for_root_module_mapping/requirements_scenario.txt
similarity index 100%
rename from benchmarks/packages_package_for_root_module_mapping/requirements_scenario.txt
rename to dd-trace-py/benchmarks/packages_package_for_root_module_mapping/requirements_scenario.txt
diff --git a/benchmarks/packages_package_for_root_module_mapping/scenario.py b/dd-trace-py/benchmarks/packages_package_for_root_module_mapping/scenario.py
similarity index 100%
rename from benchmarks/packages_package_for_root_module_mapping/scenario.py
rename to dd-trace-py/benchmarks/packages_package_for_root_module_mapping/scenario.py
diff --git a/benchmarks/packages_update_imported_dependencies/config.yaml b/dd-trace-py/benchmarks/packages_update_imported_dependencies/config.yaml
similarity index 100%
rename from benchmarks/packages_update_imported_dependencies/config.yaml
rename to dd-trace-py/benchmarks/packages_update_imported_dependencies/config.yaml
diff --git a/benchmarks/packages_update_imported_dependencies/requirements_scenario.txt b/dd-trace-py/benchmarks/packages_update_imported_dependencies/requirements_scenario.txt
similarity index 100%
rename from benchmarks/packages_update_imported_dependencies/requirements_scenario.txt
rename to dd-trace-py/benchmarks/packages_update_imported_dependencies/requirements_scenario.txt
diff --git a/benchmarks/packages_update_imported_dependencies/scenario.py b/dd-trace-py/benchmarks/packages_update_imported_dependencies/scenario.py
similarity index 100%
rename from benchmarks/packages_update_imported_dependencies/scenario.py
rename to dd-trace-py/benchmarks/packages_update_imported_dependencies/scenario.py
diff --git a/benchmarks/rand/config.yaml b/dd-trace-py/benchmarks/rand/config.yaml
similarity index 100%
rename from benchmarks/rand/config.yaml
rename to dd-trace-py/benchmarks/rand/config.yaml
diff --git a/benchmarks/rand/scenario.py b/dd-trace-py/benchmarks/rand/scenario.py
similarity index 100%
rename from benchmarks/rand/scenario.py
rename to dd-trace-py/benchmarks/rand/scenario.py
diff --git a/benchmarks/rate_limiter/config.yaml b/dd-trace-py/benchmarks/rate_limiter/config.yaml
similarity index 100%
rename from benchmarks/rate_limiter/config.yaml
rename to dd-trace-py/benchmarks/rate_limiter/config.yaml
diff --git a/benchmarks/rate_limiter/scenario.py b/dd-trace-py/benchmarks/rate_limiter/scenario.py
similarity index 100%
rename from benchmarks/rate_limiter/scenario.py
rename to dd-trace-py/benchmarks/rate_limiter/scenario.py
diff --git a/benchmarks/recursive_computation/config.yaml b/dd-trace-py/benchmarks/recursive_computation/config.yaml
similarity index 100%
rename from benchmarks/recursive_computation/config.yaml
rename to dd-trace-py/benchmarks/recursive_computation/config.yaml
diff --git a/benchmarks/recursive_computation/scenario.py b/dd-trace-py/benchmarks/recursive_computation/scenario.py
similarity index 100%
rename from benchmarks/recursive_computation/scenario.py
rename to dd-trace-py/benchmarks/recursive_computation/scenario.py
diff --git a/benchmarks/sampling_rule_matches/config.yaml b/dd-trace-py/benchmarks/sampling_rule_matches/config.yaml
similarity index 100%
rename from benchmarks/sampling_rule_matches/config.yaml
rename to dd-trace-py/benchmarks/sampling_rule_matches/config.yaml
diff --git a/benchmarks/sampling_rule_matches/scenario.py b/dd-trace-py/benchmarks/sampling_rule_matches/scenario.py
similarity index 100%
rename from benchmarks/sampling_rule_matches/scenario.py
rename to dd-trace-py/benchmarks/sampling_rule_matches/scenario.py
diff --git a/benchmarks/set_http_meta/config.yaml b/dd-trace-py/benchmarks/set_http_meta/config.yaml
similarity index 100%
rename from benchmarks/set_http_meta/config.yaml
rename to dd-trace-py/benchmarks/set_http_meta/config.yaml
diff --git a/benchmarks/set_http_meta/scenario.py b/dd-trace-py/benchmarks/set_http_meta/scenario.py
similarity index 100%
rename from benchmarks/set_http_meta/scenario.py
rename to dd-trace-py/benchmarks/set_http_meta/scenario.py
diff --git a/benchmarks/span/config.yaml b/dd-trace-py/benchmarks/span/config.yaml
similarity index 100%
rename from benchmarks/span/config.yaml
rename to dd-trace-py/benchmarks/span/config.yaml
diff --git a/benchmarks/span/scenario.py b/dd-trace-py/benchmarks/span/scenario.py
similarity index 100%
rename from benchmarks/span/scenario.py
rename to dd-trace-py/benchmarks/span/scenario.py
diff --git a/benchmarks/startup/config.yaml b/dd-trace-py/benchmarks/startup/config.yaml
similarity index 100%
rename from benchmarks/startup/config.yaml
rename to dd-trace-py/benchmarks/startup/config.yaml
diff --git a/benchmarks/startup/requirements_scenario.txt b/dd-trace-py/benchmarks/startup/requirements_scenario.txt
similarity index 100%
rename from benchmarks/startup/requirements_scenario.txt
rename to dd-trace-py/benchmarks/startup/requirements_scenario.txt
diff --git a/benchmarks/startup/scenario.py b/dd-trace-py/benchmarks/startup/scenario.py
similarity index 100%
rename from benchmarks/startup/scenario.py
rename to dd-trace-py/benchmarks/startup/scenario.py
diff --git a/benchmarks/suitespec.yml b/dd-trace-py/benchmarks/suitespec.yml
similarity index 100%
rename from benchmarks/suitespec.yml
rename to dd-trace-py/benchmarks/suitespec.yml
diff --git a/benchmarks/telemetry_add_metric/config.yaml b/dd-trace-py/benchmarks/telemetry_add_metric/config.yaml
similarity index 100%
rename from benchmarks/telemetry_add_metric/config.yaml
rename to dd-trace-py/benchmarks/telemetry_add_metric/config.yaml
diff --git a/benchmarks/telemetry_add_metric/scenario.py b/dd-trace-py/benchmarks/telemetry_add_metric/scenario.py
similarity index 100%
rename from benchmarks/telemetry_add_metric/scenario.py
rename to dd-trace-py/benchmarks/telemetry_add_metric/scenario.py
diff --git a/benchmarks/telemetry_dependencies/config.yaml b/dd-trace-py/benchmarks/telemetry_dependencies/config.yaml
similarity index 100%
rename from benchmarks/telemetry_dependencies/config.yaml
rename to dd-trace-py/benchmarks/telemetry_dependencies/config.yaml
diff --git a/benchmarks/telemetry_dependencies/scenario.py b/dd-trace-py/benchmarks/telemetry_dependencies/scenario.py
similarity index 100%
rename from benchmarks/telemetry_dependencies/scenario.py
rename to dd-trace-py/benchmarks/telemetry_dependencies/scenario.py
diff --git a/benchmarks/threading/README.rst b/dd-trace-py/benchmarks/threading/README.rst
similarity index 100%
rename from benchmarks/threading/README.rst
rename to dd-trace-py/benchmarks/threading/README.rst
diff --git a/benchmarks/threading/config.yaml b/dd-trace-py/benchmarks/threading/config.yaml
similarity index 100%
rename from benchmarks/threading/config.yaml
rename to dd-trace-py/benchmarks/threading/config.yaml
diff --git a/benchmarks/threading/scenario.py b/dd-trace-py/benchmarks/threading/scenario.py
similarity index 100%
rename from benchmarks/threading/scenario.py
rename to dd-trace-py/benchmarks/threading/scenario.py
diff --git a/benchmarks/tracer/config.yaml b/dd-trace-py/benchmarks/tracer/config.yaml
similarity index 100%
rename from benchmarks/tracer/config.yaml
rename to dd-trace-py/benchmarks/tracer/config.yaml
diff --git a/benchmarks/tracer/scenario.py b/dd-trace-py/benchmarks/tracer/scenario.py
similarity index 100%
rename from benchmarks/tracer/scenario.py
rename to dd-trace-py/benchmarks/tracer/scenario.py
diff --git a/ci/coverage/requirements.in b/dd-trace-py/ci/coverage/requirements.in
similarity index 100%
rename from ci/coverage/requirements.in
rename to dd-trace-py/ci/coverage/requirements.in
diff --git a/ci/coverage/requirements.txt b/dd-trace-py/ci/coverage/requirements.txt
similarity index 100%
rename from ci/coverage/requirements.txt
rename to dd-trace-py/ci/coverage/requirements.txt
diff --git a/ci/requirements/README.md b/dd-trace-py/ci/requirements/README.md
similarity index 100%
rename from ci/requirements/README.md
rename to dd-trace-py/ci/requirements/README.md
diff --git a/ci/requirements/ci.in b/dd-trace-py/ci/requirements/ci.in
similarity index 100%
rename from ci/requirements/ci.in
rename to dd-trace-py/ci/requirements/ci.in
diff --git a/ci/requirements/ci.txt b/dd-trace-py/ci/requirements/ci.txt
similarity index 100%
rename from ci/requirements/ci.txt
rename to dd-trace-py/ci/requirements/ci.txt
diff --git a/cmake/AbseilDep.cmake b/dd-trace-py/cmake/AbseilDep.cmake
similarity index 100%
rename from cmake/AbseilDep.cmake
rename to dd-trace-py/cmake/AbseilDep.cmake
diff --git a/cmake/abseil/CMakeLists.txt b/dd-trace-py/cmake/abseil/CMakeLists.txt
similarity index 100%
rename from cmake/abseil/CMakeLists.txt
rename to dd-trace-py/cmake/abseil/CMakeLists.txt
diff --git a/commitlint.config.js b/dd-trace-py/commitlint.config.js
similarity index 100%
rename from commitlint.config.js
rename to dd-trace-py/commitlint.config.js
diff --git a/conftest.py b/dd-trace-py/conftest.py
similarity index 100%
rename from conftest.py
rename to dd-trace-py/conftest.py
diff --git a/ddtrace/__init__.py b/dd-trace-py/ddtrace/__init__.py
similarity index 100%
rename from ddtrace/__init__.py
rename to dd-trace-py/ddtrace/__init__.py
diff --git a/ddtrace/_logger.py b/dd-trace-py/ddtrace/_logger.py
similarity index 100%
rename from ddtrace/_logger.py
rename to dd-trace-py/ddtrace/_logger.py
diff --git a/ddtrace/_monkey.py b/dd-trace-py/ddtrace/_monkey.py
similarity index 100%
rename from ddtrace/_monkey.py
rename to dd-trace-py/ddtrace/_monkey.py
diff --git a/ddtrace/_trace/__init__.py b/dd-trace-py/ddtrace/_trace/__init__.py
similarity index 100%
rename from ddtrace/_trace/__init__.py
rename to dd-trace-py/ddtrace/_trace/__init__.py
diff --git a/ddtrace/_trace/_inferred_proxy.py b/dd-trace-py/ddtrace/_trace/_inferred_proxy.py
similarity index 100%
rename from ddtrace/_trace/_inferred_proxy.py
rename to dd-trace-py/ddtrace/_trace/_inferred_proxy.py
diff --git a/ddtrace/_trace/_limits.py b/dd-trace-py/ddtrace/_trace/_limits.py
similarity index 100%
rename from ddtrace/_trace/_limits.py
rename to dd-trace-py/ddtrace/_trace/_limits.py
diff --git a/ddtrace/_trace/_span_link.py b/dd-trace-py/ddtrace/_trace/_span_link.py
similarity index 100%
rename from ddtrace/_trace/_span_link.py
rename to dd-trace-py/ddtrace/_trace/_span_link.py
diff --git a/ddtrace/_trace/_span_pointer.py b/dd-trace-py/ddtrace/_trace/_span_pointer.py
similarity index 100%
rename from ddtrace/_trace/_span_pointer.py
rename to dd-trace-py/ddtrace/_trace/_span_pointer.py
diff --git a/ddtrace/_trace/apm_filter.py b/dd-trace-py/ddtrace/_trace/apm_filter.py
similarity index 100%
rename from ddtrace/_trace/apm_filter.py
rename to dd-trace-py/ddtrace/_trace/apm_filter.py
diff --git a/ddtrace/_trace/context.py b/dd-trace-py/ddtrace/_trace/context.py
similarity index 100%
rename from ddtrace/_trace/context.py
rename to dd-trace-py/ddtrace/_trace/context.py
diff --git a/ddtrace/_trace/events.py b/dd-trace-py/ddtrace/_trace/events.py
similarity index 100%
rename from ddtrace/_trace/events.py
rename to dd-trace-py/ddtrace/_trace/events.py
diff --git a/ddtrace/_trace/filters.py b/dd-trace-py/ddtrace/_trace/filters.py
similarity index 100%
rename from ddtrace/_trace/filters.py
rename to dd-trace-py/ddtrace/_trace/filters.py
diff --git a/ddtrace/_trace/pin.py b/dd-trace-py/ddtrace/_trace/pin.py
similarity index 100%
rename from ddtrace/_trace/pin.py
rename to dd-trace-py/ddtrace/_trace/pin.py
diff --git a/ddtrace/_trace/processor/__init__.py b/dd-trace-py/ddtrace/_trace/processor/__init__.py
similarity index 100%
rename from ddtrace/_trace/processor/__init__.py
rename to dd-trace-py/ddtrace/_trace/processor/__init__.py
diff --git a/ddtrace/_trace/processor/resource_renaming.py b/dd-trace-py/ddtrace/_trace/processor/resource_renaming.py
similarity index 100%
rename from ddtrace/_trace/processor/resource_renaming.py
rename to dd-trace-py/ddtrace/_trace/processor/resource_renaming.py
diff --git a/ddtrace/_trace/product.py b/dd-trace-py/ddtrace/_trace/product.py
similarity index 100%
rename from ddtrace/_trace/product.py
rename to dd-trace-py/ddtrace/_trace/product.py
diff --git a/ddtrace/_trace/provider.py b/dd-trace-py/ddtrace/_trace/provider.py
similarity index 100%
rename from ddtrace/_trace/provider.py
rename to dd-trace-py/ddtrace/_trace/provider.py
diff --git a/ddtrace/_trace/sampler.py b/dd-trace-py/ddtrace/_trace/sampler.py
similarity index 100%
rename from ddtrace/_trace/sampler.py
rename to dd-trace-py/ddtrace/_trace/sampler.py
diff --git a/ddtrace/_trace/sampling_rule.py b/dd-trace-py/ddtrace/_trace/sampling_rule.py
similarity index 100%
rename from ddtrace/_trace/sampling_rule.py
rename to dd-trace-py/ddtrace/_trace/sampling_rule.py
diff --git a/ddtrace/_trace/span.py b/dd-trace-py/ddtrace/_trace/span.py
similarity index 100%
rename from ddtrace/_trace/span.py
rename to dd-trace-py/ddtrace/_trace/span.py
diff --git a/ddtrace/_trace/subscribers/__init__.py b/dd-trace-py/ddtrace/_trace/subscribers/__init__.py
similarity index 100%
rename from ddtrace/_trace/subscribers/__init__.py
rename to dd-trace-py/ddtrace/_trace/subscribers/__init__.py
diff --git a/ddtrace/_trace/subscribers/_base.py b/dd-trace-py/ddtrace/_trace/subscribers/_base.py
similarity index 100%
rename from ddtrace/_trace/subscribers/_base.py
rename to dd-trace-py/ddtrace/_trace/subscribers/_base.py
diff --git a/ddtrace/_trace/subscribers/http_client.py b/dd-trace-py/ddtrace/_trace/subscribers/http_client.py
similarity index 100%
rename from ddtrace/_trace/subscribers/http_client.py
rename to dd-trace-py/ddtrace/_trace/subscribers/http_client.py
diff --git a/ddtrace/_trace/subscribers/llm.py b/dd-trace-py/ddtrace/_trace/subscribers/llm.py
similarity index 100%
rename from ddtrace/_trace/subscribers/llm.py
rename to dd-trace-py/ddtrace/_trace/subscribers/llm.py
diff --git a/ddtrace/_trace/subscribers/ray.py b/dd-trace-py/ddtrace/_trace/subscribers/ray.py
similarity index 100%
rename from ddtrace/_trace/subscribers/ray.py
rename to dd-trace-py/ddtrace/_trace/subscribers/ray.py
diff --git a/ddtrace/_trace/subscribers/web_framework.py b/dd-trace-py/ddtrace/_trace/subscribers/web_framework.py
similarity index 100%
rename from ddtrace/_trace/subscribers/web_framework.py
rename to dd-trace-py/ddtrace/_trace/subscribers/web_framework.py
diff --git a/ddtrace/_trace/telemetry.py b/dd-trace-py/ddtrace/_trace/telemetry.py
similarity index 100%
rename from ddtrace/_trace/telemetry.py
rename to dd-trace-py/ddtrace/_trace/telemetry.py
diff --git a/ddtrace/_trace/trace_handlers.py b/dd-trace-py/ddtrace/_trace/trace_handlers.py
similarity index 100%
rename from ddtrace/_trace/trace_handlers.py
rename to dd-trace-py/ddtrace/_trace/trace_handlers.py
diff --git a/ddtrace/_trace/tracer.py b/dd-trace-py/ddtrace/_trace/tracer.py
similarity index 100%
rename from ddtrace/_trace/tracer.py
rename to dd-trace-py/ddtrace/_trace/tracer.py
diff --git a/ddtrace/_trace/types.py b/dd-trace-py/ddtrace/_trace/types.py
similarity index 100%
rename from ddtrace/_trace/types.py
rename to dd-trace-py/ddtrace/_trace/types.py
diff --git a/ddtrace/_trace/utils.py b/dd-trace-py/ddtrace/_trace/utils.py
similarity index 100%
rename from ddtrace/_trace/utils.py
rename to dd-trace-py/ddtrace/_trace/utils.py
diff --git a/ddtrace/_trace/utils_botocore/__init__.py b/dd-trace-py/ddtrace/_trace/utils_botocore/__init__.py
similarity index 100%
rename from ddtrace/_trace/utils_botocore/__init__.py
rename to dd-trace-py/ddtrace/_trace/utils_botocore/__init__.py
diff --git a/ddtrace/_trace/utils_botocore/aws_payload_tagging.py b/dd-trace-py/ddtrace/_trace/utils_botocore/aws_payload_tagging.py
similarity index 100%
rename from ddtrace/_trace/utils_botocore/aws_payload_tagging.py
rename to dd-trace-py/ddtrace/_trace/utils_botocore/aws_payload_tagging.py
diff --git a/ddtrace/_trace/utils_botocore/span_pointers/__init__.py b/dd-trace-py/ddtrace/_trace/utils_botocore/span_pointers/__init__.py
similarity index 100%
rename from ddtrace/_trace/utils_botocore/span_pointers/__init__.py
rename to dd-trace-py/ddtrace/_trace/utils_botocore/span_pointers/__init__.py
diff --git a/ddtrace/_trace/utils_botocore/span_pointers/dynamodb.py b/dd-trace-py/ddtrace/_trace/utils_botocore/span_pointers/dynamodb.py
similarity index 100%
rename from ddtrace/_trace/utils_botocore/span_pointers/dynamodb.py
rename to dd-trace-py/ddtrace/_trace/utils_botocore/span_pointers/dynamodb.py
diff --git a/ddtrace/_trace/utils_botocore/span_pointers/s3.py b/dd-trace-py/ddtrace/_trace/utils_botocore/span_pointers/s3.py
similarity index 100%
rename from ddtrace/_trace/utils_botocore/span_pointers/s3.py
rename to dd-trace-py/ddtrace/_trace/utils_botocore/span_pointers/s3.py
diff --git a/ddtrace/_trace/utils_botocore/span_pointers/telemetry.py b/dd-trace-py/ddtrace/_trace/utils_botocore/span_pointers/telemetry.py
similarity index 100%
rename from ddtrace/_trace/utils_botocore/span_pointers/telemetry.py
rename to dd-trace-py/ddtrace/_trace/utils_botocore/span_pointers/telemetry.py
diff --git a/ddtrace/_trace/utils_botocore/span_tags.py b/dd-trace-py/ddtrace/_trace/utils_botocore/span_tags.py
similarity index 100%
rename from ddtrace/_trace/utils_botocore/span_tags.py
rename to dd-trace-py/ddtrace/_trace/utils_botocore/span_tags.py
diff --git a/ddtrace/_trace/utils_valkey.py b/dd-trace-py/ddtrace/_trace/utils_valkey.py
similarity index 100%
rename from ddtrace/_trace/utils_valkey.py
rename to dd-trace-py/ddtrace/_trace/utils_valkey.py
diff --git a/ddtrace/appsec/__init__.py b/dd-trace-py/ddtrace/appsec/__init__.py
similarity index 100%
rename from ddtrace/appsec/__init__.py
rename to dd-trace-py/ddtrace/appsec/__init__.py
diff --git a/ddtrace/appsec/_ai_guard/__init__.py b/dd-trace-py/ddtrace/appsec/_ai_guard/__init__.py
similarity index 100%
rename from ddtrace/appsec/_ai_guard/__init__.py
rename to dd-trace-py/ddtrace/appsec/_ai_guard/__init__.py
diff --git a/ddtrace/appsec/_ai_guard/_langchain.py b/dd-trace-py/ddtrace/appsec/_ai_guard/_langchain.py
similarity index 100%
rename from ddtrace/appsec/_ai_guard/_langchain.py
rename to dd-trace-py/ddtrace/appsec/_ai_guard/_langchain.py
diff --git a/ddtrace/appsec/_ai_guard/_listener.py b/dd-trace-py/ddtrace/appsec/_ai_guard/_listener.py
similarity index 100%
rename from ddtrace/appsec/_ai_guard/_listener.py
rename to dd-trace-py/ddtrace/appsec/_ai_guard/_listener.py
diff --git a/ddtrace/appsec/_ai_guard/messages.py b/dd-trace-py/ddtrace/appsec/_ai_guard/messages.py
similarity index 100%
rename from ddtrace/appsec/_ai_guard/messages.py
rename to dd-trace-py/ddtrace/appsec/_ai_guard/messages.py
diff --git a/ddtrace/appsec/_api_security/__init__.py b/dd-trace-py/ddtrace/appsec/_api_security/__init__.py
similarity index 100%
rename from ddtrace/appsec/_api_security/__init__.py
rename to dd-trace-py/ddtrace/appsec/_api_security/__init__.py
diff --git a/ddtrace/appsec/_api_security/api_manager.py b/dd-trace-py/ddtrace/appsec/_api_security/api_manager.py
similarity index 100%
rename from ddtrace/appsec/_api_security/api_manager.py
rename to dd-trace-py/ddtrace/appsec/_api_security/api_manager.py
diff --git a/ddtrace/appsec/_asm_request_context.py b/dd-trace-py/ddtrace/appsec/_asm_request_context.py
similarity index 100%
rename from ddtrace/appsec/_asm_request_context.py
rename to dd-trace-py/ddtrace/appsec/_asm_request_context.py
diff --git a/ddtrace/appsec/_capabilities.py b/dd-trace-py/ddtrace/appsec/_capabilities.py
similarity index 100%
rename from ddtrace/appsec/_capabilities.py
rename to dd-trace-py/ddtrace/appsec/_capabilities.py
diff --git a/ddtrace/appsec/_common_module_patches.py b/dd-trace-py/ddtrace/appsec/_common_module_patches.py
similarity index 100%
rename from ddtrace/appsec/_common_module_patches.py
rename to dd-trace-py/ddtrace/appsec/_common_module_patches.py
diff --git a/ddtrace/appsec/_constants.py b/dd-trace-py/ddtrace/appsec/_constants.py
similarity index 100%
rename from ddtrace/appsec/_constants.py
rename to dd-trace-py/ddtrace/appsec/_constants.py
diff --git a/ddtrace/appsec/_contrib/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/__init__.py
diff --git a/ddtrace/appsec/_contrib/aws_lambda/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/aws_lambda/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/aws_lambda/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/aws_lambda/__init__.py
diff --git a/ddtrace/appsec/_contrib/django/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/django/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/django/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/django/__init__.py
diff --git a/ddtrace/appsec/_contrib/fastapi/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/fastapi/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/fastapi/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/fastapi/__init__.py
diff --git a/ddtrace/appsec/_contrib/flask/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/flask/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/flask/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/flask/__init__.py
diff --git a/ddtrace/appsec/_contrib/grpc/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/grpc/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/grpc/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/grpc/__init__.py
diff --git a/ddtrace/appsec/_contrib/httpx/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/httpx/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/httpx/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/httpx/__init__.py
diff --git a/ddtrace/appsec/_contrib/httpx/subscribers.py b/dd-trace-py/ddtrace/appsec/_contrib/httpx/subscribers.py
similarity index 100%
rename from ddtrace/appsec/_contrib/httpx/subscribers.py
rename to dd-trace-py/ddtrace/appsec/_contrib/httpx/subscribers.py
diff --git a/ddtrace/appsec/_contrib/stripe/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/stripe/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/stripe/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/stripe/__init__.py
diff --git a/ddtrace/appsec/_contrib/stripe/handlers.py b/dd-trace-py/ddtrace/appsec/_contrib/stripe/handlers.py
similarity index 100%
rename from ddtrace/appsec/_contrib/stripe/handlers.py
rename to dd-trace-py/ddtrace/appsec/_contrib/stripe/handlers.py
diff --git a/ddtrace/appsec/_contrib/stripe/patch.py b/dd-trace-py/ddtrace/appsec/_contrib/stripe/patch.py
similarity index 100%
rename from ddtrace/appsec/_contrib/stripe/patch.py
rename to dd-trace-py/ddtrace/appsec/_contrib/stripe/patch.py
diff --git a/ddtrace/appsec/_contrib/stripe/types.py b/dd-trace-py/ddtrace/appsec/_contrib/stripe/types.py
similarity index 100%
rename from ddtrace/appsec/_contrib/stripe/types.py
rename to dd-trace-py/ddtrace/appsec/_contrib/stripe/types.py
diff --git a/ddtrace/appsec/_contrib/tornado/__init__.py b/dd-trace-py/ddtrace/appsec/_contrib/tornado/__init__.py
similarity index 100%
rename from ddtrace/appsec/_contrib/tornado/__init__.py
rename to dd-trace-py/ddtrace/appsec/_contrib/tornado/__init__.py
diff --git a/ddtrace/appsec/_ddwaf/__init__.py b/dd-trace-py/ddtrace/appsec/_ddwaf/__init__.py
similarity index 100%
rename from ddtrace/appsec/_ddwaf/__init__.py
rename to dd-trace-py/ddtrace/appsec/_ddwaf/__init__.py
diff --git a/ddtrace/appsec/_ddwaf/ddwaf_types.py b/dd-trace-py/ddtrace/appsec/_ddwaf/ddwaf_types.py
similarity index 100%
rename from ddtrace/appsec/_ddwaf/ddwaf_types.py
rename to dd-trace-py/ddtrace/appsec/_ddwaf/ddwaf_types.py
diff --git a/ddtrace/appsec/_ddwaf/waf.py b/dd-trace-py/ddtrace/appsec/_ddwaf/waf.py
similarity index 100%
rename from ddtrace/appsec/_ddwaf/waf.py
rename to dd-trace-py/ddtrace/appsec/_ddwaf/waf.py
diff --git a/ddtrace/appsec/_ddwaf/waf_stubs.py b/dd-trace-py/ddtrace/appsec/_ddwaf/waf_stubs.py
similarity index 100%
rename from ddtrace/appsec/_ddwaf/waf_stubs.py
rename to dd-trace-py/ddtrace/appsec/_ddwaf/waf_stubs.py
diff --git a/ddtrace/appsec/_deduplications.py b/dd-trace-py/ddtrace/appsec/_deduplications.py
similarity index 100%
rename from ddtrace/appsec/_deduplications.py
rename to dd-trace-py/ddtrace/appsec/_deduplications.py
diff --git a/ddtrace/appsec/_exploit_prevention/__init__.py b/dd-trace-py/ddtrace/appsec/_exploit_prevention/__init__.py
similarity index 100%
rename from ddtrace/appsec/_exploit_prevention/__init__.py
rename to dd-trace-py/ddtrace/appsec/_exploit_prevention/__init__.py
diff --git a/ddtrace/appsec/_exploit_prevention/stack_traces.py b/dd-trace-py/ddtrace/appsec/_exploit_prevention/stack_traces.py
similarity index 100%
rename from ddtrace/appsec/_exploit_prevention/stack_traces.py
rename to dd-trace-py/ddtrace/appsec/_exploit_prevention/stack_traces.py
diff --git a/ddtrace/appsec/_handlers.py b/dd-trace-py/ddtrace/appsec/_handlers.py
similarity index 100%
rename from ddtrace/appsec/_handlers.py
rename to dd-trace-py/ddtrace/appsec/_handlers.py
diff --git a/ddtrace/appsec/_http_utils.py b/dd-trace-py/ddtrace/appsec/_http_utils.py
similarity index 100%
rename from ddtrace/appsec/_http_utils.py
rename to dd-trace-py/ddtrace/appsec/_http_utils.py
diff --git a/ddtrace/appsec/_iast/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/__init__.py
diff --git a/ddtrace/appsec/_iast/_ast/CMakeLists.txt b/dd-trace-py/ddtrace/appsec/_iast/_ast/CMakeLists.txt
similarity index 100%
rename from ddtrace/appsec/_iast/_ast/CMakeLists.txt
rename to dd-trace-py/ddtrace/appsec/_iast/_ast/CMakeLists.txt
diff --git a/ddtrace/appsec/_iast/_ast/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/_ast/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_ast/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_ast/__init__.py
diff --git a/ddtrace/appsec/_iast/_ast/ast_patching.py b/dd-trace-py/ddtrace/appsec/_iast/_ast/ast_patching.py
similarity index 100%
rename from ddtrace/appsec/_iast/_ast/ast_patching.py
rename to dd-trace-py/ddtrace/appsec/_iast/_ast/ast_patching.py
diff --git a/ddtrace/appsec/_iast/_ast/iastpatch.c b/dd-trace-py/ddtrace/appsec/_iast/_ast/iastpatch.c
similarity index 100%
rename from ddtrace/appsec/_iast/_ast/iastpatch.c
rename to dd-trace-py/ddtrace/appsec/_iast/_ast/iastpatch.c
diff --git a/ddtrace/appsec/_iast/_ast/iastpatch.pyi b/dd-trace-py/ddtrace/appsec/_iast/_ast/iastpatch.pyi
similarity index 100%
rename from ddtrace/appsec/_iast/_ast/iastpatch.pyi
rename to dd-trace-py/ddtrace/appsec/_iast/_ast/iastpatch.pyi
diff --git a/ddtrace/appsec/_iast/_ast/visitor.py b/dd-trace-py/ddtrace/appsec/_iast/_ast/visitor.py
similarity index 100%
rename from ddtrace/appsec/_iast/_ast/visitor.py
rename to dd-trace-py/ddtrace/appsec/_iast/_ast/visitor.py
diff --git a/ddtrace/appsec/_iast/_evidence_redaction/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_evidence_redaction/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/__init__.py
diff --git a/ddtrace/appsec/_iast/_evidence_redaction/_sensitive_handler.py b/dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/_sensitive_handler.py
similarity index 100%
rename from ddtrace/appsec/_iast/_evidence_redaction/_sensitive_handler.py
rename to dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/_sensitive_handler.py
diff --git a/ddtrace/appsec/_iast/_evidence_redaction/command_injection_sensitive_analyzer.py b/dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/command_injection_sensitive_analyzer.py
similarity index 100%
rename from ddtrace/appsec/_iast/_evidence_redaction/command_injection_sensitive_analyzer.py
rename to dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/command_injection_sensitive_analyzer.py
diff --git a/ddtrace/appsec/_iast/_evidence_redaction/default_sensitive_analyzer.py b/dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/default_sensitive_analyzer.py
similarity index 100%
rename from ddtrace/appsec/_iast/_evidence_redaction/default_sensitive_analyzer.py
rename to dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/default_sensitive_analyzer.py
diff --git a/ddtrace/appsec/_iast/_evidence_redaction/header_injection_sensitive_analyzer.py b/dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/header_injection_sensitive_analyzer.py
similarity index 100%
rename from ddtrace/appsec/_iast/_evidence_redaction/header_injection_sensitive_analyzer.py
rename to dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/header_injection_sensitive_analyzer.py
diff --git a/ddtrace/appsec/_iast/_evidence_redaction/sql_sensitive_analyzer.py b/dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/sql_sensitive_analyzer.py
similarity index 100%
rename from ddtrace/appsec/_iast/_evidence_redaction/sql_sensitive_analyzer.py
rename to dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/sql_sensitive_analyzer.py
diff --git a/ddtrace/appsec/_iast/_evidence_redaction/url_sensitive_analyzer.py b/dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/url_sensitive_analyzer.py
similarity index 100%
rename from ddtrace/appsec/_iast/_evidence_redaction/url_sensitive_analyzer.py
rename to dd-trace-py/ddtrace/appsec/_iast/_evidence_redaction/url_sensitive_analyzer.py
diff --git a/ddtrace/appsec/_iast/_handlers.py b/dd-trace-py/ddtrace/appsec/_iast/_handlers.py
similarity index 100%
rename from ddtrace/appsec/_iast/_handlers.py
rename to dd-trace-py/ddtrace/appsec/_iast/_handlers.py
diff --git a/ddtrace/appsec/_iast/_iast_env.py b/dd-trace-py/ddtrace/appsec/_iast/_iast_env.py
similarity index 100%
rename from ddtrace/appsec/_iast/_iast_env.py
rename to dd-trace-py/ddtrace/appsec/_iast/_iast_env.py
diff --git a/ddtrace/appsec/_iast/_iast_request_context.py b/dd-trace-py/ddtrace/appsec/_iast/_iast_request_context.py
similarity index 100%
rename from ddtrace/appsec/_iast/_iast_request_context.py
rename to dd-trace-py/ddtrace/appsec/_iast/_iast_request_context.py
diff --git a/ddtrace/appsec/_iast/_iast_request_context_base.py b/dd-trace-py/ddtrace/appsec/_iast/_iast_request_context_base.py
similarity index 100%
rename from ddtrace/appsec/_iast/_iast_request_context_base.py
rename to dd-trace-py/ddtrace/appsec/_iast/_iast_request_context_base.py
diff --git a/ddtrace/appsec/_iast/_langchain.py b/dd-trace-py/ddtrace/appsec/_iast/_langchain.py
similarity index 100%
rename from ddtrace/appsec/_iast/_langchain.py
rename to dd-trace-py/ddtrace/appsec/_iast/_langchain.py
diff --git a/ddtrace/appsec/_iast/_listener.py b/dd-trace-py/ddtrace/appsec/_iast/_listener.py
similarity index 100%
rename from ddtrace/appsec/_iast/_listener.py
rename to dd-trace-py/ddtrace/appsec/_iast/_listener.py
diff --git a/ddtrace/appsec/_iast/_loader.py b/dd-trace-py/ddtrace/appsec/_iast/_loader.py
similarity index 100%
rename from ddtrace/appsec/_iast/_loader.py
rename to dd-trace-py/ddtrace/appsec/_iast/_loader.py
diff --git a/ddtrace/appsec/_iast/_logs.py b/dd-trace-py/ddtrace/appsec/_iast/_logs.py
similarity index 100%
rename from ddtrace/appsec/_iast/_logs.py
rename to dd-trace-py/ddtrace/appsec/_iast/_logs.py
diff --git a/ddtrace/appsec/_iast/_metrics.py b/dd-trace-py/ddtrace/appsec/_iast/_metrics.py
similarity index 100%
rename from ddtrace/appsec/_iast/_metrics.py
rename to dd-trace-py/ddtrace/appsec/_iast/_metrics.py
diff --git a/ddtrace/appsec/_iast/_overhead_control_engine.py b/dd-trace-py/ddtrace/appsec/_iast/_overhead_control_engine.py
similarity index 100%
rename from ddtrace/appsec/_iast/_overhead_control_engine.py
rename to dd-trace-py/ddtrace/appsec/_iast/_overhead_control_engine.py
diff --git a/ddtrace/appsec/_iast/_patch_modules.py b/dd-trace-py/ddtrace/appsec/_iast/_patch_modules.py
similarity index 100%
rename from ddtrace/appsec/_iast/_patch_modules.py
rename to dd-trace-py/ddtrace/appsec/_iast/_patch_modules.py
diff --git a/ddtrace/appsec/_iast/_patches/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/_patches/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_patches/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_patches/__init__.py
diff --git a/ddtrace/appsec/_iast/_patches/json_tainting.py b/dd-trace-py/ddtrace/appsec/_iast/_patches/json_tainting.py
similarity index 100%
rename from ddtrace/appsec/_iast/_patches/json_tainting.py
rename to dd-trace-py/ddtrace/appsec/_iast/_patches/json_tainting.py
diff --git a/ddtrace/appsec/_iast/_pytest_plugin.py b/dd-trace-py/ddtrace/appsec/_iast/_pytest_plugin.py
similarity index 100%
rename from ddtrace/appsec/_iast/_pytest_plugin.py
rename to dd-trace-py/ddtrace/appsec/_iast/_pytest_plugin.py
diff --git a/ddtrace/appsec/_iast/_span_metrics.py b/dd-trace-py/ddtrace/appsec/_iast/_span_metrics.py
similarity index 100%
rename from ddtrace/appsec/_iast/_span_metrics.py
rename to dd-trace-py/ddtrace/appsec/_iast/_span_metrics.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/CMakeLists.txt b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/CMakeLists.txt
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/CMakeLists.txt
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/CMakeLists.txt
diff --git a/ddtrace/appsec/_iast/_taint_tracking/README.txt b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/README.txt
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/README.txt
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/README.txt
diff --git a/ddtrace/appsec/_iast/_taint_tracking/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/__init__.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_context.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_context.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_context.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_context.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_debug.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_debug.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_debug.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_debug.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_taint_objects.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_taint_objects.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_taint_objects.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_taint_objects.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_taint_objects_base.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_taint_objects_base.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_taint_objects_base.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_taint_objects_base.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/__init__.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/CMakeLists.txt b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/CMakeLists.txt
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/CMakeLists.txt
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/CMakeLists.txt
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/__init__.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/attr.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/attr.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/attr.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/attr.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/buffer_info.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/buffer_info.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/buffer_info.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/buffer_info.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/cast.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/cast.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/cast.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/cast.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/chrono.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/chrono.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/chrono.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/chrono.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/common.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/common.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/common.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/common.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/complex.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/complex.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/complex.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/complex.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/README.txt b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/README.txt
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/README.txt
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/README.txt
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/wrap_include_python_h.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/wrap_include_python_h.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/wrap_include_python_h.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/conduit/wrap_include_python_h.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/critical_section.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/critical_section.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/critical_section.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/critical_section.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/class.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/class.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/class.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/class.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/common.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/common.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/common.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/common.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/cpp_conduit.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/cpp_conduit.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/cpp_conduit.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/cpp_conduit.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/descr.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/descr.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/descr.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/descr.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/exception_translation.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/exception_translation.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/exception_translation.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/exception_translation.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/function_record_pyobject.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/function_record_pyobject.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/function_record_pyobject.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/function_record_pyobject.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/init.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/init.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/init.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/init.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/internals.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/internals.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/internals.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/internals.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/native_enum_data.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/native_enum_data.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/native_enum_data.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/native_enum_data.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/pybind11_namespace_macros.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/pybind11_namespace_macros.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/pybind11_namespace_macros.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/pybind11_namespace_macros.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/struct_smart_holder.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/struct_smart_holder.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/struct_smart_holder.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/struct_smart_holder.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/type_caster_base.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/type_caster_base.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/type_caster_base.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/type_caster_base.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/typeid.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/typeid.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/typeid.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/typeid.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/using_smart_holder.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/using_smart_holder.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/using_smart_holder.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/using_smart_holder.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/value_and_holder.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/value_and_holder.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/value_and_holder.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/detail/value_and_holder.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/common.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/common.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/common.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/common.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/matrix.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/matrix.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/matrix.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/matrix.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/tensor.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/tensor.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/tensor.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eigen/tensor.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/embed.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/embed.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/embed.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/embed.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eval.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eval.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eval.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/eval.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/functional.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/functional.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/functional.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/functional.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil_safe_call_once.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil_safe_call_once.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil_safe_call_once.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil_safe_call_once.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil_simple.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil_simple.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil_simple.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/gil_simple.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/iostream.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/iostream.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/iostream.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/iostream.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/native_enum.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/native_enum.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/native_enum.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/native_enum.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/numpy.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/numpy.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/numpy.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/numpy.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/operators.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/operators.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/operators.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/operators.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/options.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/options.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/options.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/options.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/pybind11.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/pybind11.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/pybind11.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/pybind11.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/pytypes.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/pytypes.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/pytypes.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/pytypes.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl/filesystem.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl/filesystem.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl/filesystem.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl/filesystem.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl_bind.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl_bind.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl_bind.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/stl_bind.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/subinterpreter.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/subinterpreter.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/subinterpreter.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/subinterpreter.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/trampoline_self_life_support.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/trampoline_self_life_support.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/trampoline_self_life_support.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/trampoline_self_life_support.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/type_caster_pyobject_ptr.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/type_caster_pyobject_ptr.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/type_caster_pyobject_ptr.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/type_caster_pyobject_ptr.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/typing.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/typing.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/typing.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/typing.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/warnings.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/warnings.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/warnings.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/include/pybind11/warnings.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/__init__.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/__main__.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/__main__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/__main__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/__main__.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/_version.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/_version.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/_version.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/_version.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/commands.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/commands.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/commands.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/commands.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/py.typed b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/py.typed
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/py.typed
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/py.typed
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/setup_helpers.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/setup_helpers.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/setup_helpers.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/pybind11/setup_helpers.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindCatch.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindCatch.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindCatch.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindCatch.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindEigen3.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindEigen3.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindEigen3.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindEigen3.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindPythonLibsNew.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindPythonLibsNew.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindPythonLibsNew.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/FindPythonLibsNew.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/JoinPaths.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/JoinPaths.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/JoinPaths.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/JoinPaths.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/__init__.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/check-style.sh b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/check-style.sh
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/check-style.sh
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/check-style.sh
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/cmake_uninstall.cmake.in b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/cmake_uninstall.cmake.in
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/cmake_uninstall.cmake.in
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/cmake_uninstall.cmake.in
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/codespell_ignore_lines_from_errors.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/codespell_ignore_lines_from_errors.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/codespell_ignore_lines_from_errors.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/codespell_ignore_lines_from_errors.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/libsize.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/libsize.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/libsize.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/libsize.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/make_changelog.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/make_changelog.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/make_changelog.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/make_changelog.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/make_global.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/make_global.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/make_global.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/make_global.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11.pc.in b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11.pc.in
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11.pc.in
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11.pc.in
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Common.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Common.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Common.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Common.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Config.cmake.in b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Config.cmake.in
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Config.cmake.in
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Config.cmake.in
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11GuessPythonExtSuffix.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11GuessPythonExtSuffix.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11GuessPythonExtSuffix.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11GuessPythonExtSuffix.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11NewTools.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11NewTools.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11NewTools.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11NewTools.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Tools.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Tools.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Tools.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/pybind11Tools.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/_vendor/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake
diff --git a/ddtrace/appsec/_iast/_taint_tracking/api/safe_context.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/safe_context.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/api/safe_context.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/safe_context.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/api/safe_context.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/safe_context.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/api/safe_context.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/safe_context.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/api/safe_initializer.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/safe_initializer.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/api/safe_initializer.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/safe_initializer.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/api/safe_initializer.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/safe_initializer.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/api/safe_initializer.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/safe_initializer.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/api/utils.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/utils.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/api/utils.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/api/utils.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects.py
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_extend.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_extend.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_extend.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_extend.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_extend.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_extend.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_extend.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_extend.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_format.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_format.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_format.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_format.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_format.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_format.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_format.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_format.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_index.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_index.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_index.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_index.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_index.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_index.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_index.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_index.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_join.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_join.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_join.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_join.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_join.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_join.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_join.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_join.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_modulo.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_modulo.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_modulo.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_modulo.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_modulo.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_modulo.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_modulo.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_modulo.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_operator_add.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_operator_add.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_operator_add.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_operator_add.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_operator_add.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_operator_add.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_operator_add.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_operator_add.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_slice.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_slice.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_slice.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_slice.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_slice.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_slice.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_slice.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_slice.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_split.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_split.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_split.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_split.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_split.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_split.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_split.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_split.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_str.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_str.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_str.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_str.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_str.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_str.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_str.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspect_str.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_exports.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_exports.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_exports.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_exports.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_os_path.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_os_path.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_os_path.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_os_path.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_os_path.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_os_path.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_os_path.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/aspects_os_path.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/helpers.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/helpers.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/helpers.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/helpers.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/aspects/helpers.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/helpers.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/aspects/helpers.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/aspects/helpers.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/clean.sh b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/clean.sh
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/clean.sh
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/clean.sh
diff --git a/ddtrace/appsec/_iast/_taint_tracking/constants.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/constants.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/constants.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/constants.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/context/_taint_engine_context.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/context/_taint_engine_context.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/context/_taint_engine_context.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/context/_taint_engine_context.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/context/taint_engine_context.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/context/taint_engine_context.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/context/taint_engine_context.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/context/taint_engine_context.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/context/taint_engine_context.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/context/taint_engine_context.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/context/taint_engine_context.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/context/taint_engine_context.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/generate_coverage.sh b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/generate_coverage.sh
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/generate_coverage.sh
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/generate_coverage.sh
diff --git a/ddtrace/appsec/_iast/_taint_tracking/initializer/initializer.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/initializer/initializer.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/initializer/initializer.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/initializer/initializer.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/initializer/initializer.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/initializer/initializer.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/initializer/initializer.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/initializer/initializer.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/native.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/native.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/native.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/native.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/source.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/source.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/taint_tracking/source.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/source.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/source.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/source.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/taint_tracking/source.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/source.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_range.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_range.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_range.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_range.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_range.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_range.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_range.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_range.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_tracking.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_tracking.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_tracking.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/taint_tracking.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/tainted_object.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/tainted_object.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/taint_tracking/tainted_object.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/tainted_object.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/tainted_object.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/tainted_object.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/taint_tracking/tainted_object.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/taint_tracking/tainted_object.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tainted_ops/tainted_ops.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tainted_ops/tainted_ops.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tainted_ops/tainted_ops.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tainted_ops/tainted_ops.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tainted_ops/tainted_ops.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tainted_ops/tainted_ops.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tainted_ops/tainted_ops.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tainted_ops/tainted_ops.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/CMakeLists.txt b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/CMakeLists.txt
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/CMakeLists.txt
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/CMakeLists.txt
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/pyenv_env.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/pyenv_env.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/pyenv_env.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/pyenv_env.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_add_aspect.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_add_aspect.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_add_aspect.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_add_aspect.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_api_common_replace.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_api_common_replace.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_api_common_replace.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_api_common_replace.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_common.hpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_common.hpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_common.hpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_common.hpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_helpers.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_helpers.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_helpers.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_helpers.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_index_aspect.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_index_aspect.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_index_aspect.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_index_aspect.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_modulo_aspect.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_modulo_aspect.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_modulo_aspect.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_modulo_aspect.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_origin_conversion.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_origin_conversion.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_origin_conversion.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_origin_conversion.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_other.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_other.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_other.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_other.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_safe_wrappers.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_safe_wrappers.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_safe_wrappers.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_safe_wrappers.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_secure_marks.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_secure_marks.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_secure_marks.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_secure_marks.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_stringutils.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_stringutils.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_stringutils.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_stringutils.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_taint_engine_context.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_taint_engine_context.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_taint_engine_context.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_taint_engine_context.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/tests/test_taintrange_origin.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_taintrange_origin.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/tests/test_taintrange_origin.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/tests/test_taintrange_origin.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/utils/generic_utils.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/generic_utils.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/utils/generic_utils.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/generic_utils.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/utils/generic_utils.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/generic_utils.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/utils/generic_utils.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/generic_utils.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/utils/python_error_guard.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/python_error_guard.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/utils/python_error_guard.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/python_error_guard.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/utils/python_error_guard.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/python_error_guard.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/utils/python_error_guard.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/python_error_guard.h
diff --git a/ddtrace/appsec/_iast/_taint_tracking/utils/string_utils.cpp b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/string_utils.cpp
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/utils/string_utils.cpp
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/string_utils.cpp
diff --git a/ddtrace/appsec/_iast/_taint_tracking/utils/string_utils.h b/dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/string_utils.h
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_tracking/utils/string_utils.h
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_tracking/utils/string_utils.h
diff --git a/ddtrace/appsec/_iast/_taint_utils.py b/dd-trace-py/ddtrace/appsec/_iast/_taint_utils.py
similarity index 100%
rename from ddtrace/appsec/_iast/_taint_utils.py
rename to dd-trace-py/ddtrace/appsec/_iast/_taint_utils.py
diff --git a/ddtrace/appsec/_iast/_utils.py b/dd-trace-py/ddtrace/appsec/_iast/_utils.py
similarity index 100%
rename from ddtrace/appsec/_iast/_utils.py
rename to dd-trace-py/ddtrace/appsec/_iast/_utils.py
diff --git a/ddtrace/appsec/_iast/constants.py b/dd-trace-py/ddtrace/appsec/_iast/constants.py
similarity index 100%
rename from ddtrace/appsec/_iast/constants.py
rename to dd-trace-py/ddtrace/appsec/_iast/constants.py
diff --git a/ddtrace/appsec/_iast/main.py b/dd-trace-py/ddtrace/appsec/_iast/main.py
similarity index 100%
rename from ddtrace/appsec/_iast/main.py
rename to dd-trace-py/ddtrace/appsec/_iast/main.py
diff --git a/ddtrace/appsec/_iast/processor.py b/dd-trace-py/ddtrace/appsec/_iast/processor.py
similarity index 100%
rename from ddtrace/appsec/_iast/processor.py
rename to dd-trace-py/ddtrace/appsec/_iast/processor.py
diff --git a/ddtrace/appsec/_iast/reporter.py b/dd-trace-py/ddtrace/appsec/_iast/reporter.py
similarity index 100%
rename from ddtrace/appsec/_iast/reporter.py
rename to dd-trace-py/ddtrace/appsec/_iast/reporter.py
diff --git a/ddtrace/appsec/_iast/sampling/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/sampling/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/sampling/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/sampling/__init__.py
diff --git a/ddtrace/appsec/_iast/sampling/vulnerability_detection.py b/dd-trace-py/ddtrace/appsec/_iast/sampling/vulnerability_detection.py
similarity index 100%
rename from ddtrace/appsec/_iast/sampling/vulnerability_detection.py
rename to dd-trace-py/ddtrace/appsec/_iast/sampling/vulnerability_detection.py
diff --git a/ddtrace/appsec/_iast/secure_marks/README_CONFIGURATION.md b/dd-trace-py/ddtrace/appsec/_iast/secure_marks/README_CONFIGURATION.md
similarity index 100%
rename from ddtrace/appsec/_iast/secure_marks/README_CONFIGURATION.md
rename to dd-trace-py/ddtrace/appsec/_iast/secure_marks/README_CONFIGURATION.md
diff --git a/ddtrace/appsec/_iast/secure_marks/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/secure_marks/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/secure_marks/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/secure_marks/__init__.py
diff --git a/ddtrace/appsec/_iast/secure_marks/base.py b/dd-trace-py/ddtrace/appsec/_iast/secure_marks/base.py
similarity index 100%
rename from ddtrace/appsec/_iast/secure_marks/base.py
rename to dd-trace-py/ddtrace/appsec/_iast/secure_marks/base.py
diff --git a/ddtrace/appsec/_iast/secure_marks/configuration.py b/dd-trace-py/ddtrace/appsec/_iast/secure_marks/configuration.py
similarity index 100%
rename from ddtrace/appsec/_iast/secure_marks/configuration.py
rename to dd-trace-py/ddtrace/appsec/_iast/secure_marks/configuration.py
diff --git a/ddtrace/appsec/_iast/secure_marks/sanitizers.py b/dd-trace-py/ddtrace/appsec/_iast/secure_marks/sanitizers.py
similarity index 100%
rename from ddtrace/appsec/_iast/secure_marks/sanitizers.py
rename to dd-trace-py/ddtrace/appsec/_iast/secure_marks/sanitizers.py
diff --git a/ddtrace/appsec/_iast/secure_marks/validators.py b/dd-trace-py/ddtrace/appsec/_iast/secure_marks/validators.py
similarity index 100%
rename from ddtrace/appsec/_iast/secure_marks/validators.py
rename to dd-trace-py/ddtrace/appsec/_iast/secure_marks/validators.py
diff --git a/ddtrace/appsec/_iast/sources/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/sources/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/sources/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/sources/__init__.py
diff --git a/ddtrace/appsec/_iast/sources/ast_taint.py b/dd-trace-py/ddtrace/appsec/_iast/sources/ast_taint.py
similarity index 100%
rename from ddtrace/appsec/_iast/sources/ast_taint.py
rename to dd-trace-py/ddtrace/appsec/_iast/sources/ast_taint.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/__init__.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/__init__.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/__init__.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/__init__.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/_base.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/_base.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/_base.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/_base.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/ast_taint.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/ast_taint.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/ast_taint.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/ast_taint.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/code_injection.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/code_injection.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/code_injection.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/code_injection.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/command_injection.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/command_injection.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/command_injection.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/command_injection.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/header_injection.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/header_injection.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/header_injection.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/header_injection.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/insecure_cookie.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/insecure_cookie.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/insecure_cookie.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/insecure_cookie.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/path_traversal.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/path_traversal.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/path_traversal.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/path_traversal.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/sql_injection.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/sql_injection.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/sql_injection.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/sql_injection.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/ssrf.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/ssrf.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/ssrf.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/ssrf.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/stacktrace_leak.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/stacktrace_leak.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/stacktrace_leak.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/stacktrace_leak.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/untrusted_serialization.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/untrusted_serialization.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/untrusted_serialization.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/untrusted_serialization.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/unvalidated_redirect.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/unvalidated_redirect.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/unvalidated_redirect.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/unvalidated_redirect.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/weak_cipher.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/weak_cipher.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/weak_cipher.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/weak_cipher.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/weak_hash.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/weak_hash.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/weak_hash.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/weak_hash.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/weak_randomness.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/weak_randomness.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/weak_randomness.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/weak_randomness.py
diff --git a/ddtrace/appsec/_iast/taint_sinks/xss.py b/dd-trace-py/ddtrace/appsec/_iast/taint_sinks/xss.py
similarity index 100%
rename from ddtrace/appsec/_iast/taint_sinks/xss.py
rename to dd-trace-py/ddtrace/appsec/_iast/taint_sinks/xss.py
diff --git a/ddtrace/appsec/_listeners.py b/dd-trace-py/ddtrace/appsec/_listeners.py
similarity index 100%
rename from ddtrace/appsec/_listeners.py
rename to dd-trace-py/ddtrace/appsec/_listeners.py
diff --git a/ddtrace/appsec/_metrics.py b/dd-trace-py/ddtrace/appsec/_metrics.py
similarity index 100%
rename from ddtrace/appsec/_metrics.py
rename to dd-trace-py/ddtrace/appsec/_metrics.py
diff --git a/ddtrace/appsec/_patch_utils.py b/dd-trace-py/ddtrace/appsec/_patch_utils.py
similarity index 100%
rename from ddtrace/appsec/_patch_utils.py
rename to dd-trace-py/ddtrace/appsec/_patch_utils.py
diff --git a/ddtrace/appsec/_processor.py b/dd-trace-py/ddtrace/appsec/_processor.py
similarity index 100%
rename from ddtrace/appsec/_processor.py
rename to dd-trace-py/ddtrace/appsec/_processor.py
diff --git a/ddtrace/appsec/_python_info/__init__.py b/dd-trace-py/ddtrace/appsec/_python_info/__init__.py
similarity index 100%
rename from ddtrace/appsec/_python_info/__init__.py
rename to dd-trace-py/ddtrace/appsec/_python_info/__init__.py
diff --git a/ddtrace/appsec/_remoteconfiguration.py b/dd-trace-py/ddtrace/appsec/_remoteconfiguration.py
similarity index 100%
rename from ddtrace/appsec/_remoteconfiguration.py
rename to dd-trace-py/ddtrace/appsec/_remoteconfiguration.py
diff --git a/ddtrace/appsec/_shared/__init__.py b/dd-trace-py/ddtrace/appsec/_shared/__init__.py
similarity index 100%
rename from ddtrace/appsec/_shared/__init__.py
rename to dd-trace-py/ddtrace/appsec/_shared/__init__.py
diff --git a/ddtrace/appsec/_shared/_stacktrace.c b/dd-trace-py/ddtrace/appsec/_shared/_stacktrace.c
similarity index 100%
rename from ddtrace/appsec/_shared/_stacktrace.c
rename to dd-trace-py/ddtrace/appsec/_shared/_stacktrace.c
diff --git a/ddtrace/appsec/_shared/_stacktrace.pyi b/dd-trace-py/ddtrace/appsec/_shared/_stacktrace.pyi
similarity index 100%
rename from ddtrace/appsec/_shared/_stacktrace.pyi
rename to dd-trace-py/ddtrace/appsec/_shared/_stacktrace.pyi
diff --git a/ddtrace/appsec/_trace_utils.py b/dd-trace-py/ddtrace/appsec/_trace_utils.py
similarity index 100%
rename from ddtrace/appsec/_trace_utils.py
rename to dd-trace-py/ddtrace/appsec/_trace_utils.py
diff --git a/ddtrace/appsec/_utils.py b/dd-trace-py/ddtrace/appsec/_utils.py
similarity index 100%
rename from ddtrace/appsec/_utils.py
rename to dd-trace-py/ddtrace/appsec/_utils.py
diff --git a/ddtrace/appsec/ai_guard/__init__.py b/dd-trace-py/ddtrace/appsec/ai_guard/__init__.py
similarity index 100%
rename from ddtrace/appsec/ai_guard/__init__.py
rename to dd-trace-py/ddtrace/appsec/ai_guard/__init__.py
diff --git a/ddtrace/appsec/ai_guard/_api_client.py b/dd-trace-py/ddtrace/appsec/ai_guard/_api_client.py
similarity index 100%
rename from ddtrace/appsec/ai_guard/_api_client.py
rename to dd-trace-py/ddtrace/appsec/ai_guard/_api_client.py
diff --git a/ddtrace/appsec/ai_guard/integrations/__init__.py b/dd-trace-py/ddtrace/appsec/ai_guard/integrations/__init__.py
similarity index 100%
rename from ddtrace/appsec/ai_guard/integrations/__init__.py
rename to dd-trace-py/ddtrace/appsec/ai_guard/integrations/__init__.py
diff --git a/ddtrace/appsec/ai_guard/integrations/litellm.py b/dd-trace-py/ddtrace/appsec/ai_guard/integrations/litellm.py
similarity index 100%
rename from ddtrace/appsec/ai_guard/integrations/litellm.py
rename to dd-trace-py/ddtrace/appsec/ai_guard/integrations/litellm.py
diff --git a/ddtrace/appsec/ai_guard/integrations/strands.py b/dd-trace-py/ddtrace/appsec/ai_guard/integrations/strands.py
similarity index 100%
rename from ddtrace/appsec/ai_guard/integrations/strands.py
rename to dd-trace-py/ddtrace/appsec/ai_guard/integrations/strands.py
diff --git a/ddtrace/appsec/iast/__init__.py b/dd-trace-py/ddtrace/appsec/iast/__init__.py
similarity index 100%
rename from ddtrace/appsec/iast/__init__.py
rename to dd-trace-py/ddtrace/appsec/iast/__init__.py
diff --git a/ddtrace/appsec/rules.json b/dd-trace-py/ddtrace/appsec/rules.json
similarity index 100%
rename from ddtrace/appsec/rules.json
rename to dd-trace-py/ddtrace/appsec/rules.json
diff --git a/ddtrace/appsec/sca/__init__.py b/dd-trace-py/ddtrace/appsec/sca/__init__.py
similarity index 100%
rename from ddtrace/appsec/sca/__init__.py
rename to dd-trace-py/ddtrace/appsec/sca/__init__.py
diff --git a/ddtrace/appsec/sca/_cve_data.json b/dd-trace-py/ddtrace/appsec/sca/_cve_data.json
similarity index 100%
rename from ddtrace/appsec/sca/_cve_data.json
rename to dd-trace-py/ddtrace/appsec/sca/_cve_data.json
diff --git a/ddtrace/appsec/sca/_cve_loader.py b/dd-trace-py/ddtrace/appsec/sca/_cve_loader.py
similarity index 100%
rename from ddtrace/appsec/sca/_cve_loader.py
rename to dd-trace-py/ddtrace/appsec/sca/_cve_loader.py
diff --git a/ddtrace/appsec/sca/_instrumenter.py b/dd-trace-py/ddtrace/appsec/sca/_instrumenter.py
similarity index 100%
rename from ddtrace/appsec/sca/_instrumenter.py
rename to dd-trace-py/ddtrace/appsec/sca/_instrumenter.py
diff --git a/ddtrace/appsec/sca/_registry.py b/dd-trace-py/ddtrace/appsec/sca/_registry.py
similarity index 100%
rename from ddtrace/appsec/sca/_registry.py
rename to dd-trace-py/ddtrace/appsec/sca/_registry.py
diff --git a/ddtrace/appsec/sca/_resolver.py b/dd-trace-py/ddtrace/appsec/sca/_resolver.py
similarity index 100%
rename from ddtrace/appsec/sca/_resolver.py
rename to dd-trace-py/ddtrace/appsec/sca/_resolver.py
diff --git a/ddtrace/appsec/trace_utils/__init__.py b/dd-trace-py/ddtrace/appsec/trace_utils/__init__.py
similarity index 100%
rename from ddtrace/appsec/trace_utils/__init__.py
rename to dd-trace-py/ddtrace/appsec/trace_utils/__init__.py
diff --git a/ddtrace/appsec/track_user_sdk.py b/dd-trace-py/ddtrace/appsec/track_user_sdk.py
similarity index 100%
rename from ddtrace/appsec/track_user_sdk.py
rename to dd-trace-py/ddtrace/appsec/track_user_sdk.py
diff --git a/ddtrace/auto.py b/dd-trace-py/ddtrace/auto.py
similarity index 100%
rename from ddtrace/auto.py
rename to dd-trace-py/ddtrace/auto.py
diff --git a/ddtrace/bootstrap/__init__.py b/dd-trace-py/ddtrace/bootstrap/__init__.py
similarity index 100%
rename from ddtrace/bootstrap/__init__.py
rename to dd-trace-py/ddtrace/bootstrap/__init__.py
diff --git a/ddtrace/bootstrap/cloning.py b/dd-trace-py/ddtrace/bootstrap/cloning.py
similarity index 100%
rename from ddtrace/bootstrap/cloning.py
rename to dd-trace-py/ddtrace/bootstrap/cloning.py
diff --git a/ddtrace/bootstrap/preload.py b/dd-trace-py/ddtrace/bootstrap/preload.py
similarity index 100%
rename from ddtrace/bootstrap/preload.py
rename to dd-trace-py/ddtrace/bootstrap/preload.py
diff --git a/ddtrace/bootstrap/sitecustomize.py b/dd-trace-py/ddtrace/bootstrap/sitecustomize.py
similarity index 100%
rename from ddtrace/bootstrap/sitecustomize.py
rename to dd-trace-py/ddtrace/bootstrap/sitecustomize.py
diff --git a/ddtrace/commands/__init__.py b/dd-trace-py/ddtrace/commands/__init__.py
similarity index 100%
rename from ddtrace/commands/__init__.py
rename to dd-trace-py/ddtrace/commands/__init__.py
diff --git a/ddtrace/commands/_dd_crashtracker_receiver.py b/dd-trace-py/ddtrace/commands/_dd_crashtracker_receiver.py
similarity index 100%
rename from ddtrace/commands/_dd_crashtracker_receiver.py
rename to dd-trace-py/ddtrace/commands/_dd_crashtracker_receiver.py
diff --git a/ddtrace/commands/ddtrace_run.py b/dd-trace-py/ddtrace/commands/ddtrace_run.py
similarity index 100%
rename from ddtrace/commands/ddtrace_run.py
rename to dd-trace-py/ddtrace/commands/ddtrace_run.py
diff --git a/ddtrace/constants.py b/dd-trace-py/ddtrace/constants.py
similarity index 100%
rename from ddtrace/constants.py
rename to dd-trace-py/ddtrace/constants.py
diff --git a/ddtrace/contrib/__init__.py b/dd-trace-py/ddtrace/contrib/__init__.py
similarity index 100%
rename from ddtrace/contrib/__init__.py
rename to dd-trace-py/ddtrace/contrib/__init__.py
diff --git a/ddtrace/contrib/_events/__init__.py b/dd-trace-py/ddtrace/contrib/_events/__init__.py
similarity index 100%
rename from ddtrace/contrib/_events/__init__.py
rename to dd-trace-py/ddtrace/contrib/_events/__init__.py
diff --git a/ddtrace/contrib/_events/http.py b/dd-trace-py/ddtrace/contrib/_events/http.py
similarity index 100%
rename from ddtrace/contrib/_events/http.py
rename to dd-trace-py/ddtrace/contrib/_events/http.py
diff --git a/ddtrace/contrib/_events/http_client.py b/dd-trace-py/ddtrace/contrib/_events/http_client.py
similarity index 100%
rename from ddtrace/contrib/_events/http_client.py
rename to dd-trace-py/ddtrace/contrib/_events/http_client.py
diff --git a/ddtrace/contrib/_events/llm.py b/dd-trace-py/ddtrace/contrib/_events/llm.py
similarity index 100%
rename from ddtrace/contrib/_events/llm.py
rename to dd-trace-py/ddtrace/contrib/_events/llm.py
diff --git a/ddtrace/contrib/_events/ray.py b/dd-trace-py/ddtrace/contrib/_events/ray.py
similarity index 100%
rename from ddtrace/contrib/_events/ray.py
rename to dd-trace-py/ddtrace/contrib/_events/ray.py
diff --git a/ddtrace/contrib/_events/web_framework.py b/dd-trace-py/ddtrace/contrib/_events/web_framework.py
similarity index 100%
rename from ddtrace/contrib/_events/web_framework.py
rename to dd-trace-py/ddtrace/contrib/_events/web_framework.py
diff --git a/ddtrace/contrib/aiohttp.py b/dd-trace-py/ddtrace/contrib/aiohttp.py
similarity index 100%
rename from ddtrace/contrib/aiohttp.py
rename to dd-trace-py/ddtrace/contrib/aiohttp.py
diff --git a/ddtrace/contrib/asgi.py b/dd-trace-py/ddtrace/contrib/asgi.py
similarity index 100%
rename from ddtrace/contrib/asgi.py
rename to dd-trace-py/ddtrace/contrib/asgi.py
diff --git a/ddtrace/contrib/bottle.py b/dd-trace-py/ddtrace/contrib/bottle.py
similarity index 100%
rename from ddtrace/contrib/bottle.py
rename to dd-trace-py/ddtrace/contrib/bottle.py
diff --git a/ddtrace/contrib/celery.py b/dd-trace-py/ddtrace/contrib/celery.py
similarity index 100%
rename from ddtrace/contrib/celery.py
rename to dd-trace-py/ddtrace/contrib/celery.py
diff --git a/ddtrace/contrib/cherrypy.py b/dd-trace-py/ddtrace/contrib/cherrypy.py
similarity index 100%
rename from ddtrace/contrib/cherrypy.py
rename to dd-trace-py/ddtrace/contrib/cherrypy.py
diff --git a/ddtrace/contrib/dbapi.py b/dd-trace-py/ddtrace/contrib/dbapi.py
similarity index 100%
rename from ddtrace/contrib/dbapi.py
rename to dd-trace-py/ddtrace/contrib/dbapi.py
diff --git a/ddtrace/contrib/dbapi_async.py b/dd-trace-py/ddtrace/contrib/dbapi_async.py
similarity index 100%
rename from ddtrace/contrib/dbapi_async.py
rename to dd-trace-py/ddtrace/contrib/dbapi_async.py
diff --git a/ddtrace/contrib/falcon.py b/dd-trace-py/ddtrace/contrib/falcon.py
similarity index 100%
rename from ddtrace/contrib/falcon.py
rename to dd-trace-py/ddtrace/contrib/falcon.py
diff --git a/ddtrace/contrib/flask_cache.py b/dd-trace-py/ddtrace/contrib/flask_cache.py
similarity index 100%
rename from ddtrace/contrib/flask_cache.py
rename to dd-trace-py/ddtrace/contrib/flask_cache.py
diff --git a/ddtrace/contrib/internal/__init__.py b/dd-trace-py/ddtrace/contrib/internal/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/__init__.py
diff --git a/ddtrace/contrib/internal/aiobotocore/__init__.py b/dd-trace-py/ddtrace/contrib/internal/aiobotocore/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/aiobotocore/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/aiobotocore/__init__.py
diff --git a/ddtrace/contrib/internal/aiobotocore/patch.py b/dd-trace-py/ddtrace/contrib/internal/aiobotocore/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/aiobotocore/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/aiobotocore/patch.py
diff --git a/ddtrace/contrib/internal/aiohttp/__init__.py b/dd-trace-py/ddtrace/contrib/internal/aiohttp/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/aiohttp/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/aiohttp/__init__.py
diff --git a/ddtrace/contrib/internal/aiohttp/middlewares.py b/dd-trace-py/ddtrace/contrib/internal/aiohttp/middlewares.py
similarity index 100%
rename from ddtrace/contrib/internal/aiohttp/middlewares.py
rename to dd-trace-py/ddtrace/contrib/internal/aiohttp/middlewares.py
diff --git a/ddtrace/contrib/internal/aiohttp/patch.py b/dd-trace-py/ddtrace/contrib/internal/aiohttp/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/aiohttp/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/aiohttp/patch.py
diff --git a/ddtrace/contrib/internal/aiohttp_jinja2/__init__.py b/dd-trace-py/ddtrace/contrib/internal/aiohttp_jinja2/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/aiohttp_jinja2/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/aiohttp_jinja2/__init__.py
diff --git a/ddtrace/contrib/internal/aiohttp_jinja2/patch.py b/dd-trace-py/ddtrace/contrib/internal/aiohttp_jinja2/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/aiohttp_jinja2/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/aiohttp_jinja2/patch.py
diff --git a/ddtrace/contrib/internal/aiokafka/__init__.py b/dd-trace-py/ddtrace/contrib/internal/aiokafka/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/aiokafka/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/aiokafka/__init__.py
diff --git a/ddtrace/contrib/internal/aiokafka/patch.py b/dd-trace-py/ddtrace/contrib/internal/aiokafka/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/aiokafka/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/aiokafka/patch.py
diff --git a/ddtrace/contrib/internal/aiomysql/__init__.py b/dd-trace-py/ddtrace/contrib/internal/aiomysql/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/aiomysql/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/aiomysql/__init__.py
diff --git a/ddtrace/contrib/internal/aiomysql/patch.py b/dd-trace-py/ddtrace/contrib/internal/aiomysql/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/aiomysql/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/aiomysql/patch.py
diff --git a/ddtrace/contrib/internal/aiopg/__init__.py b/dd-trace-py/ddtrace/contrib/internal/aiopg/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/aiopg/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/aiopg/__init__.py
diff --git a/ddtrace/contrib/internal/aiopg/connection.py b/dd-trace-py/ddtrace/contrib/internal/aiopg/connection.py
similarity index 100%
rename from ddtrace/contrib/internal/aiopg/connection.py
rename to dd-trace-py/ddtrace/contrib/internal/aiopg/connection.py
diff --git a/ddtrace/contrib/internal/aiopg/patch.py b/dd-trace-py/ddtrace/contrib/internal/aiopg/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/aiopg/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/aiopg/patch.py
diff --git a/ddtrace/contrib/internal/algoliasearch/__init__.py b/dd-trace-py/ddtrace/contrib/internal/algoliasearch/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/algoliasearch/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/algoliasearch/__init__.py
diff --git a/ddtrace/contrib/internal/algoliasearch/patch.py b/dd-trace-py/ddtrace/contrib/internal/algoliasearch/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/algoliasearch/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/algoliasearch/patch.py
diff --git a/ddtrace/contrib/internal/anthropic/__init__.py b/dd-trace-py/ddtrace/contrib/internal/anthropic/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/anthropic/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/anthropic/__init__.py
diff --git a/ddtrace/contrib/internal/anthropic/_streaming.py b/dd-trace-py/ddtrace/contrib/internal/anthropic/_streaming.py
similarity index 100%
rename from ddtrace/contrib/internal/anthropic/_streaming.py
rename to dd-trace-py/ddtrace/contrib/internal/anthropic/_streaming.py
diff --git a/ddtrace/contrib/internal/anthropic/patch.py b/dd-trace-py/ddtrace/contrib/internal/anthropic/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/anthropic/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/anthropic/patch.py
diff --git a/ddtrace/contrib/internal/aredis/__init__.py b/dd-trace-py/ddtrace/contrib/internal/aredis/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/aredis/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/aredis/__init__.py
diff --git a/ddtrace/contrib/internal/aredis/patch.py b/dd-trace-py/ddtrace/contrib/internal/aredis/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/aredis/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/aredis/patch.py
diff --git a/ddtrace/contrib/internal/asgi/__init__.py b/dd-trace-py/ddtrace/contrib/internal/asgi/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/asgi/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/asgi/__init__.py
diff --git a/ddtrace/contrib/internal/asgi/middleware.py b/dd-trace-py/ddtrace/contrib/internal/asgi/middleware.py
similarity index 100%
rename from ddtrace/contrib/internal/asgi/middleware.py
rename to dd-trace-py/ddtrace/contrib/internal/asgi/middleware.py
diff --git a/ddtrace/contrib/internal/asgi/utils.py b/dd-trace-py/ddtrace/contrib/internal/asgi/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/asgi/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/asgi/utils.py
diff --git a/ddtrace/contrib/internal/asyncio/__init__.py b/dd-trace-py/ddtrace/contrib/internal/asyncio/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/asyncio/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/asyncio/__init__.py
diff --git a/ddtrace/contrib/internal/asyncio/patch.py b/dd-trace-py/ddtrace/contrib/internal/asyncio/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/asyncio/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/asyncio/patch.py
diff --git a/ddtrace/contrib/internal/asyncpg/__init__.py b/dd-trace-py/ddtrace/contrib/internal/asyncpg/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/asyncpg/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/asyncpg/__init__.py
diff --git a/ddtrace/contrib/internal/asyncpg/patch.py b/dd-trace-py/ddtrace/contrib/internal/asyncpg/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/asyncpg/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/asyncpg/patch.py
diff --git a/ddtrace/contrib/internal/avro/__init__.py b/dd-trace-py/ddtrace/contrib/internal/avro/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/avro/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/avro/__init__.py
diff --git a/ddtrace/contrib/internal/avro/patch.py b/dd-trace-py/ddtrace/contrib/internal/avro/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/avro/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/avro/patch.py
diff --git a/ddtrace/contrib/internal/avro/schema_iterator.py b/dd-trace-py/ddtrace/contrib/internal/avro/schema_iterator.py
similarity index 100%
rename from ddtrace/contrib/internal/avro/schema_iterator.py
rename to dd-trace-py/ddtrace/contrib/internal/avro/schema_iterator.py
diff --git a/ddtrace/contrib/internal/aws_lambda/__init__.py b/dd-trace-py/ddtrace/contrib/internal/aws_lambda/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/aws_lambda/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/aws_lambda/__init__.py
diff --git a/ddtrace/contrib/internal/aws_lambda/_cold_start.py b/dd-trace-py/ddtrace/contrib/internal/aws_lambda/_cold_start.py
similarity index 100%
rename from ddtrace/contrib/internal/aws_lambda/_cold_start.py
rename to dd-trace-py/ddtrace/contrib/internal/aws_lambda/_cold_start.py
diff --git a/ddtrace/contrib/internal/aws_lambda/patch.py b/dd-trace-py/ddtrace/contrib/internal/aws_lambda/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/aws_lambda/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/aws_lambda/patch.py
diff --git a/ddtrace/contrib/internal/azure_cosmos/__init__.py b/dd-trace-py/ddtrace/contrib/internal/azure_cosmos/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_cosmos/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_cosmos/__init__.py
diff --git a/ddtrace/contrib/internal/azure_cosmos/patch.py b/dd-trace-py/ddtrace/contrib/internal/azure_cosmos/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_cosmos/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_cosmos/patch.py
diff --git a/ddtrace/contrib/internal/azure_durable_functions/__init__.py b/dd-trace-py/ddtrace/contrib/internal/azure_durable_functions/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_durable_functions/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_durable_functions/__init__.py
diff --git a/ddtrace/contrib/internal/azure_durable_functions/patch.py b/dd-trace-py/ddtrace/contrib/internal/azure_durable_functions/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_durable_functions/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_durable_functions/patch.py
diff --git a/ddtrace/contrib/internal/azure_eventhubs/__init__.py b/dd-trace-py/ddtrace/contrib/internal/azure_eventhubs/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_eventhubs/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_eventhubs/__init__.py
diff --git a/ddtrace/contrib/internal/azure_eventhubs/patch.py b/dd-trace-py/ddtrace/contrib/internal/azure_eventhubs/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_eventhubs/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_eventhubs/patch.py
diff --git a/ddtrace/contrib/internal/azure_eventhubs/utils.py b/dd-trace-py/ddtrace/contrib/internal/azure_eventhubs/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_eventhubs/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_eventhubs/utils.py
diff --git a/ddtrace/contrib/internal/azure_functions/__init__.py b/dd-trace-py/ddtrace/contrib/internal/azure_functions/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_functions/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_functions/__init__.py
diff --git a/ddtrace/contrib/internal/azure_functions/patch.py b/dd-trace-py/ddtrace/contrib/internal/azure_functions/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_functions/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_functions/patch.py
diff --git a/ddtrace/contrib/internal/azure_functions/shared.py b/dd-trace-py/ddtrace/contrib/internal/azure_functions/shared.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_functions/shared.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_functions/shared.py
diff --git a/ddtrace/contrib/internal/azure_servicebus/__init__.py b/dd-trace-py/ddtrace/contrib/internal/azure_servicebus/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_servicebus/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_servicebus/__init__.py
diff --git a/ddtrace/contrib/internal/azure_servicebus/patch.py b/dd-trace-py/ddtrace/contrib/internal/azure_servicebus/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_servicebus/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_servicebus/patch.py
diff --git a/ddtrace/contrib/internal/azure_servicebus/utils.py b/dd-trace-py/ddtrace/contrib/internal/azure_servicebus/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/azure_servicebus/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/azure_servicebus/utils.py
diff --git a/ddtrace/contrib/internal/boto/__init__.py b/dd-trace-py/ddtrace/contrib/internal/boto/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/boto/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/boto/__init__.py
diff --git a/ddtrace/contrib/internal/boto/patch.py b/dd-trace-py/ddtrace/contrib/internal/boto/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/boto/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/boto/patch.py
diff --git a/ddtrace/contrib/internal/botocore/__init__.py b/dd-trace-py/ddtrace/contrib/internal/botocore/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/__init__.py
diff --git a/ddtrace/contrib/internal/botocore/constants.py b/dd-trace-py/ddtrace/contrib/internal/botocore/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/constants.py
diff --git a/ddtrace/contrib/internal/botocore/patch.py b/dd-trace-py/ddtrace/contrib/internal/botocore/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/patch.py
diff --git a/ddtrace/contrib/internal/botocore/services/__init__.py b/dd-trace-py/ddtrace/contrib/internal/botocore/services/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/services/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/services/__init__.py
diff --git a/ddtrace/contrib/internal/botocore/services/bedrock.py b/dd-trace-py/ddtrace/contrib/internal/botocore/services/bedrock.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/services/bedrock.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/services/bedrock.py
diff --git a/ddtrace/contrib/internal/botocore/services/bedrock_agents.py b/dd-trace-py/ddtrace/contrib/internal/botocore/services/bedrock_agents.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/services/bedrock_agents.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/services/bedrock_agents.py
diff --git a/ddtrace/contrib/internal/botocore/services/kinesis.py b/dd-trace-py/ddtrace/contrib/internal/botocore/services/kinesis.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/services/kinesis.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/services/kinesis.py
diff --git a/ddtrace/contrib/internal/botocore/services/sqs.py b/dd-trace-py/ddtrace/contrib/internal/botocore/services/sqs.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/services/sqs.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/services/sqs.py
diff --git a/ddtrace/contrib/internal/botocore/services/stepfunctions.py b/dd-trace-py/ddtrace/contrib/internal/botocore/services/stepfunctions.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/services/stepfunctions.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/services/stepfunctions.py
diff --git a/ddtrace/contrib/internal/botocore/utils.py b/dd-trace-py/ddtrace/contrib/internal/botocore/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/botocore/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/botocore/utils.py
diff --git a/ddtrace/contrib/internal/bottle/__init__.py b/dd-trace-py/ddtrace/contrib/internal/bottle/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/bottle/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/bottle/__init__.py
diff --git a/ddtrace/contrib/internal/bottle/patch.py b/dd-trace-py/ddtrace/contrib/internal/bottle/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/bottle/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/bottle/patch.py
diff --git a/ddtrace/contrib/internal/bottle/trace.py b/dd-trace-py/ddtrace/contrib/internal/bottle/trace.py
similarity index 100%
rename from ddtrace/contrib/internal/bottle/trace.py
rename to dd-trace-py/ddtrace/contrib/internal/bottle/trace.py
diff --git a/ddtrace/contrib/internal/celery/__init__.py b/dd-trace-py/ddtrace/contrib/internal/celery/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/celery/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/celery/__init__.py
diff --git a/ddtrace/contrib/internal/celery/app.py b/dd-trace-py/ddtrace/contrib/internal/celery/app.py
similarity index 100%
rename from ddtrace/contrib/internal/celery/app.py
rename to dd-trace-py/ddtrace/contrib/internal/celery/app.py
diff --git a/ddtrace/contrib/internal/celery/constants.py b/dd-trace-py/ddtrace/contrib/internal/celery/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/celery/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/celery/constants.py
diff --git a/ddtrace/contrib/internal/celery/patch.py b/dd-trace-py/ddtrace/contrib/internal/celery/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/celery/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/celery/patch.py
diff --git a/ddtrace/contrib/internal/celery/signals.py b/dd-trace-py/ddtrace/contrib/internal/celery/signals.py
similarity index 100%
rename from ddtrace/contrib/internal/celery/signals.py
rename to dd-trace-py/ddtrace/contrib/internal/celery/signals.py
diff --git a/ddtrace/contrib/internal/celery/utils.py b/dd-trace-py/ddtrace/contrib/internal/celery/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/celery/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/celery/utils.py
diff --git a/ddtrace/contrib/internal/cherrypy/__init__.py b/dd-trace-py/ddtrace/contrib/internal/cherrypy/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/cherrypy/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/cherrypy/__init__.py
diff --git a/ddtrace/contrib/internal/cherrypy/patch.py b/dd-trace-py/ddtrace/contrib/internal/cherrypy/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/cherrypy/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/cherrypy/patch.py
diff --git a/ddtrace/contrib/internal/claude_agent_sdk/__init__.py b/dd-trace-py/ddtrace/contrib/internal/claude_agent_sdk/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/claude_agent_sdk/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/claude_agent_sdk/__init__.py
diff --git a/ddtrace/contrib/internal/claude_agent_sdk/_streaming.py b/dd-trace-py/ddtrace/contrib/internal/claude_agent_sdk/_streaming.py
similarity index 100%
rename from ddtrace/contrib/internal/claude_agent_sdk/_streaming.py
rename to dd-trace-py/ddtrace/contrib/internal/claude_agent_sdk/_streaming.py
diff --git a/ddtrace/contrib/internal/claude_agent_sdk/patch.py b/dd-trace-py/ddtrace/contrib/internal/claude_agent_sdk/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/claude_agent_sdk/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/claude_agent_sdk/patch.py
diff --git a/ddtrace/contrib/internal/claude_agent_sdk/utils.py b/dd-trace-py/ddtrace/contrib/internal/claude_agent_sdk/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/claude_agent_sdk/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/claude_agent_sdk/utils.py
diff --git a/ddtrace/contrib/internal/consul/__init__.py b/dd-trace-py/ddtrace/contrib/internal/consul/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/consul/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/consul/__init__.py
diff --git a/ddtrace/contrib/internal/consul/patch.py b/dd-trace-py/ddtrace/contrib/internal/consul/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/consul/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/consul/patch.py
diff --git a/ddtrace/contrib/internal/coverage/__init__.py b/dd-trace-py/ddtrace/contrib/internal/coverage/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/coverage/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/coverage/__init__.py
diff --git a/ddtrace/contrib/internal/coverage/constants.py b/dd-trace-py/ddtrace/contrib/internal/coverage/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/coverage/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/coverage/constants.py
diff --git a/ddtrace/contrib/internal/coverage/data.py b/dd-trace-py/ddtrace/contrib/internal/coverage/data.py
similarity index 100%
rename from ddtrace/contrib/internal/coverage/data.py
rename to dd-trace-py/ddtrace/contrib/internal/coverage/data.py
diff --git a/ddtrace/contrib/internal/coverage/patch.py b/dd-trace-py/ddtrace/contrib/internal/coverage/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/coverage/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/coverage/patch.py
diff --git a/ddtrace/contrib/internal/coverage/utils.py b/dd-trace-py/ddtrace/contrib/internal/coverage/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/coverage/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/coverage/utils.py
diff --git a/ddtrace/contrib/internal/crewai/__init__.py b/dd-trace-py/ddtrace/contrib/internal/crewai/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/crewai/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/crewai/__init__.py
diff --git a/ddtrace/contrib/internal/crewai/patch.py b/dd-trace-py/ddtrace/contrib/internal/crewai/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/crewai/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/crewai/patch.py
diff --git a/ddtrace/contrib/internal/ddtrace_api/__init__.py b/dd-trace-py/ddtrace/contrib/internal/ddtrace_api/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/ddtrace_api/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/ddtrace_api/__init__.py
diff --git a/ddtrace/contrib/internal/ddtrace_api/patch.py b/dd-trace-py/ddtrace/contrib/internal/ddtrace_api/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/ddtrace_api/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/ddtrace_api/patch.py
diff --git a/ddtrace/contrib/internal/django/__init__.py b/dd-trace-py/ddtrace/contrib/internal/django/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/django/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/django/__init__.py
diff --git a/ddtrace/contrib/internal/django/cache.py b/dd-trace-py/ddtrace/contrib/internal/django/cache.py
similarity index 100%
rename from ddtrace/contrib/internal/django/cache.py
rename to dd-trace-py/ddtrace/contrib/internal/django/cache.py
diff --git a/ddtrace/contrib/internal/django/compat.py b/dd-trace-py/ddtrace/contrib/internal/django/compat.py
similarity index 100%
rename from ddtrace/contrib/internal/django/compat.py
rename to dd-trace-py/ddtrace/contrib/internal/django/compat.py
diff --git a/ddtrace/contrib/internal/django/database.py b/dd-trace-py/ddtrace/contrib/internal/django/database.py
similarity index 100%
rename from ddtrace/contrib/internal/django/database.py
rename to dd-trace-py/ddtrace/contrib/internal/django/database.py
diff --git a/ddtrace/contrib/internal/django/middleware.py b/dd-trace-py/ddtrace/contrib/internal/django/middleware.py
similarity index 100%
rename from ddtrace/contrib/internal/django/middleware.py
rename to dd-trace-py/ddtrace/contrib/internal/django/middleware.py
diff --git a/ddtrace/contrib/internal/django/patch.py b/dd-trace-py/ddtrace/contrib/internal/django/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/django/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/django/patch.py
diff --git a/ddtrace/contrib/internal/django/response.py b/dd-trace-py/ddtrace/contrib/internal/django/response.py
similarity index 100%
rename from ddtrace/contrib/internal/django/response.py
rename to dd-trace-py/ddtrace/contrib/internal/django/response.py
diff --git a/ddtrace/contrib/internal/django/restframework.py b/dd-trace-py/ddtrace/contrib/internal/django/restframework.py
similarity index 100%
rename from ddtrace/contrib/internal/django/restframework.py
rename to dd-trace-py/ddtrace/contrib/internal/django/restframework.py
diff --git a/ddtrace/contrib/internal/django/templates.py b/dd-trace-py/ddtrace/contrib/internal/django/templates.py
similarity index 100%
rename from ddtrace/contrib/internal/django/templates.py
rename to dd-trace-py/ddtrace/contrib/internal/django/templates.py
diff --git a/ddtrace/contrib/internal/django/user.py b/dd-trace-py/ddtrace/contrib/internal/django/user.py
similarity index 100%
rename from ddtrace/contrib/internal/django/user.py
rename to dd-trace-py/ddtrace/contrib/internal/django/user.py
diff --git a/ddtrace/contrib/internal/django/utils.py b/dd-trace-py/ddtrace/contrib/internal/django/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/django/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/django/utils.py
diff --git a/ddtrace/contrib/internal/dogpile_cache/__init__.py b/dd-trace-py/ddtrace/contrib/internal/dogpile_cache/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/dogpile_cache/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/dogpile_cache/__init__.py
diff --git a/ddtrace/contrib/internal/dogpile_cache/lock.py b/dd-trace-py/ddtrace/contrib/internal/dogpile_cache/lock.py
similarity index 100%
rename from ddtrace/contrib/internal/dogpile_cache/lock.py
rename to dd-trace-py/ddtrace/contrib/internal/dogpile_cache/lock.py
diff --git a/ddtrace/contrib/internal/dogpile_cache/patch.py b/dd-trace-py/ddtrace/contrib/internal/dogpile_cache/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/dogpile_cache/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/dogpile_cache/patch.py
diff --git a/ddtrace/contrib/internal/dogpile_cache/region.py b/dd-trace-py/ddtrace/contrib/internal/dogpile_cache/region.py
similarity index 100%
rename from ddtrace/contrib/internal/dogpile_cache/region.py
rename to dd-trace-py/ddtrace/contrib/internal/dogpile_cache/region.py
diff --git a/ddtrace/contrib/internal/dramatiq/__init__.py b/dd-trace-py/ddtrace/contrib/internal/dramatiq/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/dramatiq/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/dramatiq/__init__.py
diff --git a/ddtrace/contrib/internal/dramatiq/patch.py b/dd-trace-py/ddtrace/contrib/internal/dramatiq/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/dramatiq/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/dramatiq/patch.py
diff --git a/ddtrace/contrib/internal/elasticsearch/__init__.py b/dd-trace-py/ddtrace/contrib/internal/elasticsearch/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/elasticsearch/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/elasticsearch/__init__.py
diff --git a/ddtrace/contrib/internal/elasticsearch/patch.py b/dd-trace-py/ddtrace/contrib/internal/elasticsearch/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/elasticsearch/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/elasticsearch/patch.py
diff --git a/ddtrace/contrib/internal/elasticsearch/quantize.py b/dd-trace-py/ddtrace/contrib/internal/elasticsearch/quantize.py
similarity index 100%
rename from ddtrace/contrib/internal/elasticsearch/quantize.py
rename to dd-trace-py/ddtrace/contrib/internal/elasticsearch/quantize.py
diff --git a/ddtrace/contrib/internal/falcon/__init__.py b/dd-trace-py/ddtrace/contrib/internal/falcon/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/falcon/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/falcon/__init__.py
diff --git a/ddtrace/contrib/internal/falcon/middleware.py b/dd-trace-py/ddtrace/contrib/internal/falcon/middleware.py
similarity index 100%
rename from ddtrace/contrib/internal/falcon/middleware.py
rename to dd-trace-py/ddtrace/contrib/internal/falcon/middleware.py
diff --git a/ddtrace/contrib/internal/falcon/patch.py b/dd-trace-py/ddtrace/contrib/internal/falcon/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/falcon/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/falcon/patch.py
diff --git a/ddtrace/contrib/internal/fastapi/__init__.py b/dd-trace-py/ddtrace/contrib/internal/fastapi/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/fastapi/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/fastapi/__init__.py
diff --git a/ddtrace/contrib/internal/fastapi/patch.py b/dd-trace-py/ddtrace/contrib/internal/fastapi/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/fastapi/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/fastapi/patch.py
diff --git a/ddtrace/contrib/internal/flask/__init__.py b/dd-trace-py/ddtrace/contrib/internal/flask/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/flask/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/flask/__init__.py
diff --git a/ddtrace/contrib/internal/flask/patch.py b/dd-trace-py/ddtrace/contrib/internal/flask/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/flask/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/flask/patch.py
diff --git a/ddtrace/contrib/internal/flask/wrappers.py b/dd-trace-py/ddtrace/contrib/internal/flask/wrappers.py
similarity index 100%
rename from ddtrace/contrib/internal/flask/wrappers.py
rename to dd-trace-py/ddtrace/contrib/internal/flask/wrappers.py
diff --git a/ddtrace/contrib/internal/flask_cache/__init__.py b/dd-trace-py/ddtrace/contrib/internal/flask_cache/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/flask_cache/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/flask_cache/__init__.py
diff --git a/ddtrace/contrib/internal/flask_cache/patch.py b/dd-trace-py/ddtrace/contrib/internal/flask_cache/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/flask_cache/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/flask_cache/patch.py
diff --git a/ddtrace/contrib/internal/flask_cache/utils.py b/dd-trace-py/ddtrace/contrib/internal/flask_cache/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/flask_cache/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/flask_cache/utils.py
diff --git a/ddtrace/contrib/internal/futures/__init__.py b/dd-trace-py/ddtrace/contrib/internal/futures/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/futures/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/futures/__init__.py
diff --git a/ddtrace/contrib/internal/futures/patch.py b/dd-trace-py/ddtrace/contrib/internal/futures/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/futures/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/futures/patch.py
diff --git a/ddtrace/contrib/internal/futures/threading.py b/dd-trace-py/ddtrace/contrib/internal/futures/threading.py
similarity index 100%
rename from ddtrace/contrib/internal/futures/threading.py
rename to dd-trace-py/ddtrace/contrib/internal/futures/threading.py
diff --git a/ddtrace/contrib/internal/gevent/__init__.py b/dd-trace-py/ddtrace/contrib/internal/gevent/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/gevent/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/gevent/__init__.py
diff --git a/ddtrace/contrib/internal/gevent/greenlet.py b/dd-trace-py/ddtrace/contrib/internal/gevent/greenlet.py
similarity index 100%
rename from ddtrace/contrib/internal/gevent/greenlet.py
rename to dd-trace-py/ddtrace/contrib/internal/gevent/greenlet.py
diff --git a/ddtrace/contrib/internal/gevent/patch.py b/dd-trace-py/ddtrace/contrib/internal/gevent/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/gevent/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/gevent/patch.py
diff --git a/ddtrace/contrib/internal/google_adk/__init__.py b/dd-trace-py/ddtrace/contrib/internal/google_adk/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/google_adk/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/google_adk/__init__.py
diff --git a/ddtrace/contrib/internal/google_adk/patch.py b/dd-trace-py/ddtrace/contrib/internal/google_adk/patch.py
similarity index 99%
rename from ddtrace/contrib/internal/google_adk/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/google_adk/patch.py
index 31a3d5fb5d1..41fa1ccb709 100644
--- a/ddtrace/contrib/internal/google_adk/patch.py
+++ b/dd-trace-py/ddtrace/contrib/internal/google_adk/patch.py
@@ -2,10 +2,10 @@
from typing import Any
from typing import Union
+from ddtrace_internal import check_module_path
import google.adk as adk
from ddtrace import config
-from ddtrace.contrib.internal.trace_utils import check_module_path
from ddtrace.contrib.trace_utils import unwrap
from ddtrace.contrib.trace_utils import wrap
from ddtrace.internal.logger import get_logger
diff --git a/ddtrace/contrib/internal/google_cloud_pubsub/__init__.py b/dd-trace-py/ddtrace/contrib/internal/google_cloud_pubsub/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/google_cloud_pubsub/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/google_cloud_pubsub/__init__.py
diff --git a/ddtrace/contrib/internal/google_cloud_pubsub/patch.py b/dd-trace-py/ddtrace/contrib/internal/google_cloud_pubsub/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/google_cloud_pubsub/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/google_cloud_pubsub/patch.py
diff --git a/ddtrace/contrib/internal/google_cloud_pubsub/utils.py b/dd-trace-py/ddtrace/contrib/internal/google_cloud_pubsub/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/google_cloud_pubsub/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/google_cloud_pubsub/utils.py
diff --git a/ddtrace/contrib/internal/google_genai/__init__.py b/dd-trace-py/ddtrace/contrib/internal/google_genai/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/google_genai/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/google_genai/__init__.py
diff --git a/ddtrace/contrib/internal/google_genai/_utils.py b/dd-trace-py/ddtrace/contrib/internal/google_genai/_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/google_genai/_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/google_genai/_utils.py
diff --git a/ddtrace/contrib/internal/google_genai/patch.py b/dd-trace-py/ddtrace/contrib/internal/google_genai/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/google_genai/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/google_genai/patch.py
diff --git a/ddtrace/contrib/internal/graphql/__init__.py b/dd-trace-py/ddtrace/contrib/internal/graphql/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/graphql/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/graphql/__init__.py
diff --git a/ddtrace/contrib/internal/graphql/patch.py b/dd-trace-py/ddtrace/contrib/internal/graphql/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/graphql/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/graphql/patch.py
diff --git a/ddtrace/contrib/internal/grpc/__init__.py b/dd-trace-py/ddtrace/contrib/internal/grpc/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/grpc/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/grpc/__init__.py
diff --git a/ddtrace/contrib/internal/grpc/aio_client_interceptor.py b/dd-trace-py/ddtrace/contrib/internal/grpc/aio_client_interceptor.py
similarity index 100%
rename from ddtrace/contrib/internal/grpc/aio_client_interceptor.py
rename to dd-trace-py/ddtrace/contrib/internal/grpc/aio_client_interceptor.py
diff --git a/ddtrace/contrib/internal/grpc/aio_server_interceptor.py b/dd-trace-py/ddtrace/contrib/internal/grpc/aio_server_interceptor.py
similarity index 100%
rename from ddtrace/contrib/internal/grpc/aio_server_interceptor.py
rename to dd-trace-py/ddtrace/contrib/internal/grpc/aio_server_interceptor.py
diff --git a/ddtrace/contrib/internal/grpc/client_interceptor.py b/dd-trace-py/ddtrace/contrib/internal/grpc/client_interceptor.py
similarity index 100%
rename from ddtrace/contrib/internal/grpc/client_interceptor.py
rename to dd-trace-py/ddtrace/contrib/internal/grpc/client_interceptor.py
diff --git a/ddtrace/contrib/internal/grpc/constants.py b/dd-trace-py/ddtrace/contrib/internal/grpc/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/grpc/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/grpc/constants.py
diff --git a/ddtrace/contrib/internal/grpc/patch.py b/dd-trace-py/ddtrace/contrib/internal/grpc/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/grpc/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/grpc/patch.py
diff --git a/ddtrace/contrib/internal/grpc/server_interceptor.py b/dd-trace-py/ddtrace/contrib/internal/grpc/server_interceptor.py
similarity index 100%
rename from ddtrace/contrib/internal/grpc/server_interceptor.py
rename to dd-trace-py/ddtrace/contrib/internal/grpc/server_interceptor.py
diff --git a/ddtrace/contrib/internal/grpc/utils.py b/dd-trace-py/ddtrace/contrib/internal/grpc/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/grpc/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/grpc/utils.py
diff --git a/ddtrace/contrib/internal/gunicorn/__init__.py b/dd-trace-py/ddtrace/contrib/internal/gunicorn/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/gunicorn/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/gunicorn/__init__.py
diff --git a/ddtrace/contrib/internal/httplib/__init__.py b/dd-trace-py/ddtrace/contrib/internal/httplib/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/httplib/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/httplib/__init__.py
diff --git a/ddtrace/contrib/internal/httplib/patch.py b/dd-trace-py/ddtrace/contrib/internal/httplib/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/httplib/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/httplib/patch.py
diff --git a/ddtrace/contrib/internal/httpx/__init__.py b/dd-trace-py/ddtrace/contrib/internal/httpx/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/httpx/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/httpx/__init__.py
diff --git a/ddtrace/contrib/internal/httpx/patch.py b/dd-trace-py/ddtrace/contrib/internal/httpx/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/httpx/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/httpx/patch.py
diff --git a/ddtrace/contrib/internal/httpx/utils.py b/dd-trace-py/ddtrace/contrib/internal/httpx/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/httpx/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/httpx/utils.py
diff --git a/ddtrace/contrib/internal/jinja2/__init__.py b/dd-trace-py/ddtrace/contrib/internal/jinja2/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/jinja2/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/jinja2/__init__.py
diff --git a/ddtrace/contrib/internal/jinja2/constants.py b/dd-trace-py/ddtrace/contrib/internal/jinja2/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/jinja2/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/jinja2/constants.py
diff --git a/ddtrace/contrib/internal/jinja2/patch.py b/dd-trace-py/ddtrace/contrib/internal/jinja2/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/jinja2/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/jinja2/patch.py
diff --git a/ddtrace/contrib/internal/kafka/__init__.py b/dd-trace-py/ddtrace/contrib/internal/kafka/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/kafka/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/kafka/__init__.py
diff --git a/ddtrace/contrib/internal/kafka/patch.py b/dd-trace-py/ddtrace/contrib/internal/kafka/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/kafka/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/kafka/patch.py
diff --git a/ddtrace/contrib/internal/kombu/__init__.py b/dd-trace-py/ddtrace/contrib/internal/kombu/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/kombu/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/kombu/__init__.py
diff --git a/ddtrace/contrib/internal/kombu/constants.py b/dd-trace-py/ddtrace/contrib/internal/kombu/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/kombu/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/kombu/constants.py
diff --git a/ddtrace/contrib/internal/kombu/patch.py b/dd-trace-py/ddtrace/contrib/internal/kombu/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/kombu/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/kombu/patch.py
diff --git a/ddtrace/contrib/internal/kombu/utils.py b/dd-trace-py/ddtrace/contrib/internal/kombu/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/kombu/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/kombu/utils.py
diff --git a/ddtrace/contrib/internal/langchain/__init__.py b/dd-trace-py/ddtrace/contrib/internal/langchain/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/langchain/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/langchain/__init__.py
diff --git a/ddtrace/contrib/internal/langchain/patch.py b/dd-trace-py/ddtrace/contrib/internal/langchain/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/langchain/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/langchain/patch.py
diff --git a/ddtrace/contrib/internal/langchain/utils.py b/dd-trace-py/ddtrace/contrib/internal/langchain/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/langchain/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/langchain/utils.py
diff --git a/ddtrace/contrib/internal/langgraph/__init__.py b/dd-trace-py/ddtrace/contrib/internal/langgraph/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/langgraph/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/langgraph/__init__.py
diff --git a/ddtrace/contrib/internal/langgraph/patch.py b/dd-trace-py/ddtrace/contrib/internal/langgraph/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/langgraph/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/langgraph/patch.py
diff --git a/ddtrace/contrib/internal/litellm/__init__.py b/dd-trace-py/ddtrace/contrib/internal/litellm/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/litellm/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/litellm/__init__.py
diff --git a/ddtrace/contrib/internal/litellm/patch.py b/dd-trace-py/ddtrace/contrib/internal/litellm/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/litellm/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/litellm/patch.py
diff --git a/ddtrace/contrib/internal/litellm/utils.py b/dd-trace-py/ddtrace/contrib/internal/litellm/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/litellm/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/litellm/utils.py
diff --git a/ddtrace/contrib/internal/llama_index/__init__.py b/dd-trace-py/ddtrace/contrib/internal/llama_index/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/llama_index/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/llama_index/__init__.py
diff --git a/ddtrace/contrib/internal/llama_index/_streaming.py b/dd-trace-py/ddtrace/contrib/internal/llama_index/_streaming.py
similarity index 100%
rename from ddtrace/contrib/internal/llama_index/_streaming.py
rename to dd-trace-py/ddtrace/contrib/internal/llama_index/_streaming.py
diff --git a/ddtrace/contrib/internal/llama_index/_utils.py b/dd-trace-py/ddtrace/contrib/internal/llama_index/_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/llama_index/_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/llama_index/_utils.py
diff --git a/ddtrace/contrib/internal/llama_index/patch.py b/dd-trace-py/ddtrace/contrib/internal/llama_index/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/llama_index/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/llama_index/patch.py
diff --git a/ddtrace/contrib/internal/logbook/__init__.py b/dd-trace-py/ddtrace/contrib/internal/logbook/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/logbook/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/logbook/__init__.py
diff --git a/ddtrace/contrib/internal/logbook/patch.py b/dd-trace-py/ddtrace/contrib/internal/logbook/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/logbook/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/logbook/patch.py
diff --git a/ddtrace/contrib/internal/logging/__init__.py b/dd-trace-py/ddtrace/contrib/internal/logging/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/logging/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/logging/__init__.py
diff --git a/ddtrace/contrib/internal/logging/patch.py b/dd-trace-py/ddtrace/contrib/internal/logging/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/logging/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/logging/patch.py
diff --git a/ddtrace/contrib/internal/loguru/__init__.py b/dd-trace-py/ddtrace/contrib/internal/loguru/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/loguru/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/loguru/__init__.py
diff --git a/ddtrace/contrib/internal/loguru/patch.py b/dd-trace-py/ddtrace/contrib/internal/loguru/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/loguru/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/loguru/patch.py
diff --git a/ddtrace/contrib/internal/mako/__init__.py b/dd-trace-py/ddtrace/contrib/internal/mako/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/mako/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/mako/__init__.py
diff --git a/ddtrace/contrib/internal/mako/constants.py b/dd-trace-py/ddtrace/contrib/internal/mako/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/mako/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/mako/constants.py
diff --git a/ddtrace/contrib/internal/mako/patch.py b/dd-trace-py/ddtrace/contrib/internal/mako/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/mako/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/mako/patch.py
diff --git a/ddtrace/contrib/internal/mariadb/__init__.py b/dd-trace-py/ddtrace/contrib/internal/mariadb/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/mariadb/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/mariadb/__init__.py
diff --git a/ddtrace/contrib/internal/mariadb/patch.py b/dd-trace-py/ddtrace/contrib/internal/mariadb/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/mariadb/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/mariadb/patch.py
diff --git a/ddtrace/contrib/internal/mcp/__init__.py b/dd-trace-py/ddtrace/contrib/internal/mcp/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/mcp/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/mcp/__init__.py
diff --git a/ddtrace/contrib/internal/mcp/patch.py b/dd-trace-py/ddtrace/contrib/internal/mcp/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/mcp/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/mcp/patch.py
diff --git a/ddtrace/contrib/internal/mlflow/README.md b/dd-trace-py/ddtrace/contrib/internal/mlflow/README.md
similarity index 100%
rename from ddtrace/contrib/internal/mlflow/README.md
rename to dd-trace-py/ddtrace/contrib/internal/mlflow/README.md
diff --git a/ddtrace/contrib/internal/mlflow/__init__.py b/dd-trace-py/ddtrace/contrib/internal/mlflow/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/mlflow/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/mlflow/__init__.py
diff --git a/ddtrace/contrib/internal/mlflow/auth_plugin.py b/dd-trace-py/ddtrace/contrib/internal/mlflow/auth_plugin.py
similarity index 100%
rename from ddtrace/contrib/internal/mlflow/auth_plugin.py
rename to dd-trace-py/ddtrace/contrib/internal/mlflow/auth_plugin.py
diff --git a/ddtrace/contrib/internal/mlflow/constants.py b/dd-trace-py/ddtrace/contrib/internal/mlflow/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/mlflow/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/mlflow/constants.py
diff --git a/ddtrace/contrib/internal/mlflow/patch.py b/dd-trace-py/ddtrace/contrib/internal/mlflow/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/mlflow/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/mlflow/patch.py
diff --git a/ddtrace/contrib/internal/molten/__init__.py b/dd-trace-py/ddtrace/contrib/internal/molten/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/molten/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/molten/__init__.py
diff --git a/ddtrace/contrib/internal/molten/patch.py b/dd-trace-py/ddtrace/contrib/internal/molten/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/molten/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/molten/patch.py
diff --git a/ddtrace/contrib/internal/molten/wrappers.py b/dd-trace-py/ddtrace/contrib/internal/molten/wrappers.py
similarity index 100%
rename from ddtrace/contrib/internal/molten/wrappers.py
rename to dd-trace-py/ddtrace/contrib/internal/molten/wrappers.py
diff --git a/ddtrace/contrib/internal/mysql/__init__.py b/dd-trace-py/ddtrace/contrib/internal/mysql/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/mysql/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/mysql/__init__.py
diff --git a/ddtrace/contrib/internal/mysql/patch.py b/dd-trace-py/ddtrace/contrib/internal/mysql/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/mysql/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/mysql/patch.py
diff --git a/ddtrace/contrib/internal/mysqldb/__init__.py b/dd-trace-py/ddtrace/contrib/internal/mysqldb/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/mysqldb/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/mysqldb/__init__.py
diff --git a/ddtrace/contrib/internal/mysqldb/patch.py b/dd-trace-py/ddtrace/contrib/internal/mysqldb/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/mysqldb/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/mysqldb/patch.py
diff --git a/ddtrace/contrib/internal/openai/__init__.py b/dd-trace-py/ddtrace/contrib/internal/openai/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/openai/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/openai/__init__.py
diff --git a/ddtrace/contrib/internal/openai/_endpoint_hooks.py b/dd-trace-py/ddtrace/contrib/internal/openai/_endpoint_hooks.py
similarity index 100%
rename from ddtrace/contrib/internal/openai/_endpoint_hooks.py
rename to dd-trace-py/ddtrace/contrib/internal/openai/_endpoint_hooks.py
diff --git a/ddtrace/contrib/internal/openai/patch.py b/dd-trace-py/ddtrace/contrib/internal/openai/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/openai/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/openai/patch.py
diff --git a/ddtrace/contrib/internal/openai/utils.py b/dd-trace-py/ddtrace/contrib/internal/openai/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/openai/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/openai/utils.py
diff --git a/ddtrace/contrib/internal/openai_agents/__init__.py b/dd-trace-py/ddtrace/contrib/internal/openai_agents/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/openai_agents/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/openai_agents/__init__.py
diff --git a/ddtrace/contrib/internal/openai_agents/patch.py b/dd-trace-py/ddtrace/contrib/internal/openai_agents/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/openai_agents/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/openai_agents/patch.py
diff --git a/ddtrace/contrib/internal/openai_agents/processor.py b/dd-trace-py/ddtrace/contrib/internal/openai_agents/processor.py
similarity index 100%
rename from ddtrace/contrib/internal/openai_agents/processor.py
rename to dd-trace-py/ddtrace/contrib/internal/openai_agents/processor.py
diff --git a/ddtrace/contrib/internal/protobuf/__init__.py b/dd-trace-py/ddtrace/contrib/internal/protobuf/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/protobuf/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/protobuf/__init__.py
diff --git a/ddtrace/contrib/internal/protobuf/patch.py b/dd-trace-py/ddtrace/contrib/internal/protobuf/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/protobuf/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/protobuf/patch.py
diff --git a/ddtrace/contrib/internal/protobuf/schema_iterator.py b/dd-trace-py/ddtrace/contrib/internal/protobuf/schema_iterator.py
similarity index 100%
rename from ddtrace/contrib/internal/protobuf/schema_iterator.py
rename to dd-trace-py/ddtrace/contrib/internal/protobuf/schema_iterator.py
diff --git a/ddtrace/contrib/internal/psycopg/__init__.py b/dd-trace-py/ddtrace/contrib/internal/psycopg/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/psycopg/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/psycopg/__init__.py
diff --git a/ddtrace/contrib/internal/psycopg/async_connection.py b/dd-trace-py/ddtrace/contrib/internal/psycopg/async_connection.py
similarity index 100%
rename from ddtrace/contrib/internal/psycopg/async_connection.py
rename to dd-trace-py/ddtrace/contrib/internal/psycopg/async_connection.py
diff --git a/ddtrace/contrib/internal/psycopg/async_cursor.py b/dd-trace-py/ddtrace/contrib/internal/psycopg/async_cursor.py
similarity index 100%
rename from ddtrace/contrib/internal/psycopg/async_cursor.py
rename to dd-trace-py/ddtrace/contrib/internal/psycopg/async_cursor.py
diff --git a/ddtrace/contrib/internal/psycopg/connection.py b/dd-trace-py/ddtrace/contrib/internal/psycopg/connection.py
similarity index 100%
rename from ddtrace/contrib/internal/psycopg/connection.py
rename to dd-trace-py/ddtrace/contrib/internal/psycopg/connection.py
diff --git a/ddtrace/contrib/internal/psycopg/cursor.py b/dd-trace-py/ddtrace/contrib/internal/psycopg/cursor.py
similarity index 100%
rename from ddtrace/contrib/internal/psycopg/cursor.py
rename to dd-trace-py/ddtrace/contrib/internal/psycopg/cursor.py
diff --git a/ddtrace/contrib/internal/psycopg/extensions.py b/dd-trace-py/ddtrace/contrib/internal/psycopg/extensions.py
similarity index 100%
rename from ddtrace/contrib/internal/psycopg/extensions.py
rename to dd-trace-py/ddtrace/contrib/internal/psycopg/extensions.py
diff --git a/ddtrace/contrib/internal/psycopg/patch.py b/dd-trace-py/ddtrace/contrib/internal/psycopg/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/psycopg/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/psycopg/patch.py
diff --git a/ddtrace/contrib/internal/pydantic_ai/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pydantic_ai/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pydantic_ai/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pydantic_ai/__init__.py
diff --git a/ddtrace/contrib/internal/pydantic_ai/patch.py b/dd-trace-py/ddtrace/contrib/internal/pydantic_ai/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pydantic_ai/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pydantic_ai/patch.py
diff --git a/ddtrace/contrib/internal/pydantic_ai/utils.py b/dd-trace-py/ddtrace/contrib/internal/pydantic_ai/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/pydantic_ai/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/pydantic_ai/utils.py
diff --git a/ddtrace/contrib/internal/pylibmc/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pylibmc/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pylibmc/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pylibmc/__init__.py
diff --git a/ddtrace/contrib/internal/pylibmc/addrs.py b/dd-trace-py/ddtrace/contrib/internal/pylibmc/addrs.py
similarity index 100%
rename from ddtrace/contrib/internal/pylibmc/addrs.py
rename to dd-trace-py/ddtrace/contrib/internal/pylibmc/addrs.py
diff --git a/ddtrace/contrib/internal/pylibmc/client.py b/dd-trace-py/ddtrace/contrib/internal/pylibmc/client.py
similarity index 100%
rename from ddtrace/contrib/internal/pylibmc/client.py
rename to dd-trace-py/ddtrace/contrib/internal/pylibmc/client.py
diff --git a/ddtrace/contrib/internal/pylibmc/patch.py b/dd-trace-py/ddtrace/contrib/internal/pylibmc/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pylibmc/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pylibmc/patch.py
diff --git a/ddtrace/contrib/internal/pymemcache/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pymemcache/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pymemcache/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pymemcache/__init__.py
diff --git a/ddtrace/contrib/internal/pymemcache/client.py b/dd-trace-py/ddtrace/contrib/internal/pymemcache/client.py
similarity index 100%
rename from ddtrace/contrib/internal/pymemcache/client.py
rename to dd-trace-py/ddtrace/contrib/internal/pymemcache/client.py
diff --git a/ddtrace/contrib/internal/pymemcache/patch.py b/dd-trace-py/ddtrace/contrib/internal/pymemcache/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pymemcache/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pymemcache/patch.py
diff --git a/ddtrace/contrib/internal/pymongo/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pymongo/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pymongo/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pymongo/__init__.py
diff --git a/ddtrace/contrib/internal/pymongo/async_client.py b/dd-trace-py/ddtrace/contrib/internal/pymongo/async_client.py
similarity index 100%
rename from ddtrace/contrib/internal/pymongo/async_client.py
rename to dd-trace-py/ddtrace/contrib/internal/pymongo/async_client.py
diff --git a/ddtrace/contrib/internal/pymongo/client.py b/dd-trace-py/ddtrace/contrib/internal/pymongo/client.py
similarity index 100%
rename from ddtrace/contrib/internal/pymongo/client.py
rename to dd-trace-py/ddtrace/contrib/internal/pymongo/client.py
diff --git a/ddtrace/contrib/internal/pymongo/parse.py b/dd-trace-py/ddtrace/contrib/internal/pymongo/parse.py
similarity index 100%
rename from ddtrace/contrib/internal/pymongo/parse.py
rename to dd-trace-py/ddtrace/contrib/internal/pymongo/parse.py
diff --git a/ddtrace/contrib/internal/pymongo/patch.py b/dd-trace-py/ddtrace/contrib/internal/pymongo/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pymongo/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pymongo/patch.py
diff --git a/ddtrace/contrib/internal/pymongo/utils.py b/dd-trace-py/ddtrace/contrib/internal/pymongo/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/pymongo/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/pymongo/utils.py
diff --git a/ddtrace/contrib/internal/pymysql/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pymysql/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pymysql/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pymysql/__init__.py
diff --git a/ddtrace/contrib/internal/pymysql/patch.py b/dd-trace-py/ddtrace/contrib/internal/pymysql/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pymysql/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pymysql/patch.py
diff --git a/ddtrace/contrib/internal/pynamodb/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pynamodb/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pynamodb/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pynamodb/__init__.py
diff --git a/ddtrace/contrib/internal/pynamodb/patch.py b/dd-trace-py/ddtrace/contrib/internal/pynamodb/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pynamodb/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pynamodb/patch.py
diff --git a/ddtrace/contrib/internal/pyodbc/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pyodbc/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pyodbc/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pyodbc/__init__.py
diff --git a/ddtrace/contrib/internal/pyodbc/patch.py b/dd-trace-py/ddtrace/contrib/internal/pyodbc/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pyodbc/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pyodbc/patch.py
diff --git a/ddtrace/contrib/internal/pyramid/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pyramid/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pyramid/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pyramid/__init__.py
diff --git a/ddtrace/contrib/internal/pyramid/constants.py b/dd-trace-py/ddtrace/contrib/internal/pyramid/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/pyramid/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/pyramid/constants.py
diff --git a/ddtrace/contrib/internal/pyramid/patch.py b/dd-trace-py/ddtrace/contrib/internal/pyramid/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pyramid/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pyramid/patch.py
diff --git a/ddtrace/contrib/internal/pyramid/trace.py b/dd-trace-py/ddtrace/contrib/internal/pyramid/trace.py
similarity index 100%
rename from ddtrace/contrib/internal/pyramid/trace.py
rename to dd-trace-py/ddtrace/contrib/internal/pyramid/trace.py
diff --git a/ddtrace/contrib/internal/pytest/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pytest/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/__init__.py
diff --git a/ddtrace/contrib/internal/pytest/_atr_utils.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_atr_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_atr_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_atr_utils.py
diff --git a/ddtrace/contrib/internal/pytest/_attempt_to_fix.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_attempt_to_fix.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_attempt_to_fix.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_attempt_to_fix.py
diff --git a/ddtrace/contrib/internal/pytest/_benchmark_utils.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_benchmark_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_benchmark_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_benchmark_utils.py
diff --git a/ddtrace/contrib/internal/pytest/_efd_utils.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_efd_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_efd_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_efd_utils.py
diff --git a/ddtrace/contrib/internal/pytest/_plugin_v2.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_plugin_v2.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_plugin_v2.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_plugin_v2.py
diff --git a/ddtrace/contrib/internal/pytest/_pytest_bdd_subplugin.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_pytest_bdd_subplugin.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_pytest_bdd_subplugin.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_pytest_bdd_subplugin.py
diff --git a/ddtrace/contrib/internal/pytest/_report_links.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_report_links.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_report_links.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_report_links.py
diff --git a/ddtrace/contrib/internal/pytest/_retry_utils.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_retry_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_retry_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_retry_utils.py
diff --git a/ddtrace/contrib/internal/pytest/_types.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_types.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_types.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_types.py
diff --git a/ddtrace/contrib/internal/pytest/_utils.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_utils.py
diff --git a/ddtrace/contrib/internal/pytest/_xdist.py b/dd-trace-py/ddtrace/contrib/internal/pytest/_xdist.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/_xdist.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/_xdist.py
diff --git a/ddtrace/contrib/internal/pytest/constants.py b/dd-trace-py/ddtrace/contrib/internal/pytest/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/constants.py
diff --git a/ddtrace/contrib/internal/pytest/newhooks.py b/dd-trace-py/ddtrace/contrib/internal/pytest/newhooks.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/newhooks.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/newhooks.py
diff --git a/ddtrace/contrib/internal/pytest/patch.py b/dd-trace-py/ddtrace/contrib/internal/pytest/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/patch.py
diff --git a/ddtrace/contrib/internal/pytest/plugin.py b/dd-trace-py/ddtrace/contrib/internal/pytest/plugin.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest/plugin.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest/plugin.py
diff --git a/ddtrace/contrib/internal/pytest_bdd/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pytest_bdd/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_bdd/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_bdd/__init__.py
diff --git a/ddtrace/contrib/internal/pytest_bdd/_plugin.py b/dd-trace-py/ddtrace/contrib/internal/pytest_bdd/_plugin.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_bdd/_plugin.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_bdd/_plugin.py
diff --git a/ddtrace/contrib/internal/pytest_bdd/constants.py b/dd-trace-py/ddtrace/contrib/internal/pytest_bdd/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_bdd/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_bdd/constants.py
diff --git a/ddtrace/contrib/internal/pytest_bdd/patch.py b/dd-trace-py/ddtrace/contrib/internal/pytest_bdd/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_bdd/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_bdd/patch.py
diff --git a/ddtrace/contrib/internal/pytest_bdd/plugin.py b/dd-trace-py/ddtrace/contrib/internal/pytest_bdd/plugin.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_bdd/plugin.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_bdd/plugin.py
diff --git a/ddtrace/contrib/internal/pytest_benchmark/__init__.py b/dd-trace-py/ddtrace/contrib/internal/pytest_benchmark/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_benchmark/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_benchmark/__init__.py
diff --git a/ddtrace/contrib/internal/pytest_benchmark/_plugin.py b/dd-trace-py/ddtrace/contrib/internal/pytest_benchmark/_plugin.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_benchmark/_plugin.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_benchmark/_plugin.py
diff --git a/ddtrace/contrib/internal/pytest_benchmark/constants.py b/dd-trace-py/ddtrace/contrib/internal/pytest_benchmark/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_benchmark/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_benchmark/constants.py
diff --git a/ddtrace/contrib/internal/pytest_benchmark/plugin.py b/dd-trace-py/ddtrace/contrib/internal/pytest_benchmark/plugin.py
similarity index 100%
rename from ddtrace/contrib/internal/pytest_benchmark/plugin.py
rename to dd-trace-py/ddtrace/contrib/internal/pytest_benchmark/plugin.py
diff --git a/ddtrace/contrib/internal/ray/__init__.py b/dd-trace-py/ddtrace/contrib/internal/ray/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/__init__.py
diff --git a/ddtrace/contrib/internal/ray/constants.py b/dd-trace-py/ddtrace/contrib/internal/ray/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/constants.py
diff --git a/ddtrace/contrib/internal/ray/core/__init__.py b/dd-trace-py/ddtrace/contrib/internal/ray/core/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/core/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/core/__init__.py
diff --git a/ddtrace/contrib/internal/ray/core/actor.py b/dd-trace-py/ddtrace/contrib/internal/ray/core/actor.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/core/actor.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/core/actor.py
diff --git a/ddtrace/contrib/internal/ray/core/api.py b/dd-trace-py/ddtrace/contrib/internal/ray/core/api.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/core/api.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/core/api.py
diff --git a/ddtrace/contrib/internal/ray/core/remote_function.py b/dd-trace-py/ddtrace/contrib/internal/ray/core/remote_function.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/core/remote_function.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/core/remote_function.py
diff --git a/ddtrace/contrib/internal/ray/core/utils.py b/dd-trace-py/ddtrace/contrib/internal/ray/core/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/core/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/core/utils.py
diff --git a/ddtrace/contrib/internal/ray/patch.py b/dd-trace-py/ddtrace/contrib/internal/ray/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/patch.py
diff --git a/ddtrace/contrib/internal/ray/span_manager.py b/dd-trace-py/ddtrace/contrib/internal/ray/span_manager.py
similarity index 100%
rename from ddtrace/contrib/internal/ray/span_manager.py
rename to dd-trace-py/ddtrace/contrib/internal/ray/span_manager.py
diff --git a/ddtrace/contrib/internal/redis/__init__.py b/dd-trace-py/ddtrace/contrib/internal/redis/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/redis/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/redis/__init__.py
diff --git a/ddtrace/contrib/internal/redis/asyncio_patch.py b/dd-trace-py/ddtrace/contrib/internal/redis/asyncio_patch.py
similarity index 100%
rename from ddtrace/contrib/internal/redis/asyncio_patch.py
rename to dd-trace-py/ddtrace/contrib/internal/redis/asyncio_patch.py
diff --git a/ddtrace/contrib/internal/redis/patch.py b/dd-trace-py/ddtrace/contrib/internal/redis/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/redis/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/redis/patch.py
diff --git a/ddtrace/contrib/internal/redis_utils.py b/dd-trace-py/ddtrace/contrib/internal/redis_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/redis_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/redis_utils.py
diff --git a/ddtrace/contrib/internal/rediscluster/__init__.py b/dd-trace-py/ddtrace/contrib/internal/rediscluster/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/rediscluster/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/rediscluster/__init__.py
diff --git a/ddtrace/contrib/internal/rediscluster/patch.py b/dd-trace-py/ddtrace/contrib/internal/rediscluster/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/rediscluster/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/rediscluster/patch.py
diff --git a/ddtrace/contrib/internal/requests/__init__.py b/dd-trace-py/ddtrace/contrib/internal/requests/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/requests/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/requests/__init__.py
diff --git a/ddtrace/contrib/internal/requests/connection.py b/dd-trace-py/ddtrace/contrib/internal/requests/connection.py
similarity index 100%
rename from ddtrace/contrib/internal/requests/connection.py
rename to dd-trace-py/ddtrace/contrib/internal/requests/connection.py
diff --git a/ddtrace/contrib/internal/requests/constants.py b/dd-trace-py/ddtrace/contrib/internal/requests/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/requests/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/requests/constants.py
diff --git a/ddtrace/contrib/internal/requests/patch.py b/dd-trace-py/ddtrace/contrib/internal/requests/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/requests/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/requests/patch.py
diff --git a/ddtrace/contrib/internal/requests/session.py b/dd-trace-py/ddtrace/contrib/internal/requests/session.py
similarity index 100%
rename from ddtrace/contrib/internal/requests/session.py
rename to dd-trace-py/ddtrace/contrib/internal/requests/session.py
diff --git a/ddtrace/contrib/internal/rq/__init__.py b/dd-trace-py/ddtrace/contrib/internal/rq/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/rq/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/rq/__init__.py
diff --git a/ddtrace/contrib/internal/rq/patch.py b/dd-trace-py/ddtrace/contrib/internal/rq/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/rq/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/rq/patch.py
diff --git a/ddtrace/contrib/internal/sanic/__init__.py b/dd-trace-py/ddtrace/contrib/internal/sanic/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/sanic/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/sanic/__init__.py
diff --git a/ddtrace/contrib/internal/sanic/patch.py b/dd-trace-py/ddtrace/contrib/internal/sanic/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/sanic/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/sanic/patch.py
diff --git a/ddtrace/contrib/internal/selenium/__init__.py b/dd-trace-py/ddtrace/contrib/internal/selenium/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/selenium/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/selenium/__init__.py
diff --git a/ddtrace/contrib/internal/selenium/patch.py b/dd-trace-py/ddtrace/contrib/internal/selenium/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/selenium/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/selenium/patch.py
diff --git a/ddtrace/contrib/internal/snowflake/__init__.py b/dd-trace-py/ddtrace/contrib/internal/snowflake/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/snowflake/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/snowflake/__init__.py
diff --git a/ddtrace/contrib/internal/snowflake/patch.py b/dd-trace-py/ddtrace/contrib/internal/snowflake/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/snowflake/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/snowflake/patch.py
diff --git a/ddtrace/contrib/internal/sqlalchemy/__init__.py b/dd-trace-py/ddtrace/contrib/internal/sqlalchemy/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/sqlalchemy/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/sqlalchemy/__init__.py
diff --git a/ddtrace/contrib/internal/sqlalchemy/engine.py b/dd-trace-py/ddtrace/contrib/internal/sqlalchemy/engine.py
similarity index 100%
rename from ddtrace/contrib/internal/sqlalchemy/engine.py
rename to dd-trace-py/ddtrace/contrib/internal/sqlalchemy/engine.py
diff --git a/ddtrace/contrib/internal/sqlalchemy/patch.py b/dd-trace-py/ddtrace/contrib/internal/sqlalchemy/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/sqlalchemy/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/sqlalchemy/patch.py
diff --git a/ddtrace/contrib/internal/sqlite3/__init__.py b/dd-trace-py/ddtrace/contrib/internal/sqlite3/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/sqlite3/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/sqlite3/__init__.py
diff --git a/ddtrace/contrib/internal/sqlite3/patch.py b/dd-trace-py/ddtrace/contrib/internal/sqlite3/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/sqlite3/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/sqlite3/patch.py
diff --git a/ddtrace/contrib/internal/starlette/__init__.py b/dd-trace-py/ddtrace/contrib/internal/starlette/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/starlette/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/starlette/__init__.py
diff --git a/ddtrace/contrib/internal/starlette/patch.py b/dd-trace-py/ddtrace/contrib/internal/starlette/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/starlette/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/starlette/patch.py
diff --git a/ddtrace/contrib/internal/structlog/__init__.py b/dd-trace-py/ddtrace/contrib/internal/structlog/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/structlog/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/structlog/__init__.py
diff --git a/ddtrace/contrib/internal/structlog/patch.py b/dd-trace-py/ddtrace/contrib/internal/structlog/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/structlog/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/structlog/patch.py
diff --git a/ddtrace/contrib/internal/subprocess/__init__.py b/dd-trace-py/ddtrace/contrib/internal/subprocess/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/subprocess/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/subprocess/__init__.py
diff --git a/ddtrace/contrib/internal/subprocess/constants.py b/dd-trace-py/ddtrace/contrib/internal/subprocess/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/subprocess/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/subprocess/constants.py
diff --git a/ddtrace/contrib/internal/subprocess/patch.py b/dd-trace-py/ddtrace/contrib/internal/subprocess/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/subprocess/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/subprocess/patch.py
diff --git a/ddtrace/contrib/internal/tornado/__init__.py b/dd-trace-py/ddtrace/contrib/internal/tornado/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/tornado/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/tornado/__init__.py
diff --git a/ddtrace/contrib/internal/tornado/application.py b/dd-trace-py/ddtrace/contrib/internal/tornado/application.py
similarity index 100%
rename from ddtrace/contrib/internal/tornado/application.py
rename to dd-trace-py/ddtrace/contrib/internal/tornado/application.py
diff --git a/ddtrace/contrib/internal/tornado/constants.py b/dd-trace-py/ddtrace/contrib/internal/tornado/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/tornado/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/tornado/constants.py
diff --git a/ddtrace/contrib/internal/tornado/decorators.py b/dd-trace-py/ddtrace/contrib/internal/tornado/decorators.py
similarity index 100%
rename from ddtrace/contrib/internal/tornado/decorators.py
rename to dd-trace-py/ddtrace/contrib/internal/tornado/decorators.py
diff --git a/ddtrace/contrib/internal/tornado/handlers.py b/dd-trace-py/ddtrace/contrib/internal/tornado/handlers.py
similarity index 100%
rename from ddtrace/contrib/internal/tornado/handlers.py
rename to dd-trace-py/ddtrace/contrib/internal/tornado/handlers.py
diff --git a/ddtrace/contrib/internal/tornado/patch.py b/dd-trace-py/ddtrace/contrib/internal/tornado/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/tornado/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/tornado/patch.py
diff --git a/ddtrace/contrib/internal/tornado/stack_context.py b/dd-trace-py/ddtrace/contrib/internal/tornado/stack_context.py
similarity index 100%
rename from ddtrace/contrib/internal/tornado/stack_context.py
rename to dd-trace-py/ddtrace/contrib/internal/tornado/stack_context.py
diff --git a/ddtrace/contrib/internal/tornado/template.py b/dd-trace-py/ddtrace/contrib/internal/tornado/template.py
similarity index 100%
rename from ddtrace/contrib/internal/tornado/template.py
rename to dd-trace-py/ddtrace/contrib/internal/tornado/template.py
diff --git a/ddtrace/contrib/internal/trace_utils.py b/dd-trace-py/ddtrace/contrib/internal/trace_utils.py
similarity index 96%
rename from ddtrace/contrib/internal/trace_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/trace_utils.py
index d0a35be989f..dab44d8ebb3 100644
--- a/ddtrace/contrib/internal/trace_utils.py
+++ b/dd-trace-py/ddtrace/contrib/internal/trace_utils.py
@@ -676,33 +676,3 @@ def _convert_to_string(attr):
return attr
-def check_module_path(module, attr_path):
- """
- Helper function to safely check if a nested attribute path exists on a module.
-
- Args:
- module: The root module object
- attr_path: Dot-separated path to the attribute (e.g., "flows.llm_flows.functions")
-
- Returns:
- bool: True if the full path exists, False otherwise
-
- Example:
- check_module_path(adk, "flows.llm_flows.functions.__call_tool_async")
- check_module_path(adk, "agents.llm_agent.LlmAgent")
- """
- if not module:
- return False
-
- try:
- current = module
- for attr in attr_path.split("."):
- if not hasattr(current, attr):
- return False
- current = getattr(current, attr)
-
- return True
- except (ImportError, AttributeError):
- # Some modules may raise ImportError when accessing attributes that require
- # additional dependencies (e.g., ContainerCodeExecutor requiring Docker for google-adk and an extra pkg install)
- return False
diff --git a/ddtrace/contrib/internal/trace_utils_async.py b/dd-trace-py/ddtrace/contrib/internal/trace_utils_async.py
similarity index 100%
rename from ddtrace/contrib/internal/trace_utils_async.py
rename to dd-trace-py/ddtrace/contrib/internal/trace_utils_async.py
diff --git a/ddtrace/contrib/internal/trace_utils_base.py b/dd-trace-py/ddtrace/contrib/internal/trace_utils_base.py
similarity index 100%
rename from ddtrace/contrib/internal/trace_utils_base.py
rename to dd-trace-py/ddtrace/contrib/internal/trace_utils_base.py
diff --git a/ddtrace/contrib/internal/unittest/__init__.py b/dd-trace-py/ddtrace/contrib/internal/unittest/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/unittest/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/unittest/__init__.py
diff --git a/ddtrace/contrib/internal/unittest/constants.py b/dd-trace-py/ddtrace/contrib/internal/unittest/constants.py
similarity index 100%
rename from ddtrace/contrib/internal/unittest/constants.py
rename to dd-trace-py/ddtrace/contrib/internal/unittest/constants.py
diff --git a/ddtrace/contrib/internal/unittest/patch.py b/dd-trace-py/ddtrace/contrib/internal/unittest/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/unittest/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/unittest/patch.py
diff --git a/ddtrace/contrib/internal/urllib/__init__.py b/dd-trace-py/ddtrace/contrib/internal/urllib/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/urllib/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/urllib/__init__.py
diff --git a/ddtrace/contrib/internal/urllib/patch.py b/dd-trace-py/ddtrace/contrib/internal/urllib/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/urllib/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/urllib/patch.py
diff --git a/ddtrace/contrib/internal/urllib3/__init__.py b/dd-trace-py/ddtrace/contrib/internal/urllib3/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/urllib3/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/urllib3/__init__.py
diff --git a/ddtrace/contrib/internal/urllib3/patch.py b/dd-trace-py/ddtrace/contrib/internal/urllib3/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/urllib3/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/urllib3/patch.py
diff --git a/ddtrace/contrib/internal/valkey/__init__.py b/dd-trace-py/ddtrace/contrib/internal/valkey/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/valkey/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/valkey/__init__.py
diff --git a/ddtrace/contrib/internal/valkey/asyncio_patch.py b/dd-trace-py/ddtrace/contrib/internal/valkey/asyncio_patch.py
similarity index 100%
rename from ddtrace/contrib/internal/valkey/asyncio_patch.py
rename to dd-trace-py/ddtrace/contrib/internal/valkey/asyncio_patch.py
diff --git a/ddtrace/contrib/internal/valkey/patch.py b/dd-trace-py/ddtrace/contrib/internal/valkey/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/valkey/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/valkey/patch.py
diff --git a/ddtrace/contrib/internal/valkey_utils.py b/dd-trace-py/ddtrace/contrib/internal/valkey_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/valkey_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/valkey_utils.py
diff --git a/ddtrace/contrib/internal/vertexai/__init__.py b/dd-trace-py/ddtrace/contrib/internal/vertexai/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/vertexai/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/vertexai/__init__.py
diff --git a/ddtrace/contrib/internal/vertexai/_utils.py b/dd-trace-py/ddtrace/contrib/internal/vertexai/_utils.py
similarity index 100%
rename from ddtrace/contrib/internal/vertexai/_utils.py
rename to dd-trace-py/ddtrace/contrib/internal/vertexai/_utils.py
diff --git a/ddtrace/contrib/internal/vertexai/patch.py b/dd-trace-py/ddtrace/contrib/internal/vertexai/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/vertexai/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/vertexai/patch.py
diff --git a/ddtrace/contrib/internal/vertica/__init__.py b/dd-trace-py/ddtrace/contrib/internal/vertica/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/vertica/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/vertica/__init__.py
diff --git a/ddtrace/contrib/internal/vertica/patch.py b/dd-trace-py/ddtrace/contrib/internal/vertica/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/vertica/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/vertica/patch.py
diff --git a/ddtrace/contrib/internal/vllm/__init__.py b/dd-trace-py/ddtrace/contrib/internal/vllm/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/vllm/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/vllm/__init__.py
diff --git a/ddtrace/contrib/internal/vllm/_constants.py b/dd-trace-py/ddtrace/contrib/internal/vllm/_constants.py
similarity index 100%
rename from ddtrace/contrib/internal/vllm/_constants.py
rename to dd-trace-py/ddtrace/contrib/internal/vllm/_constants.py
diff --git a/ddtrace/contrib/internal/vllm/extractors.py b/dd-trace-py/ddtrace/contrib/internal/vllm/extractors.py
similarity index 100%
rename from ddtrace/contrib/internal/vllm/extractors.py
rename to dd-trace-py/ddtrace/contrib/internal/vllm/extractors.py
diff --git a/ddtrace/contrib/internal/vllm/patch.py b/dd-trace-py/ddtrace/contrib/internal/vllm/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/vllm/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/vllm/patch.py
diff --git a/ddtrace/contrib/internal/vllm/utils.py b/dd-trace-py/ddtrace/contrib/internal/vllm/utils.py
similarity index 100%
rename from ddtrace/contrib/internal/vllm/utils.py
rename to dd-trace-py/ddtrace/contrib/internal/vllm/utils.py
diff --git a/ddtrace/contrib/internal/webbrowser/__init__.py b/dd-trace-py/ddtrace/contrib/internal/webbrowser/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/webbrowser/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/webbrowser/__init__.py
diff --git a/ddtrace/contrib/internal/webbrowser/patch.py b/dd-trace-py/ddtrace/contrib/internal/webbrowser/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/webbrowser/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/webbrowser/patch.py
diff --git a/ddtrace/contrib/internal/wsgi/__init__.py b/dd-trace-py/ddtrace/contrib/internal/wsgi/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/wsgi/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/wsgi/__init__.py
diff --git a/ddtrace/contrib/internal/wsgi/wsgi.py b/dd-trace-py/ddtrace/contrib/internal/wsgi/wsgi.py
similarity index 100%
rename from ddtrace/contrib/internal/wsgi/wsgi.py
rename to dd-trace-py/ddtrace/contrib/internal/wsgi/wsgi.py
diff --git a/ddtrace/contrib/internal/yaaredis/__init__.py b/dd-trace-py/ddtrace/contrib/internal/yaaredis/__init__.py
similarity index 100%
rename from ddtrace/contrib/internal/yaaredis/__init__.py
rename to dd-trace-py/ddtrace/contrib/internal/yaaredis/__init__.py
diff --git a/ddtrace/contrib/internal/yaaredis/patch.py b/dd-trace-py/ddtrace/contrib/internal/yaaredis/patch.py
similarity index 100%
rename from ddtrace/contrib/internal/yaaredis/patch.py
rename to dd-trace-py/ddtrace/contrib/internal/yaaredis/patch.py
diff --git a/ddtrace/contrib/pylibmc.py b/dd-trace-py/ddtrace/contrib/pylibmc.py
similarity index 100%
rename from ddtrace/contrib/pylibmc.py
rename to dd-trace-py/ddtrace/contrib/pylibmc.py
diff --git a/ddtrace/contrib/pyramid.py b/dd-trace-py/ddtrace/contrib/pyramid.py
similarity index 100%
rename from ddtrace/contrib/pyramid.py
rename to dd-trace-py/ddtrace/contrib/pyramid.py
diff --git a/ddtrace/contrib/ray.py b/dd-trace-py/ddtrace/contrib/ray.py
similarity index 100%
rename from ddtrace/contrib/ray.py
rename to dd-trace-py/ddtrace/contrib/ray.py
diff --git a/ddtrace/contrib/requests.py b/dd-trace-py/ddtrace/contrib/requests.py
similarity index 100%
rename from ddtrace/contrib/requests.py
rename to dd-trace-py/ddtrace/contrib/requests.py
diff --git a/ddtrace/contrib/sqlalchemy.py b/dd-trace-py/ddtrace/contrib/sqlalchemy.py
similarity index 100%
rename from ddtrace/contrib/sqlalchemy.py
rename to dd-trace-py/ddtrace/contrib/sqlalchemy.py
diff --git a/ddtrace/contrib/trace_utils.py b/dd-trace-py/ddtrace/contrib/trace_utils.py
similarity index 100%
rename from ddtrace/contrib/trace_utils.py
rename to dd-trace-py/ddtrace/contrib/trace_utils.py
diff --git a/ddtrace/contrib/wsgi.py b/dd-trace-py/ddtrace/contrib/wsgi.py
similarity index 100%
rename from ddtrace/contrib/wsgi.py
rename to dd-trace-py/ddtrace/contrib/wsgi.py
diff --git a/ddtrace/data_streams.py b/dd-trace-py/ddtrace/data_streams.py
similarity index 100%
rename from ddtrace/data_streams.py
rename to dd-trace-py/ddtrace/data_streams.py
diff --git a/ddtrace/debugging/README.md b/dd-trace-py/ddtrace/debugging/README.md
similarity index 100%
rename from ddtrace/debugging/README.md
rename to dd-trace-py/ddtrace/debugging/README.md
diff --git a/ddtrace/debugging/__init__.py b/dd-trace-py/ddtrace/debugging/__init__.py
similarity index 100%
rename from ddtrace/debugging/__init__.py
rename to dd-trace-py/ddtrace/debugging/__init__.py
diff --git a/ddtrace/debugging/__init__.pyi b/dd-trace-py/ddtrace/debugging/__init__.pyi
similarity index 100%
rename from ddtrace/debugging/__init__.pyi
rename to dd-trace-py/ddtrace/debugging/__init__.pyi
diff --git a/ddtrace/debugging/_config.py b/dd-trace-py/ddtrace/debugging/_config.py
similarity index 100%
rename from ddtrace/debugging/_config.py
rename to dd-trace-py/ddtrace/debugging/_config.py
diff --git a/ddtrace/debugging/_debugger.py b/dd-trace-py/ddtrace/debugging/_debugger.py
similarity index 100%
rename from ddtrace/debugging/_debugger.py
rename to dd-trace-py/ddtrace/debugging/_debugger.py
diff --git a/ddtrace/debugging/_encoding.py b/dd-trace-py/ddtrace/debugging/_encoding.py
similarity index 100%
rename from ddtrace/debugging/_encoding.py
rename to dd-trace-py/ddtrace/debugging/_encoding.py
diff --git a/ddtrace/debugging/_exception/__init__.py b/dd-trace-py/ddtrace/debugging/_exception/__init__.py
similarity index 100%
rename from ddtrace/debugging/_exception/__init__.py
rename to dd-trace-py/ddtrace/debugging/_exception/__init__.py
diff --git a/ddtrace/debugging/_exception/replay.py b/dd-trace-py/ddtrace/debugging/_exception/replay.py
similarity index 100%
rename from ddtrace/debugging/_exception/replay.py
rename to dd-trace-py/ddtrace/debugging/_exception/replay.py
diff --git a/ddtrace/debugging/_expressions.py b/dd-trace-py/ddtrace/debugging/_expressions.py
similarity index 100%
rename from ddtrace/debugging/_expressions.py
rename to dd-trace-py/ddtrace/debugging/_expressions.py
diff --git a/ddtrace/debugging/_function/__init__.py b/dd-trace-py/ddtrace/debugging/_function/__init__.py
similarity index 100%
rename from ddtrace/debugging/_function/__init__.py
rename to dd-trace-py/ddtrace/debugging/_function/__init__.py
diff --git a/ddtrace/debugging/_function/discovery.py b/dd-trace-py/ddtrace/debugging/_function/discovery.py
similarity index 100%
rename from ddtrace/debugging/_function/discovery.py
rename to dd-trace-py/ddtrace/debugging/_function/discovery.py
diff --git a/ddtrace/debugging/_function/store.py b/dd-trace-py/ddtrace/debugging/_function/store.py
similarity index 100%
rename from ddtrace/debugging/_function/store.py
rename to dd-trace-py/ddtrace/debugging/_function/store.py
diff --git a/ddtrace/debugging/_import.py b/dd-trace-py/ddtrace/debugging/_import.py
similarity index 100%
rename from ddtrace/debugging/_import.py
rename to dd-trace-py/ddtrace/debugging/_import.py
diff --git a/ddtrace/debugging/_live.py b/dd-trace-py/ddtrace/debugging/_live.py
similarity index 100%
rename from ddtrace/debugging/_live.py
rename to dd-trace-py/ddtrace/debugging/_live.py
diff --git a/ddtrace/debugging/_metrics.py b/dd-trace-py/ddtrace/debugging/_metrics.py
similarity index 100%
rename from ddtrace/debugging/_metrics.py
rename to dd-trace-py/ddtrace/debugging/_metrics.py
diff --git a/ddtrace/debugging/_origin/__init__.py b/dd-trace-py/ddtrace/debugging/_origin/__init__.py
similarity index 100%
rename from ddtrace/debugging/_origin/__init__.py
rename to dd-trace-py/ddtrace/debugging/_origin/__init__.py
diff --git a/ddtrace/debugging/_origin/span.py b/dd-trace-py/ddtrace/debugging/_origin/span.py
similarity index 100%
rename from ddtrace/debugging/_origin/span.py
rename to dd-trace-py/ddtrace/debugging/_origin/span.py
diff --git a/ddtrace/debugging/_probe/__init__.py b/dd-trace-py/ddtrace/debugging/_probe/__init__.py
similarity index 100%
rename from ddtrace/debugging/_probe/__init__.py
rename to dd-trace-py/ddtrace/debugging/_probe/__init__.py
diff --git a/ddtrace/debugging/_probe/model.py b/dd-trace-py/ddtrace/debugging/_probe/model.py
similarity index 100%
rename from ddtrace/debugging/_probe/model.py
rename to dd-trace-py/ddtrace/debugging/_probe/model.py
diff --git a/ddtrace/debugging/_probe/registry.py b/dd-trace-py/ddtrace/debugging/_probe/registry.py
similarity index 100%
rename from ddtrace/debugging/_probe/registry.py
rename to dd-trace-py/ddtrace/debugging/_probe/registry.py
diff --git a/ddtrace/debugging/_probe/remoteconfig.py b/dd-trace-py/ddtrace/debugging/_probe/remoteconfig.py
similarity index 100%
rename from ddtrace/debugging/_probe/remoteconfig.py
rename to dd-trace-py/ddtrace/debugging/_probe/remoteconfig.py
diff --git a/ddtrace/debugging/_probe/status.py b/dd-trace-py/ddtrace/debugging/_probe/status.py
similarity index 100%
rename from ddtrace/debugging/_probe/status.py
rename to dd-trace-py/ddtrace/debugging/_probe/status.py
diff --git a/ddtrace/debugging/_products/__init__.py b/dd-trace-py/ddtrace/debugging/_products/__init__.py
similarity index 100%
rename from ddtrace/debugging/_products/__init__.py
rename to dd-trace-py/ddtrace/debugging/_products/__init__.py
diff --git a/ddtrace/debugging/_products/code_origin/__init__.py b/dd-trace-py/ddtrace/debugging/_products/code_origin/__init__.py
similarity index 100%
rename from ddtrace/debugging/_products/code_origin/__init__.py
rename to dd-trace-py/ddtrace/debugging/_products/code_origin/__init__.py
diff --git a/ddtrace/debugging/_products/code_origin/span.py b/dd-trace-py/ddtrace/debugging/_products/code_origin/span.py
similarity index 100%
rename from ddtrace/debugging/_products/code_origin/span.py
rename to dd-trace-py/ddtrace/debugging/_products/code_origin/span.py
diff --git a/ddtrace/debugging/_products/dynamic_instrumentation.py b/dd-trace-py/ddtrace/debugging/_products/dynamic_instrumentation.py
similarity index 100%
rename from ddtrace/debugging/_products/dynamic_instrumentation.py
rename to dd-trace-py/ddtrace/debugging/_products/dynamic_instrumentation.py
diff --git a/ddtrace/debugging/_products/exception_replay.py b/dd-trace-py/ddtrace/debugging/_products/exception_replay.py
similarity index 100%
rename from ddtrace/debugging/_products/exception_replay.py
rename to dd-trace-py/ddtrace/debugging/_products/exception_replay.py
diff --git a/ddtrace/debugging/_products/live_debugger.py b/dd-trace-py/ddtrace/debugging/_products/live_debugger.py
similarity index 100%
rename from ddtrace/debugging/_products/live_debugger.py
rename to dd-trace-py/ddtrace/debugging/_products/live_debugger.py
diff --git a/ddtrace/debugging/_redaction.py b/dd-trace-py/ddtrace/debugging/_redaction.py
similarity index 100%
rename from ddtrace/debugging/_redaction.py
rename to dd-trace-py/ddtrace/debugging/_redaction.py
diff --git a/ddtrace/debugging/_safety.py b/dd-trace-py/ddtrace/debugging/_safety.py
similarity index 100%
rename from ddtrace/debugging/_safety.py
rename to dd-trace-py/ddtrace/debugging/_safety.py
diff --git a/ddtrace/debugging/_session.py b/dd-trace-py/ddtrace/debugging/_session.py
similarity index 100%
rename from ddtrace/debugging/_session.py
rename to dd-trace-py/ddtrace/debugging/_session.py
diff --git a/ddtrace/debugging/_signal/__init__.py b/dd-trace-py/ddtrace/debugging/_signal/__init__.py
similarity index 100%
rename from ddtrace/debugging/_signal/__init__.py
rename to dd-trace-py/ddtrace/debugging/_signal/__init__.py
diff --git a/ddtrace/debugging/_signal/collector.py b/dd-trace-py/ddtrace/debugging/_signal/collector.py
similarity index 100%
rename from ddtrace/debugging/_signal/collector.py
rename to dd-trace-py/ddtrace/debugging/_signal/collector.py
diff --git a/ddtrace/debugging/_signal/log.py b/dd-trace-py/ddtrace/debugging/_signal/log.py
similarity index 100%
rename from ddtrace/debugging/_signal/log.py
rename to dd-trace-py/ddtrace/debugging/_signal/log.py
diff --git a/ddtrace/debugging/_signal/metric_sample.py b/dd-trace-py/ddtrace/debugging/_signal/metric_sample.py
similarity index 100%
rename from ddtrace/debugging/_signal/metric_sample.py
rename to dd-trace-py/ddtrace/debugging/_signal/metric_sample.py
diff --git a/ddtrace/debugging/_signal/model.py b/dd-trace-py/ddtrace/debugging/_signal/model.py
similarity index 100%
rename from ddtrace/debugging/_signal/model.py
rename to dd-trace-py/ddtrace/debugging/_signal/model.py
diff --git a/ddtrace/debugging/_signal/snapshot.py b/dd-trace-py/ddtrace/debugging/_signal/snapshot.py
similarity index 100%
rename from ddtrace/debugging/_signal/snapshot.py
rename to dd-trace-py/ddtrace/debugging/_signal/snapshot.py
diff --git a/ddtrace/debugging/_signal/tracing.py b/dd-trace-py/ddtrace/debugging/_signal/tracing.py
similarity index 100%
rename from ddtrace/debugging/_signal/tracing.py
rename to dd-trace-py/ddtrace/debugging/_signal/tracing.py
diff --git a/ddtrace/debugging/_signal/trigger.py b/dd-trace-py/ddtrace/debugging/_signal/trigger.py
similarity index 100%
rename from ddtrace/debugging/_signal/trigger.py
rename to dd-trace-py/ddtrace/debugging/_signal/trigger.py
diff --git a/ddtrace/debugging/_signal/utils.py b/dd-trace-py/ddtrace/debugging/_signal/utils.py
similarity index 100%
rename from ddtrace/debugging/_signal/utils.py
rename to dd-trace-py/ddtrace/debugging/_signal/utils.py
diff --git a/ddtrace/debugging/_uploader.py b/dd-trace-py/ddtrace/debugging/_uploader.py
similarity index 100%
rename from ddtrace/debugging/_uploader.py
rename to dd-trace-py/ddtrace/debugging/_uploader.py
diff --git a/ddtrace/debugging/uploader.plantuml b/dd-trace-py/ddtrace/debugging/uploader.plantuml
similarity index 100%
rename from ddtrace/debugging/uploader.plantuml
rename to dd-trace-py/ddtrace/debugging/uploader.plantuml
diff --git a/ddtrace/errortracking/__init__.py b/dd-trace-py/ddtrace/errortracking/__init__.py
similarity index 100%
rename from ddtrace/errortracking/__init__.py
rename to dd-trace-py/ddtrace/errortracking/__init__.py
diff --git a/ddtrace/errortracking/_handled_exceptions/__init__.py b/dd-trace-py/ddtrace/errortracking/_handled_exceptions/__init__.py
similarity index 100%
rename from ddtrace/errortracking/_handled_exceptions/__init__.py
rename to dd-trace-py/ddtrace/errortracking/_handled_exceptions/__init__.py
diff --git a/ddtrace/errortracking/_handled_exceptions/bytecode_injector.py b/dd-trace-py/ddtrace/errortracking/_handled_exceptions/bytecode_injector.py
similarity index 100%
rename from ddtrace/errortracking/_handled_exceptions/bytecode_injector.py
rename to dd-trace-py/ddtrace/errortracking/_handled_exceptions/bytecode_injector.py
diff --git a/ddtrace/errortracking/_handled_exceptions/bytecode_reporting.py b/dd-trace-py/ddtrace/errortracking/_handled_exceptions/bytecode_reporting.py
similarity index 100%
rename from ddtrace/errortracking/_handled_exceptions/bytecode_reporting.py
rename to dd-trace-py/ddtrace/errortracking/_handled_exceptions/bytecode_reporting.py
diff --git a/ddtrace/errortracking/_handled_exceptions/callbacks.py b/dd-trace-py/ddtrace/errortracking/_handled_exceptions/callbacks.py
similarity index 100%
rename from ddtrace/errortracking/_handled_exceptions/callbacks.py
rename to dd-trace-py/ddtrace/errortracking/_handled_exceptions/callbacks.py
diff --git a/ddtrace/errortracking/_handled_exceptions/collector.py b/dd-trace-py/ddtrace/errortracking/_handled_exceptions/collector.py
similarity index 100%
rename from ddtrace/errortracking/_handled_exceptions/collector.py
rename to dd-trace-py/ddtrace/errortracking/_handled_exceptions/collector.py
diff --git a/ddtrace/errortracking/_handled_exceptions/monitoring_reporting.py b/dd-trace-py/ddtrace/errortracking/_handled_exceptions/monitoring_reporting.py
similarity index 100%
rename from ddtrace/errortracking/_handled_exceptions/monitoring_reporting.py
rename to dd-trace-py/ddtrace/errortracking/_handled_exceptions/monitoring_reporting.py
diff --git a/ddtrace/errortracking/product.py b/dd-trace-py/ddtrace/errortracking/product.py
similarity index 100%
rename from ddtrace/errortracking/product.py
rename to dd-trace-py/ddtrace/errortracking/product.py
diff --git a/ddtrace/ext/__init__.py b/dd-trace-py/ddtrace/ext/__init__.py
similarity index 100%
rename from ddtrace/ext/__init__.py
rename to dd-trace-py/ddtrace/ext/__init__.py
diff --git a/ddtrace/ext/aws.py b/dd-trace-py/ddtrace/ext/aws.py
similarity index 100%
rename from ddtrace/ext/aws.py
rename to dd-trace-py/ddtrace/ext/aws.py
diff --git a/ddtrace/ext/azure_eventhubs.py b/dd-trace-py/ddtrace/ext/azure_eventhubs.py
similarity index 100%
rename from ddtrace/ext/azure_eventhubs.py
rename to dd-trace-py/ddtrace/ext/azure_eventhubs.py
diff --git a/ddtrace/ext/azure_servicebus.py b/dd-trace-py/ddtrace/ext/azure_servicebus.py
similarity index 100%
rename from ddtrace/ext/azure_servicebus.py
rename to dd-trace-py/ddtrace/ext/azure_servicebus.py
diff --git a/ddtrace/ext/ci/__init__.py b/dd-trace-py/ddtrace/ext/ci/__init__.py
similarity index 100%
rename from ddtrace/ext/ci/__init__.py
rename to dd-trace-py/ddtrace/ext/ci/__init__.py
diff --git a/ddtrace/ext/ci/github_actions.py b/dd-trace-py/ddtrace/ext/ci/github_actions.py
similarity index 100%
rename from ddtrace/ext/ci/github_actions.py
rename to dd-trace-py/ddtrace/ext/ci/github_actions.py
diff --git a/ddtrace/ext/consul.py b/dd-trace-py/ddtrace/ext/consul.py
similarity index 100%
rename from ddtrace/ext/consul.py
rename to dd-trace-py/ddtrace/ext/consul.py
diff --git a/ddtrace/ext/db.py b/dd-trace-py/ddtrace/ext/db.py
similarity index 100%
rename from ddtrace/ext/db.py
rename to dd-trace-py/ddtrace/ext/db.py
diff --git a/ddtrace/ext/elasticsearch.py b/dd-trace-py/ddtrace/ext/elasticsearch.py
similarity index 100%
rename from ddtrace/ext/elasticsearch.py
rename to dd-trace-py/ddtrace/ext/elasticsearch.py
diff --git a/ddtrace/ext/git.py b/dd-trace-py/ddtrace/ext/git.py
similarity index 100%
rename from ddtrace/ext/git.py
rename to dd-trace-py/ddtrace/ext/git.py
diff --git a/ddtrace/ext/http.py b/dd-trace-py/ddtrace/ext/http.py
similarity index 100%
rename from ddtrace/ext/http.py
rename to dd-trace-py/ddtrace/ext/http.py
diff --git a/ddtrace/ext/kafka.py b/dd-trace-py/ddtrace/ext/kafka.py
similarity index 100%
rename from ddtrace/ext/kafka.py
rename to dd-trace-py/ddtrace/ext/kafka.py
diff --git a/ddtrace/ext/kombu.py b/dd-trace-py/ddtrace/ext/kombu.py
similarity index 100%
rename from ddtrace/ext/kombu.py
rename to dd-trace-py/ddtrace/ext/kombu.py
diff --git a/ddtrace/ext/memcached.py b/dd-trace-py/ddtrace/ext/memcached.py
similarity index 100%
rename from ddtrace/ext/memcached.py
rename to dd-trace-py/ddtrace/ext/memcached.py
diff --git a/ddtrace/ext/mongo.py b/dd-trace-py/ddtrace/ext/mongo.py
similarity index 100%
rename from ddtrace/ext/mongo.py
rename to dd-trace-py/ddtrace/ext/mongo.py
diff --git a/ddtrace/ext/net.py b/dd-trace-py/ddtrace/ext/net.py
similarity index 100%
rename from ddtrace/ext/net.py
rename to dd-trace-py/ddtrace/ext/net.py
diff --git a/ddtrace/ext/redis.py b/dd-trace-py/ddtrace/ext/redis.py
similarity index 100%
rename from ddtrace/ext/redis.py
rename to dd-trace-py/ddtrace/ext/redis.py
diff --git a/ddtrace/ext/schema.py b/dd-trace-py/ddtrace/ext/schema.py
similarity index 100%
rename from ddtrace/ext/schema.py
rename to dd-trace-py/ddtrace/ext/schema.py
diff --git a/ddtrace/ext/sql.py b/dd-trace-py/ddtrace/ext/sql.py
similarity index 100%
rename from ddtrace/ext/sql.py
rename to dd-trace-py/ddtrace/ext/sql.py
diff --git a/ddtrace/ext/test.py b/dd-trace-py/ddtrace/ext/test.py
similarity index 100%
rename from ddtrace/ext/test.py
rename to dd-trace-py/ddtrace/ext/test.py
diff --git a/ddtrace/ext/test_visibility/__init__.py b/dd-trace-py/ddtrace/ext/test_visibility/__init__.py
similarity index 100%
rename from ddtrace/ext/test_visibility/__init__.py
rename to dd-trace-py/ddtrace/ext/test_visibility/__init__.py
diff --git a/ddtrace/ext/test_visibility/_constants.py b/dd-trace-py/ddtrace/ext/test_visibility/_constants.py
similarity index 100%
rename from ddtrace/ext/test_visibility/_constants.py
rename to dd-trace-py/ddtrace/ext/test_visibility/_constants.py
diff --git a/ddtrace/ext/test_visibility/_test_visibility_base.py b/dd-trace-py/ddtrace/ext/test_visibility/_test_visibility_base.py
similarity index 100%
rename from ddtrace/ext/test_visibility/_test_visibility_base.py
rename to dd-trace-py/ddtrace/ext/test_visibility/_test_visibility_base.py
diff --git a/ddtrace/ext/test_visibility/_utils.py b/dd-trace-py/ddtrace/ext/test_visibility/_utils.py
similarity index 100%
rename from ddtrace/ext/test_visibility/_utils.py
rename to dd-trace-py/ddtrace/ext/test_visibility/_utils.py
diff --git a/ddtrace/ext/test_visibility/api.py b/dd-trace-py/ddtrace/ext/test_visibility/api.py
similarity index 100%
rename from ddtrace/ext/test_visibility/api.py
rename to dd-trace-py/ddtrace/ext/test_visibility/api.py
diff --git a/ddtrace/ext/test_visibility/status.py b/dd-trace-py/ddtrace/ext/test_visibility/status.py
similarity index 100%
rename from ddtrace/ext/test_visibility/status.py
rename to dd-trace-py/ddtrace/ext/test_visibility/status.py
diff --git a/ddtrace/ext/user.py b/dd-trace-py/ddtrace/ext/user.py
similarity index 100%
rename from ddtrace/ext/user.py
rename to dd-trace-py/ddtrace/ext/user.py
diff --git a/ddtrace/ext/valkey.py b/dd-trace-py/ddtrace/ext/valkey.py
similarity index 100%
rename from ddtrace/ext/valkey.py
rename to dd-trace-py/ddtrace/ext/valkey.py
diff --git a/ddtrace/ext/websocket.py b/dd-trace-py/ddtrace/ext/websocket.py
similarity index 100%
rename from ddtrace/ext/websocket.py
rename to dd-trace-py/ddtrace/ext/websocket.py
diff --git a/ddtrace/internal/README.md b/dd-trace-py/ddtrace/internal/README.md
similarity index 100%
rename from ddtrace/internal/README.md
rename to dd-trace-py/ddtrace/internal/README.md
diff --git a/ddtrace/internal/__init__.py b/dd-trace-py/ddtrace/internal/__init__.py
similarity index 100%
rename from ddtrace/internal/__init__.py
rename to dd-trace-py/ddtrace/internal/__init__.py
diff --git a/ddtrace/internal/_encoding.pyi b/dd-trace-py/ddtrace/internal/_encoding.pyi
similarity index 100%
rename from ddtrace/internal/_encoding.pyi
rename to dd-trace-py/ddtrace/internal/_encoding.pyi
diff --git a/ddtrace/internal/_encoding.pyx b/dd-trace-py/ddtrace/internal/_encoding.pyx
similarity index 100%
rename from ddtrace/internal/_encoding.pyx
rename to dd-trace-py/ddtrace/internal/_encoding.pyx
diff --git a/ddtrace/internal/_exceptions.py b/dd-trace-py/ddtrace/internal/_exceptions.py
similarity index 100%
rename from ddtrace/internal/_exceptions.py
rename to dd-trace-py/ddtrace/internal/_exceptions.py
diff --git a/ddtrace/internal/_tagset.pyi b/dd-trace-py/ddtrace/internal/_tagset.pyi
similarity index 100%
rename from ddtrace/internal/_tagset.pyi
rename to dd-trace-py/ddtrace/internal/_tagset.pyi
diff --git a/ddtrace/internal/_tagset.pyx b/dd-trace-py/ddtrace/internal/_tagset.pyx
similarity index 100%
rename from ddtrace/internal/_tagset.pyx
rename to dd-trace-py/ddtrace/internal/_tagset.pyx
diff --git a/ddtrace/internal/_threads.cpp b/dd-trace-py/ddtrace/internal/_threads.cpp
similarity index 100%
rename from ddtrace/internal/_threads.cpp
rename to dd-trace-py/ddtrace/internal/_threads.cpp
diff --git a/ddtrace/internal/_threads.pyi b/dd-trace-py/ddtrace/internal/_threads.pyi
similarity index 100%
rename from ddtrace/internal/_threads.pyi
rename to dd-trace-py/ddtrace/internal/_threads.pyi
diff --git a/ddtrace/internal/_unpatched.py b/dd-trace-py/ddtrace/internal/_unpatched.py
similarity index 100%
rename from ddtrace/internal/_unpatched.py
rename to dd-trace-py/ddtrace/internal/_unpatched.py
diff --git a/ddtrace/internal/_utils.h b/dd-trace-py/ddtrace/internal/_utils.h
similarity index 100%
rename from ddtrace/internal/_utils.h
rename to dd-trace-py/ddtrace/internal/_utils.h
diff --git a/ddtrace/internal/_utils.pxd b/dd-trace-py/ddtrace/internal/_utils.pxd
similarity index 100%
rename from ddtrace/internal/_utils.pxd
rename to dd-trace-py/ddtrace/internal/_utils.pxd
diff --git a/ddtrace/internal/agent.py b/dd-trace-py/ddtrace/internal/agent.py
similarity index 100%
rename from ddtrace/internal/agent.py
rename to dd-trace-py/ddtrace/internal/agent.py
diff --git a/ddtrace/internal/appsec/__init__.py b/dd-trace-py/ddtrace/internal/appsec/__init__.py
similarity index 100%
rename from ddtrace/internal/appsec/__init__.py
rename to dd-trace-py/ddtrace/internal/appsec/__init__.py
diff --git a/ddtrace/internal/appsec/product.py b/dd-trace-py/ddtrace/internal/appsec/product.py
similarity index 100%
rename from ddtrace/internal/appsec/product.py
rename to dd-trace-py/ddtrace/internal/appsec/product.py
diff --git a/ddtrace/internal/appsec/prototypes.py b/dd-trace-py/ddtrace/internal/appsec/prototypes.py
similarity index 100%
rename from ddtrace/internal/appsec/prototypes.py
rename to dd-trace-py/ddtrace/internal/appsec/prototypes.py
diff --git a/ddtrace/internal/assembly.py b/dd-trace-py/ddtrace/internal/assembly.py
similarity index 100%
rename from ddtrace/internal/assembly.py
rename to dd-trace-py/ddtrace/internal/assembly.py
diff --git a/ddtrace/internal/atexit.py b/dd-trace-py/ddtrace/internal/atexit.py
similarity index 100%
rename from ddtrace/internal/atexit.py
rename to dd-trace-py/ddtrace/internal/atexit.py
diff --git a/ddtrace/internal/bytecode_injection/__init__.py b/dd-trace-py/ddtrace/internal/bytecode_injection/__init__.py
similarity index 100%
rename from ddtrace/internal/bytecode_injection/__init__.py
rename to dd-trace-py/ddtrace/internal/bytecode_injection/__init__.py
diff --git a/ddtrace/internal/bytecode_injection/core.py b/dd-trace-py/ddtrace/internal/bytecode_injection/core.py
similarity index 100%
rename from ddtrace/internal/bytecode_injection/core.py
rename to dd-trace-py/ddtrace/internal/bytecode_injection/core.py
diff --git a/ddtrace/internal/ci_visibility/__init__.py b/dd-trace-py/ddtrace/internal/ci_visibility/__init__.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/__init__.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/__init__.py
diff --git a/ddtrace/internal/ci_visibility/_api_client.py b/dd-trace-py/ddtrace/internal/ci_visibility/_api_client.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/_api_client.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/_api_client.py
diff --git a/ddtrace/internal/ci_visibility/_api_responses_cache.py b/dd-trace-py/ddtrace/internal/ci_visibility/_api_responses_cache.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/_api_responses_cache.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/_api_responses_cache.py
diff --git a/ddtrace/internal/ci_visibility/api/__init__.py b/dd-trace-py/ddtrace/internal/ci_visibility/api/__init__.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/api/__init__.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/api/__init__.py
diff --git a/ddtrace/internal/ci_visibility/api/_base.py b/dd-trace-py/ddtrace/internal/ci_visibility/api/_base.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/api/_base.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/api/_base.py
diff --git a/ddtrace/internal/ci_visibility/api/_coverage_data.py b/dd-trace-py/ddtrace/internal/ci_visibility/api/_coverage_data.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/api/_coverage_data.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/api/_coverage_data.py
diff --git a/ddtrace/internal/ci_visibility/api/_module.py b/dd-trace-py/ddtrace/internal/ci_visibility/api/_module.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/api/_module.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/api/_module.py
diff --git a/ddtrace/internal/ci_visibility/api/_session.py b/dd-trace-py/ddtrace/internal/ci_visibility/api/_session.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/api/_session.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/api/_session.py
diff --git a/ddtrace/internal/ci_visibility/api/_suite.py b/dd-trace-py/ddtrace/internal/ci_visibility/api/_suite.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/api/_suite.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/api/_suite.py
diff --git a/ddtrace/internal/ci_visibility/api/_test.py b/dd-trace-py/ddtrace/internal/ci_visibility/api/_test.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/api/_test.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/api/_test.py
diff --git a/ddtrace/internal/ci_visibility/constants.py b/dd-trace-py/ddtrace/internal/ci_visibility/constants.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/constants.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/constants.py
diff --git a/ddtrace/internal/ci_visibility/context.py b/dd-trace-py/ddtrace/internal/ci_visibility/context.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/context.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/context.py
diff --git a/ddtrace/internal/ci_visibility/coverage.py b/dd-trace-py/ddtrace/internal/ci_visibility/coverage.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/coverage.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/coverage.py
diff --git a/ddtrace/internal/ci_visibility/encoder.py b/dd-trace-py/ddtrace/internal/ci_visibility/encoder.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/encoder.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/encoder.py
diff --git a/ddtrace/internal/ci_visibility/errors.py b/dd-trace-py/ddtrace/internal/ci_visibility/errors.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/errors.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/errors.py
diff --git a/ddtrace/internal/ci_visibility/filters.py b/dd-trace-py/ddtrace/internal/ci_visibility/filters.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/filters.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/filters.py
diff --git a/ddtrace/internal/ci_visibility/git_client.py b/dd-trace-py/ddtrace/internal/ci_visibility/git_client.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/git_client.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/git_client.py
diff --git a/ddtrace/internal/ci_visibility/git_data.py b/dd-trace-py/ddtrace/internal/ci_visibility/git_data.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/git_data.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/git_data.py
diff --git a/ddtrace/internal/ci_visibility/recorder.py b/dd-trace-py/ddtrace/internal/ci_visibility/recorder.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/recorder.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/recorder.py
diff --git a/ddtrace/internal/ci_visibility/service_registry.py b/dd-trace-py/ddtrace/internal/ci_visibility/service_registry.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/service_registry.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/service_registry.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/__init__.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/__init__.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/__init__.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/__init__.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/api_request.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/api_request.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/api_request.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/api_request.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/constants.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/constants.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/constants.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/constants.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/coverage.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/coverage.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/coverage.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/coverage.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/early_flake_detection.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/early_flake_detection.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/early_flake_detection.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/early_flake_detection.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/events.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/events.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/events.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/events.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/git.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/git.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/git.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/git.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/itr.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/itr.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/itr.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/itr.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/payload.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/payload.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/payload.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/payload.py
diff --git a/ddtrace/internal/ci_visibility/telemetry/test_management.py b/dd-trace-py/ddtrace/internal/ci_visibility/telemetry/test_management.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/telemetry/test_management.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/telemetry/test_management.py
diff --git a/ddtrace/internal/ci_visibility/utils.py b/dd-trace-py/ddtrace/internal/ci_visibility/utils.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/utils.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/utils.py
diff --git a/ddtrace/internal/ci_visibility/writer.py b/dd-trace-py/ddtrace/internal/ci_visibility/writer.py
similarity index 100%
rename from ddtrace/internal/ci_visibility/writer.py
rename to dd-trace-py/ddtrace/internal/ci_visibility/writer.py
diff --git a/ddtrace/internal/codeowners.py b/dd-trace-py/ddtrace/internal/codeowners.py
similarity index 100%
rename from ddtrace/internal/codeowners.py
rename to dd-trace-py/ddtrace/internal/codeowners.py
diff --git a/ddtrace/internal/compat.py b/dd-trace-py/ddtrace/internal/compat.py
similarity index 100%
rename from ddtrace/internal/compat.py
rename to dd-trace-py/ddtrace/internal/compat.py
diff --git a/ddtrace/internal/constants.py b/dd-trace-py/ddtrace/internal/constants.py
similarity index 100%
rename from ddtrace/internal/constants.py
rename to dd-trace-py/ddtrace/internal/constants.py
diff --git a/ddtrace/internal/core/__init__.py b/dd-trace-py/ddtrace/internal/core/__init__.py
similarity index 100%
rename from ddtrace/internal/core/__init__.py
rename to dd-trace-py/ddtrace/internal/core/__init__.py
diff --git a/ddtrace/internal/core/crashtracking.py b/dd-trace-py/ddtrace/internal/core/crashtracking.py
similarity index 100%
rename from ddtrace/internal/core/crashtracking.py
rename to dd-trace-py/ddtrace/internal/core/crashtracking.py
diff --git a/ddtrace/internal/core/event_hub.py b/dd-trace-py/ddtrace/internal/core/event_hub.py
similarity index 100%
rename from ddtrace/internal/core/event_hub.py
rename to dd-trace-py/ddtrace/internal/core/event_hub.py
diff --git a/ddtrace/internal/core/events.py b/dd-trace-py/ddtrace/internal/core/events.py
similarity index 100%
rename from ddtrace/internal/core/events.py
rename to dd-trace-py/ddtrace/internal/core/events.py
diff --git a/ddtrace/internal/core/subscriber.py b/dd-trace-py/ddtrace/internal/core/subscriber.py
similarity index 100%
rename from ddtrace/internal/core/subscriber.py
rename to dd-trace-py/ddtrace/internal/core/subscriber.py
diff --git a/ddtrace/internal/coverage/__init__.py b/dd-trace-py/ddtrace/internal/coverage/__init__.py
similarity index 100%
rename from ddtrace/internal/coverage/__init__.py
rename to dd-trace-py/ddtrace/internal/coverage/__init__.py
diff --git a/ddtrace/internal/coverage/code.py b/dd-trace-py/ddtrace/internal/coverage/code.py
similarity index 100%
rename from ddtrace/internal/coverage/code.py
rename to dd-trace-py/ddtrace/internal/coverage/code.py
diff --git a/ddtrace/internal/coverage/installer.py b/dd-trace-py/ddtrace/internal/coverage/installer.py
similarity index 100%
rename from ddtrace/internal/coverage/installer.py
rename to dd-trace-py/ddtrace/internal/coverage/installer.py
diff --git a/ddtrace/internal/coverage/instrumentation.py b/dd-trace-py/ddtrace/internal/coverage/instrumentation.py
similarity index 100%
rename from ddtrace/internal/coverage/instrumentation.py
rename to dd-trace-py/ddtrace/internal/coverage/instrumentation.py
diff --git a/ddtrace/internal/coverage/instrumentation_py3_10.py b/dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_10.py
similarity index 100%
rename from ddtrace/internal/coverage/instrumentation_py3_10.py
rename to dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_10.py
diff --git a/ddtrace/internal/coverage/instrumentation_py3_11.py b/dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_11.py
similarity index 100%
rename from ddtrace/internal/coverage/instrumentation_py3_11.py
rename to dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_11.py
diff --git a/ddtrace/internal/coverage/instrumentation_py3_12.py b/dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_12.py
similarity index 100%
rename from ddtrace/internal/coverage/instrumentation_py3_12.py
rename to dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_12.py
diff --git a/ddtrace/internal/coverage/instrumentation_py3_16.py b/dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_16.py
similarity index 100%
rename from ddtrace/internal/coverage/instrumentation_py3_16.py
rename to dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_16.py
diff --git a/ddtrace/internal/coverage/instrumentation_py3_9.py b/dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_9.py
similarity index 100%
rename from ddtrace/internal/coverage/instrumentation_py3_9.py
rename to dd-trace-py/ddtrace/internal/coverage/instrumentation_py3_9.py
diff --git a/ddtrace/internal/coverage/multiprocessing_coverage.py b/dd-trace-py/ddtrace/internal/coverage/multiprocessing_coverage.py
similarity index 100%
rename from ddtrace/internal/coverage/multiprocessing_coverage.py
rename to dd-trace-py/ddtrace/internal/coverage/multiprocessing_coverage.py
diff --git a/ddtrace/internal/coverage/report.py b/dd-trace-py/ddtrace/internal/coverage/report.py
similarity index 100%
rename from ddtrace/internal/coverage/report.py
rename to dd-trace-py/ddtrace/internal/coverage/report.py
diff --git a/ddtrace/internal/coverage/threading_coverage.py b/dd-trace-py/ddtrace/internal/coverage/threading_coverage.py
similarity index 100%
rename from ddtrace/internal/coverage/threading_coverage.py
rename to dd-trace-py/ddtrace/internal/coverage/threading_coverage.py
diff --git a/ddtrace/internal/coverage/util.py b/dd-trace-py/ddtrace/internal/coverage/util.py
similarity index 100%
rename from ddtrace/internal/coverage/util.py
rename to dd-trace-py/ddtrace/internal/coverage/util.py
diff --git a/ddtrace/internal/datadog/__init__.py b/dd-trace-py/ddtrace/internal/datadog/__init__.py
similarity index 100%
rename from ddtrace/internal/datadog/__init__.py
rename to dd-trace-py/ddtrace/internal/datadog/__init__.py
diff --git a/ddtrace/internal/datadog/profiling/__init__.py b/dd-trace-py/ddtrace/internal/datadog/profiling/__init__.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/__init__.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/__init__.py
diff --git a/ddtrace/internal/datadog/profiling/_types.py b/dd-trace-py/ddtrace/internal/datadog/profiling/_types.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/_types.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/_types.py
diff --git a/ddtrace/internal/datadog/profiling/build_standalone.sh b/dd-trace-py/ddtrace/internal/datadog/profiling/build_standalone.sh
similarity index 100%
rename from ddtrace/internal/datadog/profiling/build_standalone.sh
rename to dd-trace-py/ddtrace/internal/datadog/profiling/build_standalone.sh
diff --git a/ddtrace/internal/datadog/profiling/cmake/AnalysisFunc.cmake b/dd-trace-py/ddtrace/internal/datadog/profiling/cmake/AnalysisFunc.cmake
similarity index 100%
rename from ddtrace/internal/datadog/profiling/cmake/AnalysisFunc.cmake
rename to dd-trace-py/ddtrace/internal/datadog/profiling/cmake/AnalysisFunc.cmake
diff --git a/ddtrace/internal/datadog/profiling/cmake/FindClangtidy.cmake b/dd-trace-py/ddtrace/internal/datadog/profiling/cmake/FindClangtidy.cmake
similarity index 100%
rename from ddtrace/internal/datadog/profiling/cmake/FindClangtidy.cmake
rename to dd-trace-py/ddtrace/internal/datadog/profiling/cmake/FindClangtidy.cmake
diff --git a/ddtrace/internal/datadog/profiling/cmake/FindCppcheck.cmake b/dd-trace-py/ddtrace/internal/datadog/profiling/cmake/FindCppcheck.cmake
similarity index 100%
rename from ddtrace/internal/datadog/profiling/cmake/FindCppcheck.cmake
rename to dd-trace-py/ddtrace/internal/datadog/profiling/cmake/FindCppcheck.cmake
diff --git a/ddtrace/internal/datadog/profiling/cmake/FindInfer.cmake b/dd-trace-py/ddtrace/internal/datadog/profiling/cmake/FindInfer.cmake
similarity index 100%
rename from ddtrace/internal/datadog/profiling/cmake/FindInfer.cmake
rename to dd-trace-py/ddtrace/internal/datadog/profiling/cmake/FindInfer.cmake
diff --git a/ddtrace/internal/datadog/profiling/cmake/FindLibNative.cmake b/dd-trace-py/ddtrace/internal/datadog/profiling/cmake/FindLibNative.cmake
similarity index 100%
rename from ddtrace/internal/datadog/profiling/cmake/FindLibNative.cmake
rename to dd-trace-py/ddtrace/internal/datadog/profiling/cmake/FindLibNative.cmake
diff --git a/ddtrace/internal/datadog/profiling/cmake/tools/fetch_infer.sh b/dd-trace-py/ddtrace/internal/datadog/profiling/cmake/tools/fetch_infer.sh
similarity index 100%
rename from ddtrace/internal/datadog/profiling/cmake/tools/fetch_infer.sh
rename to dd-trace-py/ddtrace/internal/datadog/profiling/cmake/tools/fetch_infer.sh
diff --git a/ddtrace/internal/datadog/profiling/cmake/tools/infer_checksums.txt b/dd-trace-py/ddtrace/internal/datadog/profiling/cmake/tools/infer_checksums.txt
similarity index 100%
rename from ddtrace/internal/datadog/profiling/cmake/tools/infer_checksums.txt
rename to dd-trace-py/ddtrace/internal/datadog/profiling/cmake/tools/infer_checksums.txt
diff --git a/ddtrace/internal/datadog/profiling/code_provenance.py b/dd-trace-py/ddtrace/internal/datadog/profiling/code_provenance.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/code_provenance.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/code_provenance.py
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/CMakeLists.txt b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/CMakeLists.txt
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/CMakeLists.txt
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/CMakeLists.txt
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/dd_wrapper.md b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/dd_wrapper.md
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/dd_wrapper.md
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/dd_wrapper.md
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/clock.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/clock.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/clock.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/clock.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/code_provenance.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/code_provenance.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/code_provenance.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/code_provenance.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/code_provenance_interface.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/code_provenance_interface.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/code_provenance_interface.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/code_provenance_interface.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/constants.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/constants.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/constants.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/constants.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/ddup_interface.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/ddup_interface.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/ddup_interface.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/ddup_interface.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/defer.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/defer.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/defer.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/defer.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/libdatadog_helpers.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/libdatadog_helpers.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/libdatadog_helpers.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/libdatadog_helpers.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/native_call_tracker.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/native_call_tracker.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/native_call_tracker.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/native_call_tracker.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/profile.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/profile.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/profile.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/profile.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/profile_borrow.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/profile_borrow.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/profile_borrow.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/profile_borrow.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/profiler_state.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/profiler_state.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/profiler_state.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/profiler_state.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/profiler_stats.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/profiler_stats.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/profiler_stats.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/profiler_stats.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/pymacro.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/pymacro.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/pymacro.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/pymacro.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/python_helpers.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/python_helpers.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/python_helpers.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/python_helpers.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/sample.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/sample.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/sample.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/sample.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/sample_manager.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/sample_manager.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/sample_manager.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/sample_manager.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/scope.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/scope.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/scope.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/scope.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/static_sample_pool.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/static_sample_pool.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/static_sample_pool.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/static_sample_pool.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/types.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/types.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/types.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/types.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/uploader.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/uploader.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/uploader.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/uploader.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/include/uploader_builder.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/uploader_builder.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/include/uploader_builder.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/include/uploader_builder.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/code_provenance.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/code_provenance.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/code_provenance.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/code_provenance.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/code_provenance_interface.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/code_provenance_interface.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/code_provenance_interface.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/code_provenance_interface.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/ddup_interface.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/ddup_interface.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/ddup_interface.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/ddup_interface.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/libdatadog_helpers.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/libdatadog_helpers.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/libdatadog_helpers.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/libdatadog_helpers.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/native_call_tracker.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/native_call_tracker.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/native_call_tracker.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/native_call_tracker.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/profile.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/profile.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/profile.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/profile.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/profile_borrow.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/profile_borrow.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/profile_borrow.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/profile_borrow.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/profiler_state.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/profiler_state.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/profiler_state.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/profiler_state.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/profiler_stats.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/profiler_stats.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/profiler_stats.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/profiler_stats.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/sample.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/sample.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/sample.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/sample.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/sample_manager.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/sample_manager.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/sample_manager.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/sample_manager.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/static_sample_pool.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/static_sample_pool.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/static_sample_pool.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/static_sample_pool.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/uploader.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/uploader.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/uploader.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/uploader.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/src/uploader_builder.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/uploader_builder.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/src/uploader_builder.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/src/uploader_builder.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/CMakeLists.txt b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/CMakeLists.txt
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/CMakeLists.txt
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/CMakeLists.txt
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/TSan.supp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/TSan.supp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/TSan.supp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/TSan.supp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_api.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_api.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/test_api.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_api.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_cleanup_race.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_cleanup_race.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/test_cleanup_race.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_cleanup_race.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_forking.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_forking.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/test_forking.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_forking.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_initialization.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_initialization.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/test_initialization.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_initialization.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_threading.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_threading.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/test_threading.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_threading.cpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_utils.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_utils.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/test_utils.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/test_utils.hpp
diff --git a/ddtrace/internal/datadog/profiling/dd_wrapper/test/valgrind.supp b/dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/valgrind.supp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/dd_wrapper/test/valgrind.supp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/dd_wrapper/test/valgrind.supp
diff --git a/ddtrace/internal/datadog/profiling/ddup/CMakeLists.txt b/dd-trace-py/ddtrace/internal/datadog/profiling/ddup/CMakeLists.txt
similarity index 100%
rename from ddtrace/internal/datadog/profiling/ddup/CMakeLists.txt
rename to dd-trace-py/ddtrace/internal/datadog/profiling/ddup/CMakeLists.txt
diff --git a/ddtrace/internal/datadog/profiling/ddup/__init__.py b/dd-trace-py/ddtrace/internal/datadog/profiling/ddup/__init__.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/ddup/__init__.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/ddup/__init__.py
diff --git a/ddtrace/internal/datadog/profiling/ddup/_ddup.pyi b/dd-trace-py/ddtrace/internal/datadog/profiling/ddup/_ddup.pyi
similarity index 100%
rename from ddtrace/internal/datadog/profiling/ddup/_ddup.pyi
rename to dd-trace-py/ddtrace/internal/datadog/profiling/ddup/_ddup.pyi
diff --git a/ddtrace/internal/datadog/profiling/ddup/_ddup.pyx b/dd-trace-py/ddtrace/internal/datadog/profiling/ddup/_ddup.pyx
similarity index 100%
rename from ddtrace/internal/datadog/profiling/ddup/_ddup.pyx
rename to dd-trace-py/ddtrace/internal/datadog/profiling/ddup/_ddup.pyx
diff --git a/ddtrace/internal/datadog/profiling/ddup/test/__init__.py b/dd-trace-py/ddtrace/internal/datadog/profiling/ddup/test/__init__.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/ddup/test/__init__.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/ddup/test/__init__.py
diff --git a/ddtrace/internal/datadog/profiling/ddup/test/interface.py b/dd-trace-py/ddtrace/internal/datadog/profiling/ddup/test/interface.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/ddup/test/interface.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/ddup/test/interface.py
diff --git a/ddtrace/internal/datadog/profiling/docs/Design.md b/dd-trace-py/ddtrace/internal/datadog/profiling/docs/Design.md
similarity index 100%
rename from ddtrace/internal/datadog/profiling/docs/Design.md
rename to dd-trace-py/ddtrace/internal/datadog/profiling/docs/Design.md
diff --git a/ddtrace/internal/datadog/profiling/docs/Standalone.md b/dd-trace-py/ddtrace/internal/datadog/profiling/docs/Standalone.md
similarity index 100%
rename from ddtrace/internal/datadog/profiling/docs/Standalone.md
rename to dd-trace-py/ddtrace/internal/datadog/profiling/docs/Standalone.md
diff --git a/ddtrace/internal/datadog/profiling/echion/.clang-format b/dd-trace-py/ddtrace/internal/datadog/profiling/echion/.clang-format
similarity index 100%
rename from ddtrace/internal/datadog/profiling/echion/.clang-format
rename to dd-trace-py/ddtrace/internal/datadog/profiling/echion/.clang-format
diff --git a/ddtrace/internal/datadog/profiling/native_call_monitor.py b/dd-trace-py/ddtrace/internal/datadog/profiling/native_call_monitor.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/native_call_monitor.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/native_call_monitor.py
diff --git a/ddtrace/internal/datadog/profiling/profiling_helpers/frame_accessors.h b/dd-trace-py/ddtrace/internal/datadog/profiling/profiling_helpers/frame_accessors.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/profiling_helpers/frame_accessors.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/profiling_helpers/frame_accessors.h
diff --git a/ddtrace/internal/datadog/profiling/profiling_helpers/linetable_parser.h b/dd-trace-py/ddtrace/internal/datadog/profiling/profiling_helpers/linetable_parser.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/profiling_helpers/linetable_parser.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/profiling_helpers/linetable_parser.h
diff --git a/ddtrace/internal/datadog/profiling/profiling_helpers/version_compat.h b/dd-trace-py/ddtrace/internal/datadog/profiling/profiling_helpers/version_compat.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/profiling_helpers/version_compat.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/profiling_helpers/version_compat.h
diff --git a/ddtrace/internal/datadog/profiling/run_clang_tidy.sh b/dd-trace-py/ddtrace/internal/datadog/profiling/run_clang_tidy.sh
similarity index 100%
rename from ddtrace/internal/datadog/profiling/run_clang_tidy.sh
rename to dd-trace-py/ddtrace/internal/datadog/profiling/run_clang_tidy.sh
diff --git a/ddtrace/internal/datadog/profiling/runner.sh b/dd-trace-py/ddtrace/internal/datadog/profiling/runner.sh
similarity index 100%
rename from ddtrace/internal/datadog/profiling/runner.sh
rename to dd-trace-py/ddtrace/internal/datadog/profiling/runner.sh
diff --git a/ddtrace/internal/datadog/profiling/stack/CMakeLists.txt b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/CMakeLists.txt
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/CMakeLists.txt
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/CMakeLists.txt
diff --git a/ddtrace/internal/datadog/profiling/stack/__init__.py b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/__init__.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/__init__.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/__init__.py
diff --git a/ddtrace/internal/datadog/profiling/stack/__init__.pyi b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/__init__.pyi
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/__init__.pyi
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/__init__.pyi
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/cache.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/cache.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/cache.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/cache.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/config.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/config.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/config.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/config.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/cpython/tasks.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/cpython/tasks.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/cpython/tasks.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/cpython/tasks.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/danger.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/danger.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/danger.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/danger.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/echion_sampler.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/echion_sampler.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/echion_sampler.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/echion_sampler.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/errors.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/errors.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/errors.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/errors.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/frame.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/frame.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/frame.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/frame.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/greenlets.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/greenlets.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/greenlets.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/greenlets.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/interp.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/interp.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/interp.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/interp.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/long.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/long.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/long.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/long.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/mirrors.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/mirrors.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/mirrors.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/mirrors.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/stack_chunk.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/stack_chunk.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/stack_chunk.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/stack_chunk.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/stacks.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/stacks.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/stacks.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/stacks.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/state.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/state.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/state.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/state.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/strings.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/strings.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/strings.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/strings.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/tasks.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/tasks.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/tasks.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/tasks.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/threads.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/threads.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/threads.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/threads.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/timing.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/timing.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/timing.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/timing.h
diff --git a/ddtrace/internal/datadog/profiling/stack/echion/echion/vm.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/vm.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/echion/echion/vm.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/echion/echion/vm.h
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/CMakeLists.txt b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/CMakeLists.txt
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/CMakeLists.txt
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/CMakeLists.txt
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/README.md b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/README.md
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/README.md
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/README.md
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/build.sh b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/build.sh
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/build.sh
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/build.sh
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_common.h b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_common.h
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_common.h
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_common.h
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_frame_create.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_frame_create.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_frame_create.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_frame_create.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_frame_read.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_frame_read.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_frame_read.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_frame_read.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_greenlet.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_greenlet.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_greenlet.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_greenlet.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_interp.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_interp.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_interp.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_interp.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_long.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_long.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_long.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_long.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_mirrors.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_mirrors.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_mirrors.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_mirrors.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_pyunicode.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_pyunicode.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_pyunicode.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_pyunicode.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_stacks.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_stacks.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_stacks.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_stacks.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_strings.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_strings.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_strings.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_strings.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_task_unwind.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_task_unwind.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_task_unwind.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_task_unwind.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_tasks.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_tasks.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_tasks.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_tasks.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_thread_unwind.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_thread_unwind.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_thread_unwind.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_thread_unwind.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_thread_unwind_tasks.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_thread_unwind_tasks.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_thread_unwind_tasks.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/fuzz_echion_thread_unwind_tasks.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/fuzz/lsan.supp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/lsan.supp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/fuzz/lsan.supp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/fuzz/lsan.supp
diff --git a/ddtrace/internal/datadog/profiling/stack/include/constants.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/constants.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/include/constants.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/constants.hpp
diff --git a/ddtrace/internal/datadog/profiling/stack/include/python_headers.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/python_headers.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/include/python_headers.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/python_headers.hpp
diff --git a/ddtrace/internal/datadog/profiling/stack/include/sampler.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/sampler.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/include/sampler.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/sampler.hpp
diff --git a/ddtrace/internal/datadog/profiling/stack/include/stack_renderer.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/stack_renderer.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/include/stack_renderer.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/stack_renderer.hpp
diff --git a/ddtrace/internal/datadog/profiling/stack/include/thread_span_links.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/thread_span_links.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/include/thread_span_links.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/thread_span_links.hpp
diff --git a/ddtrace/internal/datadog/profiling/stack/include/util/cast_to_pyfunc.hpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/util/cast_to_pyfunc.hpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/include/util/cast_to_pyfunc.hpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/include/util/cast_to_pyfunc.hpp
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/danger.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/danger.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/danger.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/danger.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/frame.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/frame.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/frame.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/frame.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/greenlets.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/greenlets.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/greenlets.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/greenlets.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/interp.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/interp.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/interp.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/interp.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/long.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/long.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/long.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/long.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/mirrors.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/mirrors.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/mirrors.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/mirrors.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/stack_chunk.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/stack_chunk.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/stack_chunk.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/stack_chunk.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/stacks.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/stacks.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/stacks.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/stacks.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/strings.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/strings.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/strings.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/strings.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/tasks.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/tasks.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/tasks.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/tasks.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/threads.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/threads.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/threads.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/threads.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/echion/vm.cc b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/vm.cc
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/echion/vm.cc
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/echion/vm.cc
diff --git a/ddtrace/internal/datadog/profiling/stack/src/sampler.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/sampler.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/sampler.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/sampler.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/src/stack.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/stack.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/stack.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/stack.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/src/stack_renderer.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/stack_renderer.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/stack_renderer.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/stack_renderer.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/src/thread_span_links.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/thread_span_links.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/src/thread_span_links.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/src/thread_span_links.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/test/CMakeLists.txt b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/test/CMakeLists.txt
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/test/CMakeLists.txt
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/test/CMakeLists.txt
diff --git a/ddtrace/internal/datadog/profiling/stack/test/test_thread_span_links.cpp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/test/test_thread_span_links.cpp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/test/test_thread_span_links.cpp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/test/test_thread_span_links.cpp
diff --git a/ddtrace/internal/datadog/profiling/stack/test/valgrind.supp b/dd-trace-py/ddtrace/internal/datadog/profiling/stack/test/valgrind.supp
similarity index 100%
rename from ddtrace/internal/datadog/profiling/stack/test/valgrind.supp
rename to dd-trace-py/ddtrace/internal/datadog/profiling/stack/test/valgrind.supp
diff --git a/ddtrace/internal/datadog/profiling/test/.gitignore b/dd-trace-py/ddtrace/internal/datadog/profiling/test/.gitignore
similarity index 100%
rename from ddtrace/internal/datadog/profiling/test/.gitignore
rename to dd-trace-py/ddtrace/internal/datadog/profiling/test/.gitignore
diff --git a/ddtrace/internal/datadog/profiling/util.py b/dd-trace-py/ddtrace/internal/datadog/profiling/util.py
similarity index 100%
rename from ddtrace/internal/datadog/profiling/util.py
rename to dd-trace-py/ddtrace/internal/datadog/profiling/util.py
diff --git a/ddtrace/internal/datastreams/__init__.py b/dd-trace-py/ddtrace/internal/datastreams/__init__.py
similarity index 100%
rename from ddtrace/internal/datastreams/__init__.py
rename to dd-trace-py/ddtrace/internal/datastreams/__init__.py
diff --git a/ddtrace/internal/datastreams/aiokafka.py b/dd-trace-py/ddtrace/internal/datastreams/aiokafka.py
similarity index 100%
rename from ddtrace/internal/datastreams/aiokafka.py
rename to dd-trace-py/ddtrace/internal/datastreams/aiokafka.py
diff --git a/ddtrace/internal/datastreams/botocore.py b/dd-trace-py/ddtrace/internal/datastreams/botocore.py
similarity index 100%
rename from ddtrace/internal/datastreams/botocore.py
rename to dd-trace-py/ddtrace/internal/datastreams/botocore.py
diff --git a/ddtrace/internal/datastreams/encoding.py b/dd-trace-py/ddtrace/internal/datastreams/encoding.py
similarity index 100%
rename from ddtrace/internal/datastreams/encoding.py
rename to dd-trace-py/ddtrace/internal/datastreams/encoding.py
diff --git a/ddtrace/internal/datastreams/kafka.py b/dd-trace-py/ddtrace/internal/datastreams/kafka.py
similarity index 100%
rename from ddtrace/internal/datastreams/kafka.py
rename to dd-trace-py/ddtrace/internal/datastreams/kafka.py
diff --git a/ddtrace/internal/datastreams/kombu.py b/dd-trace-py/ddtrace/internal/datastreams/kombu.py
similarity index 100%
rename from ddtrace/internal/datastreams/kombu.py
rename to dd-trace-py/ddtrace/internal/datastreams/kombu.py
diff --git a/ddtrace/internal/datastreams/processor.py b/dd-trace-py/ddtrace/internal/datastreams/processor.py
similarity index 100%
rename from ddtrace/internal/datastreams/processor.py
rename to dd-trace-py/ddtrace/internal/datastreams/processor.py
diff --git a/ddtrace/internal/datastreams/schemas/__init__.py b/dd-trace-py/ddtrace/internal/datastreams/schemas/__init__.py
similarity index 100%
rename from ddtrace/internal/datastreams/schemas/__init__.py
rename to dd-trace-py/ddtrace/internal/datastreams/schemas/__init__.py
diff --git a/ddtrace/internal/datastreams/schemas/schema.py b/dd-trace-py/ddtrace/internal/datastreams/schemas/schema.py
similarity index 100%
rename from ddtrace/internal/datastreams/schemas/schema.py
rename to dd-trace-py/ddtrace/internal/datastreams/schemas/schema.py
diff --git a/ddtrace/internal/datastreams/schemas/schema_builder.py b/dd-trace-py/ddtrace/internal/datastreams/schemas/schema_builder.py
similarity index 100%
rename from ddtrace/internal/datastreams/schemas/schema_builder.py
rename to dd-trace-py/ddtrace/internal/datastreams/schemas/schema_builder.py
diff --git a/ddtrace/internal/datastreams/schemas/schema_iterator.py b/dd-trace-py/ddtrace/internal/datastreams/schemas/schema_iterator.py
similarity index 100%
rename from ddtrace/internal/datastreams/schemas/schema_iterator.py
rename to dd-trace-py/ddtrace/internal/datastreams/schemas/schema_iterator.py
diff --git a/ddtrace/internal/datastreams/schemas/schema_sampler.py b/dd-trace-py/ddtrace/internal/datastreams/schemas/schema_sampler.py
similarity index 100%
rename from ddtrace/internal/datastreams/schemas/schema_sampler.py
rename to dd-trace-py/ddtrace/internal/datastreams/schemas/schema_sampler.py
diff --git a/ddtrace/internal/datastreams/utils.py b/dd-trace-py/ddtrace/internal/datastreams/utils.py
similarity index 100%
rename from ddtrace/internal/datastreams/utils.py
rename to dd-trace-py/ddtrace/internal/datastreams/utils.py
diff --git a/ddtrace/internal/debug.py b/dd-trace-py/ddtrace/internal/debug.py
similarity index 100%
rename from ddtrace/internal/debug.py
rename to dd-trace-py/ddtrace/internal/debug.py
diff --git a/ddtrace/internal/dist_computing/__init__.py b/dd-trace-py/ddtrace/internal/dist_computing/__init__.py
similarity index 100%
rename from ddtrace/internal/dist_computing/__init__.py
rename to dd-trace-py/ddtrace/internal/dist_computing/__init__.py
diff --git a/ddtrace/internal/dist_computing/utils.py b/dd-trace-py/ddtrace/internal/dist_computing/utils.py
similarity index 100%
rename from ddtrace/internal/dist_computing/utils.py
rename to dd-trace-py/ddtrace/internal/dist_computing/utils.py
diff --git a/ddtrace/internal/dogstatsd.py b/dd-trace-py/ddtrace/internal/dogstatsd.py
similarity index 100%
rename from ddtrace/internal/dogstatsd.py
rename to dd-trace-py/ddtrace/internal/dogstatsd.py
diff --git a/ddtrace/internal/encoding.py b/dd-trace-py/ddtrace/internal/encoding.py
similarity index 100%
rename from ddtrace/internal/encoding.py
rename to dd-trace-py/ddtrace/internal/encoding.py
diff --git a/ddtrace/internal/endpoints.py b/dd-trace-py/ddtrace/internal/endpoints.py
similarity index 100%
rename from ddtrace/internal/endpoints.py
rename to dd-trace-py/ddtrace/internal/endpoints.py
diff --git a/ddtrace/internal/evp_proxy/__init__.py b/dd-trace-py/ddtrace/internal/evp_proxy/__init__.py
similarity index 100%
rename from ddtrace/internal/evp_proxy/__init__.py
rename to dd-trace-py/ddtrace/internal/evp_proxy/__init__.py
diff --git a/ddtrace/internal/evp_proxy/constants.py b/dd-trace-py/ddtrace/internal/evp_proxy/constants.py
similarity index 100%
rename from ddtrace/internal/evp_proxy/constants.py
rename to dd-trace-py/ddtrace/internal/evp_proxy/constants.py
diff --git a/ddtrace/internal/flare/__init__.py b/dd-trace-py/ddtrace/internal/flare/__init__.py
similarity index 100%
rename from ddtrace/internal/flare/__init__.py
rename to dd-trace-py/ddtrace/internal/flare/__init__.py
diff --git a/ddtrace/internal/flare/_subscribers.py b/dd-trace-py/ddtrace/internal/flare/_subscribers.py
similarity index 100%
rename from ddtrace/internal/flare/_subscribers.py
rename to dd-trace-py/ddtrace/internal/flare/_subscribers.py
diff --git a/ddtrace/internal/flare/flare.py b/dd-trace-py/ddtrace/internal/flare/flare.py
similarity index 100%
rename from ddtrace/internal/flare/flare.py
rename to dd-trace-py/ddtrace/internal/flare/flare.py
diff --git a/ddtrace/internal/flare/json_formatter.py b/dd-trace-py/ddtrace/internal/flare/json_formatter.py
similarity index 100%
rename from ddtrace/internal/flare/json_formatter.py
rename to dd-trace-py/ddtrace/internal/flare/json_formatter.py
diff --git a/ddtrace/internal/forksafe.py b/dd-trace-py/ddtrace/internal/forksafe.py
similarity index 100%
rename from ddtrace/internal/forksafe.py
rename to dd-trace-py/ddtrace/internal/forksafe.py
diff --git a/ddtrace/internal/gitmetadata.py b/dd-trace-py/ddtrace/internal/gitmetadata.py
similarity index 100%
rename from ddtrace/internal/gitmetadata.py
rename to dd-trace-py/ddtrace/internal/gitmetadata.py
diff --git a/ddtrace/internal/glob_matching.py b/dd-trace-py/ddtrace/internal/glob_matching.py
similarity index 100%
rename from ddtrace/internal/glob_matching.py
rename to dd-trace-py/ddtrace/internal/glob_matching.py
diff --git a/ddtrace/internal/hostname.py b/dd-trace-py/ddtrace/internal/hostname.py
similarity index 100%
rename from ddtrace/internal/hostname.py
rename to dd-trace-py/ddtrace/internal/hostname.py
diff --git a/ddtrace/internal/http.py b/dd-trace-py/ddtrace/internal/http.py
similarity index 100%
rename from ddtrace/internal/http.py
rename to dd-trace-py/ddtrace/internal/http.py
diff --git a/ddtrace/internal/iast/__init__.py b/dd-trace-py/ddtrace/internal/iast/__init__.py
similarity index 100%
rename from ddtrace/internal/iast/__init__.py
rename to dd-trace-py/ddtrace/internal/iast/__init__.py
diff --git a/ddtrace/internal/iast/product.py b/dd-trace-py/ddtrace/internal/iast/product.py
similarity index 100%
rename from ddtrace/internal/iast/product.py
rename to dd-trace-py/ddtrace/internal/iast/product.py
diff --git a/ddtrace/internal/ipc.py b/dd-trace-py/ddtrace/internal/ipc.py
similarity index 100%
rename from ddtrace/internal/ipc.py
rename to dd-trace-py/ddtrace/internal/ipc.py
diff --git a/ddtrace/internal/logger.py b/dd-trace-py/ddtrace/internal/logger.py
similarity index 100%
rename from ddtrace/internal/logger.py
rename to dd-trace-py/ddtrace/internal/logger.py
diff --git a/ddtrace/internal/metrics.py b/dd-trace-py/ddtrace/internal/metrics.py
similarity index 100%
rename from ddtrace/internal/metrics.py
rename to dd-trace-py/ddtrace/internal/metrics.py
diff --git a/ddtrace/internal/module.py b/dd-trace-py/ddtrace/internal/module.py
similarity index 100%
rename from ddtrace/internal/module.py
rename to dd-trace-py/ddtrace/internal/module.py
diff --git a/ddtrace/internal/native/__init__.py b/dd-trace-py/ddtrace/internal/native/__init__.py
similarity index 100%
rename from ddtrace/internal/native/__init__.py
rename to dd-trace-py/ddtrace/internal/native/__init__.py
diff --git a/ddtrace/internal/native/_native.pyi b/dd-trace-py/ddtrace/internal/native/_native.pyi
similarity index 100%
rename from ddtrace/internal/native/_native.pyi
rename to dd-trace-py/ddtrace/internal/native/_native.pyi
diff --git a/ddtrace/internal/native_runtime.py b/dd-trace-py/ddtrace/internal/native_runtime.py
similarity index 100%
rename from ddtrace/internal/native_runtime.py
rename to dd-trace-py/ddtrace/internal/native_runtime.py
diff --git a/ddtrace/internal/openfeature/__init__.py b/dd-trace-py/ddtrace/internal/openfeature/__init__.py
similarity index 100%
rename from ddtrace/internal/openfeature/__init__.py
rename to dd-trace-py/ddtrace/internal/openfeature/__init__.py
diff --git a/ddtrace/internal/openfeature/_config.py b/dd-trace-py/ddtrace/internal/openfeature/_config.py
similarity index 100%
rename from ddtrace/internal/openfeature/_config.py
rename to dd-trace-py/ddtrace/internal/openfeature/_config.py
diff --git a/ddtrace/internal/openfeature/_exposure.py b/dd-trace-py/ddtrace/internal/openfeature/_exposure.py
similarity index 100%
rename from ddtrace/internal/openfeature/_exposure.py
rename to dd-trace-py/ddtrace/internal/openfeature/_exposure.py
diff --git a/ddtrace/internal/openfeature/_flageval_metrics.py b/dd-trace-py/ddtrace/internal/openfeature/_flageval_metrics.py
similarity index 100%
rename from ddtrace/internal/openfeature/_flageval_metrics.py
rename to dd-trace-py/ddtrace/internal/openfeature/_flageval_metrics.py
diff --git a/ddtrace/internal/openfeature/_native.py b/dd-trace-py/ddtrace/internal/openfeature/_native.py
similarity index 100%
rename from ddtrace/internal/openfeature/_native.py
rename to dd-trace-py/ddtrace/internal/openfeature/_native.py
diff --git a/ddtrace/internal/openfeature/_provider.py b/dd-trace-py/ddtrace/internal/openfeature/_provider.py
similarity index 100%
rename from ddtrace/internal/openfeature/_provider.py
rename to dd-trace-py/ddtrace/internal/openfeature/_provider.py
diff --git a/ddtrace/internal/openfeature/_remoteconfiguration.py b/dd-trace-py/ddtrace/internal/openfeature/_remoteconfiguration.py
similarity index 100%
rename from ddtrace/internal/openfeature/_remoteconfiguration.py
rename to dd-trace-py/ddtrace/internal/openfeature/_remoteconfiguration.py
diff --git a/ddtrace/internal/openfeature/product.py b/dd-trace-py/ddtrace/internal/openfeature/product.py
similarity index 100%
rename from ddtrace/internal/openfeature/product.py
rename to dd-trace-py/ddtrace/internal/openfeature/product.py
diff --git a/ddtrace/internal/openfeature/writer.py b/dd-trace-py/ddtrace/internal/openfeature/writer.py
similarity index 100%
rename from ddtrace/internal/openfeature/writer.py
rename to dd-trace-py/ddtrace/internal/openfeature/writer.py
diff --git a/ddtrace/internal/opentelemetry/__init__.py b/dd-trace-py/ddtrace/internal/opentelemetry/__init__.py
similarity index 100%
rename from ddtrace/internal/opentelemetry/__init__.py
rename to dd-trace-py/ddtrace/internal/opentelemetry/__init__.py
diff --git a/ddtrace/internal/opentelemetry/constants.py b/dd-trace-py/ddtrace/internal/opentelemetry/constants.py
similarity index 100%
rename from ddtrace/internal/opentelemetry/constants.py
rename to dd-trace-py/ddtrace/internal/opentelemetry/constants.py
diff --git a/ddtrace/internal/opentelemetry/context.py b/dd-trace-py/ddtrace/internal/opentelemetry/context.py
similarity index 100%
rename from ddtrace/internal/opentelemetry/context.py
rename to dd-trace-py/ddtrace/internal/opentelemetry/context.py
diff --git a/ddtrace/internal/opentelemetry/logs.py b/dd-trace-py/ddtrace/internal/opentelemetry/logs.py
similarity index 100%
rename from ddtrace/internal/opentelemetry/logs.py
rename to dd-trace-py/ddtrace/internal/opentelemetry/logs.py
diff --git a/ddtrace/internal/opentelemetry/metrics.py b/dd-trace-py/ddtrace/internal/opentelemetry/metrics.py
similarity index 100%
rename from ddtrace/internal/opentelemetry/metrics.py
rename to dd-trace-py/ddtrace/internal/opentelemetry/metrics.py
diff --git a/ddtrace/internal/opentelemetry/span.py b/dd-trace-py/ddtrace/internal/opentelemetry/span.py
similarity index 100%
rename from ddtrace/internal/opentelemetry/span.py
rename to dd-trace-py/ddtrace/internal/opentelemetry/span.py
diff --git a/ddtrace/internal/opentelemetry/trace.py b/dd-trace-py/ddtrace/internal/opentelemetry/trace.py
similarity index 100%
rename from ddtrace/internal/opentelemetry/trace.py
rename to dd-trace-py/ddtrace/internal/opentelemetry/trace.py
diff --git a/ddtrace/internal/pack.h b/dd-trace-py/ddtrace/internal/pack.h
similarity index 100%
rename from ddtrace/internal/pack.h
rename to dd-trace-py/ddtrace/internal/pack.h
diff --git a/ddtrace/internal/pack_template.h b/dd-trace-py/ddtrace/internal/pack_template.h
similarity index 100%
rename from ddtrace/internal/pack_template.h
rename to dd-trace-py/ddtrace/internal/pack_template.h
diff --git a/ddtrace/internal/packages.py b/dd-trace-py/ddtrace/internal/packages.py
similarity index 100%
rename from ddtrace/internal/packages.py
rename to dd-trace-py/ddtrace/internal/packages.py
diff --git a/ddtrace/internal/peer_service/__init__.py b/dd-trace-py/ddtrace/internal/peer_service/__init__.py
similarity index 100%
rename from ddtrace/internal/peer_service/__init__.py
rename to dd-trace-py/ddtrace/internal/peer_service/__init__.py
diff --git a/ddtrace/internal/peer_service/processor.py b/dd-trace-py/ddtrace/internal/peer_service/processor.py
similarity index 100%
rename from ddtrace/internal/peer_service/processor.py
rename to dd-trace-py/ddtrace/internal/peer_service/processor.py
diff --git a/ddtrace/internal/periodic.py b/dd-trace-py/ddtrace/internal/periodic.py
similarity index 100%
rename from ddtrace/internal/periodic.py
rename to dd-trace-py/ddtrace/internal/periodic.py
diff --git a/ddtrace/internal/process_tags/__init__.py b/dd-trace-py/ddtrace/internal/process_tags/__init__.py
similarity index 100%
rename from ddtrace/internal/process_tags/__init__.py
rename to dd-trace-py/ddtrace/internal/process_tags/__init__.py
diff --git a/ddtrace/internal/processor/__init__.py b/dd-trace-py/ddtrace/internal/processor/__init__.py
similarity index 100%
rename from ddtrace/internal/processor/__init__.py
rename to dd-trace-py/ddtrace/internal/processor/__init__.py
diff --git a/ddtrace/internal/processor/endpoint_call_counter.py b/dd-trace-py/ddtrace/internal/processor/endpoint_call_counter.py
similarity index 100%
rename from ddtrace/internal/processor/endpoint_call_counter.py
rename to dd-trace-py/ddtrace/internal/processor/endpoint_call_counter.py
diff --git a/ddtrace/internal/products.py b/dd-trace-py/ddtrace/internal/products.py
similarity index 100%
rename from ddtrace/internal/products.py
rename to dd-trace-py/ddtrace/internal/products.py
diff --git a/ddtrace/internal/rate_limiter.py b/dd-trace-py/ddtrace/internal/rate_limiter.py
similarity index 100%
rename from ddtrace/internal/rate_limiter.py
rename to dd-trace-py/ddtrace/internal/rate_limiter.py
diff --git a/ddtrace/internal/remoteconfig/__init__.py b/dd-trace-py/ddtrace/internal/remoteconfig/__init__.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/__init__.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/__init__.py
diff --git a/ddtrace/internal/remoteconfig/_connectors.py b/dd-trace-py/ddtrace/internal/remoteconfig/_connectors.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/_connectors.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/_connectors.py
diff --git a/ddtrace/internal/remoteconfig/_publishers.py b/dd-trace-py/ddtrace/internal/remoteconfig/_publishers.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/_publishers.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/_publishers.py
diff --git a/ddtrace/internal/remoteconfig/_subscribers.py b/dd-trace-py/ddtrace/internal/remoteconfig/_subscribers.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/_subscribers.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/_subscribers.py
diff --git a/ddtrace/internal/remoteconfig/client.py b/dd-trace-py/ddtrace/internal/remoteconfig/client.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/client.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/client.py
diff --git a/ddtrace/internal/remoteconfig/constants.py b/dd-trace-py/ddtrace/internal/remoteconfig/constants.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/constants.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/constants.py
diff --git a/ddtrace/internal/remoteconfig/products/__init__.py b/dd-trace-py/ddtrace/internal/remoteconfig/products/__init__.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/products/__init__.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/products/__init__.py
diff --git a/ddtrace/internal/remoteconfig/products/apm_tracing.py b/dd-trace-py/ddtrace/internal/remoteconfig/products/apm_tracing.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/products/apm_tracing.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/products/apm_tracing.py
diff --git a/ddtrace/internal/remoteconfig/products/client.py b/dd-trace-py/ddtrace/internal/remoteconfig/products/client.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/products/client.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/products/client.py
diff --git a/ddtrace/internal/remoteconfig/worker.py b/dd-trace-py/ddtrace/internal/remoteconfig/worker.py
similarity index 100%
rename from ddtrace/internal/remoteconfig/worker.py
rename to dd-trace-py/ddtrace/internal/remoteconfig/worker.py
diff --git a/ddtrace/internal/runtime/__init__.py b/dd-trace-py/ddtrace/internal/runtime/__init__.py
similarity index 100%
rename from ddtrace/internal/runtime/__init__.py
rename to dd-trace-py/ddtrace/internal/runtime/__init__.py
diff --git a/ddtrace/internal/runtime/collector.py b/dd-trace-py/ddtrace/internal/runtime/collector.py
similarity index 100%
rename from ddtrace/internal/runtime/collector.py
rename to dd-trace-py/ddtrace/internal/runtime/collector.py
diff --git a/ddtrace/internal/runtime/constants.py b/dd-trace-py/ddtrace/internal/runtime/constants.py
similarity index 100%
rename from ddtrace/internal/runtime/constants.py
rename to dd-trace-py/ddtrace/internal/runtime/constants.py
diff --git a/ddtrace/internal/runtime/container.py b/dd-trace-py/ddtrace/internal/runtime/container.py
similarity index 100%
rename from ddtrace/internal/runtime/container.py
rename to dd-trace-py/ddtrace/internal/runtime/container.py
diff --git a/ddtrace/internal/runtime/metric_collectors.py b/dd-trace-py/ddtrace/internal/runtime/metric_collectors.py
similarity index 100%
rename from ddtrace/internal/runtime/metric_collectors.py
rename to dd-trace-py/ddtrace/internal/runtime/metric_collectors.py
diff --git a/ddtrace/internal/runtime/runtime_metrics.py b/dd-trace-py/ddtrace/internal/runtime/runtime_metrics.py
similarity index 100%
rename from ddtrace/internal/runtime/runtime_metrics.py
rename to dd-trace-py/ddtrace/internal/runtime/runtime_metrics.py
diff --git a/ddtrace/internal/runtime/tag_collectors.py b/dd-trace-py/ddtrace/internal/runtime/tag_collectors.py
similarity index 100%
rename from ddtrace/internal/runtime/tag_collectors.py
rename to dd-trace-py/ddtrace/internal/runtime/tag_collectors.py
diff --git a/ddtrace/internal/safety.py b/dd-trace-py/ddtrace/internal/safety.py
similarity index 100%
rename from ddtrace/internal/safety.py
rename to dd-trace-py/ddtrace/internal/safety.py
diff --git a/ddtrace/internal/sampling.py b/dd-trace-py/ddtrace/internal/sampling.py
similarity index 100%
rename from ddtrace/internal/sampling.py
rename to dd-trace-py/ddtrace/internal/sampling.py
diff --git a/ddtrace/internal/sca/__init__.py b/dd-trace-py/ddtrace/internal/sca/__init__.py
similarity index 100%
rename from ddtrace/internal/sca/__init__.py
rename to dd-trace-py/ddtrace/internal/sca/__init__.py
diff --git a/ddtrace/internal/sca/product.py b/dd-trace-py/ddtrace/internal/sca/product.py
similarity index 100%
rename from ddtrace/internal/sca/product.py
rename to dd-trace-py/ddtrace/internal/sca/product.py
diff --git a/ddtrace/internal/schema/__init__.py b/dd-trace-py/ddtrace/internal/schema/__init__.py
similarity index 100%
rename from ddtrace/internal/schema/__init__.py
rename to dd-trace-py/ddtrace/internal/schema/__init__.py
diff --git a/ddtrace/internal/schema/processor.py b/dd-trace-py/ddtrace/internal/schema/processor.py
similarity index 100%
rename from ddtrace/internal/schema/processor.py
rename to dd-trace-py/ddtrace/internal/schema/processor.py
diff --git a/ddtrace/internal/schema/span_attribute_schema.py b/dd-trace-py/ddtrace/internal/schema/span_attribute_schema.py
similarity index 100%
rename from ddtrace/internal/schema/span_attribute_schema.py
rename to dd-trace-py/ddtrace/internal/schema/span_attribute_schema.py
diff --git a/ddtrace/internal/serverless/__init__.py b/dd-trace-py/ddtrace/internal/serverless/__init__.py
similarity index 100%
rename from ddtrace/internal/serverless/__init__.py
rename to dd-trace-py/ddtrace/internal/serverless/__init__.py
diff --git a/ddtrace/internal/service.py b/dd-trace-py/ddtrace/internal/service.py
similarity index 100%
rename from ddtrace/internal/service.py
rename to dd-trace-py/ddtrace/internal/service.py
diff --git a/ddtrace/internal/settings/__init__.py b/dd-trace-py/ddtrace/internal/settings/__init__.py
similarity index 100%
rename from ddtrace/internal/settings/__init__.py
rename to dd-trace-py/ddtrace/internal/settings/__init__.py
diff --git a/ddtrace/internal/settings/_agent.py b/dd-trace-py/ddtrace/internal/settings/_agent.py
similarity index 100%
rename from ddtrace/internal/settings/_agent.py
rename to dd-trace-py/ddtrace/internal/settings/_agent.py
diff --git a/ddtrace/internal/settings/_config.py b/dd-trace-py/ddtrace/internal/settings/_config.py
similarity index 100%
rename from ddtrace/internal/settings/_config.py
rename to dd-trace-py/ddtrace/internal/settings/_config.py
diff --git a/ddtrace/internal/settings/_core.py b/dd-trace-py/ddtrace/internal/settings/_core.py
similarity index 100%
rename from ddtrace/internal/settings/_core.py
rename to dd-trace-py/ddtrace/internal/settings/_core.py
diff --git a/ddtrace/internal/settings/_core.pyi b/dd-trace-py/ddtrace/internal/settings/_core.pyi
similarity index 100%
rename from ddtrace/internal/settings/_core.pyi
rename to dd-trace-py/ddtrace/internal/settings/_core.pyi
diff --git a/ddtrace/internal/settings/_database_monitoring.py b/dd-trace-py/ddtrace/internal/settings/_database_monitoring.py
similarity index 100%
rename from ddtrace/internal/settings/_database_monitoring.py
rename to dd-trace-py/ddtrace/internal/settings/_database_monitoring.py
diff --git a/ddtrace/internal/settings/_inferred_base_service.py b/dd-trace-py/ddtrace/internal/settings/_inferred_base_service.py
similarity index 100%
rename from ddtrace/internal/settings/_inferred_base_service.py
rename to dd-trace-py/ddtrace/internal/settings/_inferred_base_service.py
diff --git a/ddtrace/internal/settings/_opentelemetry.py b/dd-trace-py/ddtrace/internal/settings/_opentelemetry.py
similarity index 100%
rename from ddtrace/internal/settings/_opentelemetry.py
rename to dd-trace-py/ddtrace/internal/settings/_opentelemetry.py
diff --git a/ddtrace/internal/settings/_otel_remapper.py b/dd-trace-py/ddtrace/internal/settings/_otel_remapper.py
similarity index 100%
rename from ddtrace/internal/settings/_otel_remapper.py
rename to dd-trace-py/ddtrace/internal/settings/_otel_remapper.py
diff --git a/ddtrace/internal/settings/_supported_configurations.py b/dd-trace-py/ddtrace/internal/settings/_supported_configurations.py
similarity index 100%
rename from ddtrace/internal/settings/_supported_configurations.py
rename to dd-trace-py/ddtrace/internal/settings/_supported_configurations.py
diff --git a/ddtrace/internal/settings/_telemetry.py b/dd-trace-py/ddtrace/internal/settings/_telemetry.py
similarity index 100%
rename from ddtrace/internal/settings/_telemetry.py
rename to dd-trace-py/ddtrace/internal/settings/_telemetry.py
diff --git a/ddtrace/internal/settings/asm.py b/dd-trace-py/ddtrace/internal/settings/asm.py
similarity index 100%
rename from ddtrace/internal/settings/asm.py
rename to dd-trace-py/ddtrace/internal/settings/asm.py
diff --git a/ddtrace/internal/settings/code_origin.py b/dd-trace-py/ddtrace/internal/settings/code_origin.py
similarity index 100%
rename from ddtrace/internal/settings/code_origin.py
rename to dd-trace-py/ddtrace/internal/settings/code_origin.py
diff --git a/ddtrace/internal/settings/crashtracker.py b/dd-trace-py/ddtrace/internal/settings/crashtracker.py
similarity index 100%
rename from ddtrace/internal/settings/crashtracker.py
rename to dd-trace-py/ddtrace/internal/settings/crashtracker.py
diff --git a/ddtrace/internal/settings/dynamic_instrumentation.py b/dd-trace-py/ddtrace/internal/settings/dynamic_instrumentation.py
similarity index 100%
rename from ddtrace/internal/settings/dynamic_instrumentation.py
rename to dd-trace-py/ddtrace/internal/settings/dynamic_instrumentation.py
diff --git a/ddtrace/internal/settings/endpoint_config.py b/dd-trace-py/ddtrace/internal/settings/endpoint_config.py
similarity index 100%
rename from ddtrace/internal/settings/endpoint_config.py
rename to dd-trace-py/ddtrace/internal/settings/endpoint_config.py
diff --git a/ddtrace/internal/settings/env.py b/dd-trace-py/ddtrace/internal/settings/env.py
similarity index 100%
rename from ddtrace/internal/settings/env.py
rename to dd-trace-py/ddtrace/internal/settings/env.py
diff --git a/ddtrace/internal/settings/errortracking.py b/dd-trace-py/ddtrace/internal/settings/errortracking.py
similarity index 100%
rename from ddtrace/internal/settings/errortracking.py
rename to dd-trace-py/ddtrace/internal/settings/errortracking.py
diff --git a/ddtrace/internal/settings/exception_replay.py b/dd-trace-py/ddtrace/internal/settings/exception_replay.py
similarity index 100%
rename from ddtrace/internal/settings/exception_replay.py
rename to dd-trace-py/ddtrace/internal/settings/exception_replay.py
diff --git a/ddtrace/internal/settings/http.py b/dd-trace-py/ddtrace/internal/settings/http.py
similarity index 100%
rename from ddtrace/internal/settings/http.py
rename to dd-trace-py/ddtrace/internal/settings/http.py
diff --git a/ddtrace/internal/settings/integration.py b/dd-trace-py/ddtrace/internal/settings/integration.py
similarity index 100%
rename from ddtrace/internal/settings/integration.py
rename to dd-trace-py/ddtrace/internal/settings/integration.py
diff --git a/ddtrace/internal/settings/live_debugging.py b/dd-trace-py/ddtrace/internal/settings/live_debugging.py
similarity index 100%
rename from ddtrace/internal/settings/live_debugging.py
rename to dd-trace-py/ddtrace/internal/settings/live_debugging.py
diff --git a/ddtrace/internal/settings/openfeature.py b/dd-trace-py/ddtrace/internal/settings/openfeature.py
similarity index 100%
rename from ddtrace/internal/settings/openfeature.py
rename to dd-trace-py/ddtrace/internal/settings/openfeature.py
diff --git a/ddtrace/internal/settings/peer_service.py b/dd-trace-py/ddtrace/internal/settings/peer_service.py
similarity index 100%
rename from ddtrace/internal/settings/peer_service.py
rename to dd-trace-py/ddtrace/internal/settings/peer_service.py
diff --git a/ddtrace/internal/settings/process_tags.py b/dd-trace-py/ddtrace/internal/settings/process_tags.py
similarity index 100%
rename from ddtrace/internal/settings/process_tags.py
rename to dd-trace-py/ddtrace/internal/settings/process_tags.py
diff --git a/ddtrace/internal/settings/profiling.py b/dd-trace-py/ddtrace/internal/settings/profiling.py
similarity index 100%
rename from ddtrace/internal/settings/profiling.py
rename to dd-trace-py/ddtrace/internal/settings/profiling.py
diff --git a/ddtrace/internal/settings/profiling.pyi b/dd-trace-py/ddtrace/internal/settings/profiling.pyi
similarity index 100%
rename from ddtrace/internal/settings/profiling.pyi
rename to dd-trace-py/ddtrace/internal/settings/profiling.pyi
diff --git a/ddtrace/internal/settings/symbol_db.py b/dd-trace-py/ddtrace/internal/settings/symbol_db.py
similarity index 100%
rename from ddtrace/internal/settings/symbol_db.py
rename to dd-trace-py/ddtrace/internal/settings/symbol_db.py
diff --git a/ddtrace/internal/settings/third_party.py b/dd-trace-py/ddtrace/internal/settings/third_party.py
similarity index 100%
rename from ddtrace/internal/settings/third_party.py
rename to dd-trace-py/ddtrace/internal/settings/third_party.py
diff --git a/ddtrace/internal/sma.py b/dd-trace-py/ddtrace/internal/sma.py
similarity index 100%
rename from ddtrace/internal/sma.py
rename to dd-trace-py/ddtrace/internal/sma.py
diff --git a/ddtrace/internal/symbol_db/__init__.py b/dd-trace-py/ddtrace/internal/symbol_db/__init__.py
similarity index 100%
rename from ddtrace/internal/symbol_db/__init__.py
rename to dd-trace-py/ddtrace/internal/symbol_db/__init__.py
diff --git a/ddtrace/internal/symbol_db/product.py b/dd-trace-py/ddtrace/internal/symbol_db/product.py
similarity index 100%
rename from ddtrace/internal/symbol_db/product.py
rename to dd-trace-py/ddtrace/internal/symbol_db/product.py
diff --git a/ddtrace/internal/symbol_db/remoteconfig.py b/dd-trace-py/ddtrace/internal/symbol_db/remoteconfig.py
similarity index 100%
rename from ddtrace/internal/symbol_db/remoteconfig.py
rename to dd-trace-py/ddtrace/internal/symbol_db/remoteconfig.py
diff --git a/ddtrace/internal/symbol_db/symbols.py b/dd-trace-py/ddtrace/internal/symbol_db/symbols.py
similarity index 100%
rename from ddtrace/internal/symbol_db/symbols.py
rename to dd-trace-py/ddtrace/internal/symbol_db/symbols.py
diff --git a/ddtrace/internal/sysdep.h b/dd-trace-py/ddtrace/internal/sysdep.h
similarity index 100%
rename from ddtrace/internal/sysdep.h
rename to dd-trace-py/ddtrace/internal/sysdep.h
diff --git a/ddtrace/internal/telemetry/__init__.py b/dd-trace-py/ddtrace/internal/telemetry/__init__.py
similarity index 100%
rename from ddtrace/internal/telemetry/__init__.py
rename to dd-trace-py/ddtrace/internal/telemetry/__init__.py
diff --git a/ddtrace/internal/telemetry/constants.py b/dd-trace-py/ddtrace/internal/telemetry/constants.py
similarity index 100%
rename from ddtrace/internal/telemetry/constants.py
rename to dd-trace-py/ddtrace/internal/telemetry/constants.py
diff --git a/ddtrace/internal/telemetry/data.py b/dd-trace-py/ddtrace/internal/telemetry/data.py
similarity index 100%
rename from ddtrace/internal/telemetry/data.py
rename to dd-trace-py/ddtrace/internal/telemetry/data.py
diff --git a/ddtrace/internal/telemetry/dependency.py b/dd-trace-py/ddtrace/internal/telemetry/dependency.py
similarity index 100%
rename from ddtrace/internal/telemetry/dependency.py
rename to dd-trace-py/ddtrace/internal/telemetry/dependency.py
diff --git a/ddtrace/internal/telemetry/dependency_tracker.py b/dd-trace-py/ddtrace/internal/telemetry/dependency_tracker.py
similarity index 100%
rename from ddtrace/internal/telemetry/dependency_tracker.py
rename to dd-trace-py/ddtrace/internal/telemetry/dependency_tracker.py
diff --git a/ddtrace/internal/telemetry/logging.py b/dd-trace-py/ddtrace/internal/telemetry/logging.py
similarity index 100%
rename from ddtrace/internal/telemetry/logging.py
rename to dd-trace-py/ddtrace/internal/telemetry/logging.py
diff --git a/ddtrace/internal/telemetry/metrics_namespaces.pyi b/dd-trace-py/ddtrace/internal/telemetry/metrics_namespaces.pyi
similarity index 100%
rename from ddtrace/internal/telemetry/metrics_namespaces.pyi
rename to dd-trace-py/ddtrace/internal/telemetry/metrics_namespaces.pyi
diff --git a/ddtrace/internal/telemetry/metrics_namespaces.pyx b/dd-trace-py/ddtrace/internal/telemetry/metrics_namespaces.pyx
similarity index 100%
rename from ddtrace/internal/telemetry/metrics_namespaces.pyx
rename to dd-trace-py/ddtrace/internal/telemetry/metrics_namespaces.pyx
diff --git a/ddtrace/internal/telemetry/modules.py b/dd-trace-py/ddtrace/internal/telemetry/modules.py
similarity index 100%
rename from ddtrace/internal/telemetry/modules.py
rename to dd-trace-py/ddtrace/internal/telemetry/modules.py
diff --git a/ddtrace/internal/telemetry/noop_writer.py b/dd-trace-py/ddtrace/internal/telemetry/noop_writer.py
similarity index 100%
rename from ddtrace/internal/telemetry/noop_writer.py
rename to dd-trace-py/ddtrace/internal/telemetry/noop_writer.py
diff --git a/ddtrace/internal/telemetry/writer.py b/dd-trace-py/ddtrace/internal/telemetry/writer.py
similarity index 100%
rename from ddtrace/internal/telemetry/writer.py
rename to dd-trace-py/ddtrace/internal/telemetry/writer.py
diff --git a/ddtrace/internal/test_visibility/__init__.py b/dd-trace-py/ddtrace/internal/test_visibility/__init__.py
similarity index 100%
rename from ddtrace/internal/test_visibility/__init__.py
rename to dd-trace-py/ddtrace/internal/test_visibility/__init__.py
diff --git a/ddtrace/internal/test_visibility/_atr_mixins.py b/dd-trace-py/ddtrace/internal/test_visibility/_atr_mixins.py
similarity index 100%
rename from ddtrace/internal/test_visibility/_atr_mixins.py
rename to dd-trace-py/ddtrace/internal/test_visibility/_atr_mixins.py
diff --git a/ddtrace/internal/test_visibility/_attempt_to_fix_mixins.py b/dd-trace-py/ddtrace/internal/test_visibility/_attempt_to_fix_mixins.py
similarity index 100%
rename from ddtrace/internal/test_visibility/_attempt_to_fix_mixins.py
rename to dd-trace-py/ddtrace/internal/test_visibility/_attempt_to_fix_mixins.py
diff --git a/ddtrace/internal/test_visibility/_benchmark_mixin.py b/dd-trace-py/ddtrace/internal/test_visibility/_benchmark_mixin.py
similarity index 100%
rename from ddtrace/internal/test_visibility/_benchmark_mixin.py
rename to dd-trace-py/ddtrace/internal/test_visibility/_benchmark_mixin.py
diff --git a/ddtrace/internal/test_visibility/_efd_mixins.py b/dd-trace-py/ddtrace/internal/test_visibility/_efd_mixins.py
similarity index 100%
rename from ddtrace/internal/test_visibility/_efd_mixins.py
rename to dd-trace-py/ddtrace/internal/test_visibility/_efd_mixins.py
diff --git a/ddtrace/internal/test_visibility/_itr_mixins.py b/dd-trace-py/ddtrace/internal/test_visibility/_itr_mixins.py
similarity index 100%
rename from ddtrace/internal/test_visibility/_itr_mixins.py
rename to dd-trace-py/ddtrace/internal/test_visibility/_itr_mixins.py
diff --git a/ddtrace/internal/test_visibility/_library_capabilities.py b/dd-trace-py/ddtrace/internal/test_visibility/_library_capabilities.py
similarity index 100%
rename from ddtrace/internal/test_visibility/_library_capabilities.py
rename to dd-trace-py/ddtrace/internal/test_visibility/_library_capabilities.py
diff --git a/ddtrace/internal/test_visibility/api.py b/dd-trace-py/ddtrace/internal/test_visibility/api.py
similarity index 100%
rename from ddtrace/internal/test_visibility/api.py
rename to dd-trace-py/ddtrace/internal/test_visibility/api.py
diff --git a/ddtrace/internal/test_visibility/coverage_lines.py b/dd-trace-py/ddtrace/internal/test_visibility/coverage_lines.py
similarity index 100%
rename from ddtrace/internal/test_visibility/coverage_lines.py
rename to dd-trace-py/ddtrace/internal/test_visibility/coverage_lines.py
diff --git a/ddtrace/internal/test_visibility/coverage_report_utils.py b/dd-trace-py/ddtrace/internal/test_visibility/coverage_report_utils.py
similarity index 100%
rename from ddtrace/internal/test_visibility/coverage_report_utils.py
rename to dd-trace-py/ddtrace/internal/test_visibility/coverage_report_utils.py
diff --git a/ddtrace/internal/third-party.tar.gz b/dd-trace-py/ddtrace/internal/third-party.tar.gz
similarity index 100%
rename from ddtrace/internal/third-party.tar.gz
rename to dd-trace-py/ddtrace/internal/third-party.tar.gz
diff --git a/ddtrace/internal/threads.py b/dd-trace-py/ddtrace/internal/threads.py
similarity index 100%
rename from ddtrace/internal/threads.py
rename to dd-trace-py/ddtrace/internal/threads.py
diff --git a/ddtrace/internal/tracemethods.py b/dd-trace-py/ddtrace/internal/tracemethods.py
similarity index 100%
rename from ddtrace/internal/tracemethods.py
rename to dd-trace-py/ddtrace/internal/tracemethods.py
diff --git a/ddtrace/internal/uds.py b/dd-trace-py/ddtrace/internal/uds.py
similarity index 100%
rename from ddtrace/internal/uds.py
rename to dd-trace-py/ddtrace/internal/uds.py
diff --git a/ddtrace/internal/utils/__init__.py b/dd-trace-py/ddtrace/internal/utils/__init__.py
similarity index 100%
rename from ddtrace/internal/utils/__init__.py
rename to dd-trace-py/ddtrace/internal/utils/__init__.py
diff --git a/ddtrace/internal/utils/attrdict.py b/dd-trace-py/ddtrace/internal/utils/attrdict.py
similarity index 100%
rename from ddtrace/internal/utils/attrdict.py
rename to dd-trace-py/ddtrace/internal/utils/attrdict.py
diff --git a/ddtrace/internal/utils/cache.py b/dd-trace-py/ddtrace/internal/utils/cache.py
similarity index 100%
rename from ddtrace/internal/utils/cache.py
rename to dd-trace-py/ddtrace/internal/utils/cache.py
diff --git a/ddtrace/internal/utils/config.py b/dd-trace-py/ddtrace/internal/utils/config.py
similarity index 100%
rename from ddtrace/internal/utils/config.py
rename to dd-trace-py/ddtrace/internal/utils/config.py
diff --git a/ddtrace/internal/utils/deprecations.py b/dd-trace-py/ddtrace/internal/utils/deprecations.py
similarity index 100%
rename from ddtrace/internal/utils/deprecations.py
rename to dd-trace-py/ddtrace/internal/utils/deprecations.py
diff --git a/ddtrace/internal/utils/fnv.py b/dd-trace-py/ddtrace/internal/utils/fnv.py
similarity index 100%
rename from ddtrace/internal/utils/fnv.py
rename to dd-trace-py/ddtrace/internal/utils/fnv.py
diff --git a/ddtrace/internal/utils/formats.py b/dd-trace-py/ddtrace/internal/utils/formats.py
similarity index 100%
rename from ddtrace/internal/utils/formats.py
rename to dd-trace-py/ddtrace/internal/utils/formats.py
diff --git a/ddtrace/internal/utils/http.py b/dd-trace-py/ddtrace/internal/utils/http.py
similarity index 100%
rename from ddtrace/internal/utils/http.py
rename to dd-trace-py/ddtrace/internal/utils/http.py
diff --git a/ddtrace/internal/utils/importlib.py b/dd-trace-py/ddtrace/internal/utils/importlib.py
similarity index 100%
rename from ddtrace/internal/utils/importlib.py
rename to dd-trace-py/ddtrace/internal/utils/importlib.py
diff --git a/ddtrace/internal/utils/inspection.py b/dd-trace-py/ddtrace/internal/utils/inspection.py
similarity index 100%
rename from ddtrace/internal/utils/inspection.py
rename to dd-trace-py/ddtrace/internal/utils/inspection.py
diff --git a/ddtrace/internal/utils/retry.py b/dd-trace-py/ddtrace/internal/utils/retry.py
similarity index 100%
rename from ddtrace/internal/utils/retry.py
rename to dd-trace-py/ddtrace/internal/utils/retry.py
diff --git a/ddtrace/internal/utils/signals.py b/dd-trace-py/ddtrace/internal/utils/signals.py
similarity index 100%
rename from ddtrace/internal/utils/signals.py
rename to dd-trace-py/ddtrace/internal/utils/signals.py
diff --git a/ddtrace/internal/utils/time.py b/dd-trace-py/ddtrace/internal/utils/time.py
similarity index 100%
rename from ddtrace/internal/utils/time.py
rename to dd-trace-py/ddtrace/internal/utils/time.py
diff --git a/ddtrace/internal/utils/version.py b/dd-trace-py/ddtrace/internal/utils/version.py
similarity index 100%
rename from ddtrace/internal/utils/version.py
rename to dd-trace-py/ddtrace/internal/utils/version.py
diff --git a/ddtrace/internal/utils/wrappers.py b/dd-trace-py/ddtrace/internal/utils/wrappers.py
similarity index 100%
rename from ddtrace/internal/utils/wrappers.py
rename to dd-trace-py/ddtrace/internal/utils/wrappers.py
diff --git a/ddtrace/internal/uwsgi.py b/dd-trace-py/ddtrace/internal/uwsgi.py
similarity index 100%
rename from ddtrace/internal/uwsgi.py
rename to dd-trace-py/ddtrace/internal/uwsgi.py
diff --git a/ddtrace/internal/wrapping/__init__.py b/dd-trace-py/ddtrace/internal/wrapping/__init__.py
similarity index 100%
rename from ddtrace/internal/wrapping/__init__.py
rename to dd-trace-py/ddtrace/internal/wrapping/__init__.py
diff --git a/ddtrace/internal/wrapping/asyncs.py b/dd-trace-py/ddtrace/internal/wrapping/asyncs.py
similarity index 100%
rename from ddtrace/internal/wrapping/asyncs.py
rename to dd-trace-py/ddtrace/internal/wrapping/asyncs.py
diff --git a/ddtrace/internal/wrapping/context.py b/dd-trace-py/ddtrace/internal/wrapping/context.py
similarity index 100%
rename from ddtrace/internal/wrapping/context.py
rename to dd-trace-py/ddtrace/internal/wrapping/context.py
diff --git a/ddtrace/internal/wrapping/generators.py b/dd-trace-py/ddtrace/internal/wrapping/generators.py
similarity index 100%
rename from ddtrace/internal/wrapping/generators.py
rename to dd-trace-py/ddtrace/internal/wrapping/generators.py
diff --git a/ddtrace/internal/writer/__init__.py b/dd-trace-py/ddtrace/internal/writer/__init__.py
similarity index 100%
rename from ddtrace/internal/writer/__init__.py
rename to dd-trace-py/ddtrace/internal/writer/__init__.py
diff --git a/ddtrace/internal/writer/writer.py b/dd-trace-py/ddtrace/internal/writer/writer.py
similarity index 100%
rename from ddtrace/internal/writer/writer.py
rename to dd-trace-py/ddtrace/internal/writer/writer.py
diff --git a/ddtrace/internal/writer/writer_client.py b/dd-trace-py/ddtrace/internal/writer/writer_client.py
similarity index 100%
rename from ddtrace/internal/writer/writer_client.py
rename to dd-trace-py/ddtrace/internal/writer/writer_client.py
diff --git a/ddtrace/llmobs/__init__.py b/dd-trace-py/ddtrace/llmobs/__init__.py
similarity index 100%
rename from ddtrace/llmobs/__init__.py
rename to dd-trace-py/ddtrace/llmobs/__init__.py
diff --git a/ddtrace/llmobs/_constants.py b/dd-trace-py/ddtrace/llmobs/_constants.py
similarity index 100%
rename from ddtrace/llmobs/_constants.py
rename to dd-trace-py/ddtrace/llmobs/_constants.py
diff --git a/ddtrace/llmobs/_context.py b/dd-trace-py/ddtrace/llmobs/_context.py
similarity index 100%
rename from ddtrace/llmobs/_context.py
rename to dd-trace-py/ddtrace/llmobs/_context.py
diff --git a/ddtrace/llmobs/_evaluators/__init__.py b/dd-trace-py/ddtrace/llmobs/_evaluators/__init__.py
similarity index 100%
rename from ddtrace/llmobs/_evaluators/__init__.py
rename to dd-trace-py/ddtrace/llmobs/_evaluators/__init__.py
diff --git a/ddtrace/llmobs/_evaluators/format.py b/dd-trace-py/ddtrace/llmobs/_evaluators/format.py
similarity index 100%
rename from ddtrace/llmobs/_evaluators/format.py
rename to dd-trace-py/ddtrace/llmobs/_evaluators/format.py
diff --git a/ddtrace/llmobs/_evaluators/llm_judge.py b/dd-trace-py/ddtrace/llmobs/_evaluators/llm_judge.py
similarity index 100%
rename from ddtrace/llmobs/_evaluators/llm_judge.py
rename to dd-trace-py/ddtrace/llmobs/_evaluators/llm_judge.py
diff --git a/ddtrace/llmobs/_evaluators/runner.py b/dd-trace-py/ddtrace/llmobs/_evaluators/runner.py
similarity index 100%
rename from ddtrace/llmobs/_evaluators/runner.py
rename to dd-trace-py/ddtrace/llmobs/_evaluators/runner.py
diff --git a/ddtrace/llmobs/_evaluators/sampler.py b/dd-trace-py/ddtrace/llmobs/_evaluators/sampler.py
similarity index 100%
rename from ddtrace/llmobs/_evaluators/sampler.py
rename to dd-trace-py/ddtrace/llmobs/_evaluators/sampler.py
diff --git a/ddtrace/llmobs/_evaluators/semantic.py b/dd-trace-py/ddtrace/llmobs/_evaluators/semantic.py
similarity index 100%
rename from ddtrace/llmobs/_evaluators/semantic.py
rename to dd-trace-py/ddtrace/llmobs/_evaluators/semantic.py
diff --git a/ddtrace/llmobs/_evaluators/string_matching.py b/dd-trace-py/ddtrace/llmobs/_evaluators/string_matching.py
similarity index 100%
rename from ddtrace/llmobs/_evaluators/string_matching.py
rename to dd-trace-py/ddtrace/llmobs/_evaluators/string_matching.py
diff --git a/ddtrace/llmobs/_experiment.py b/dd-trace-py/ddtrace/llmobs/_experiment.py
similarity index 100%
rename from ddtrace/llmobs/_experiment.py
rename to dd-trace-py/ddtrace/llmobs/_experiment.py
diff --git a/ddtrace/llmobs/_http.py b/dd-trace-py/ddtrace/llmobs/_http.py
similarity index 100%
rename from ddtrace/llmobs/_http.py
rename to dd-trace-py/ddtrace/llmobs/_http.py
diff --git a/ddtrace/llmobs/_integrations/__init__.py b/dd-trace-py/ddtrace/llmobs/_integrations/__init__.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/__init__.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/__init__.py
diff --git a/ddtrace/llmobs/_integrations/anthropic.py b/dd-trace-py/ddtrace/llmobs/_integrations/anthropic.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/anthropic.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/anthropic.py
diff --git a/ddtrace/llmobs/_integrations/base.py b/dd-trace-py/ddtrace/llmobs/_integrations/base.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/base.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/base.py
diff --git a/ddtrace/llmobs/_integrations/base_stream_handler.py b/dd-trace-py/ddtrace/llmobs/_integrations/base_stream_handler.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/base_stream_handler.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/base_stream_handler.py
diff --git a/ddtrace/llmobs/_integrations/bedrock.py b/dd-trace-py/ddtrace/llmobs/_integrations/bedrock.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/bedrock.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/bedrock.py
diff --git a/ddtrace/llmobs/_integrations/bedrock_agents.py b/dd-trace-py/ddtrace/llmobs/_integrations/bedrock_agents.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/bedrock_agents.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/bedrock_agents.py
diff --git a/ddtrace/llmobs/_integrations/bedrock_utils.py b/dd-trace-py/ddtrace/llmobs/_integrations/bedrock_utils.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/bedrock_utils.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/bedrock_utils.py
diff --git a/ddtrace/llmobs/_integrations/claude_agent_sdk.py b/dd-trace-py/ddtrace/llmobs/_integrations/claude_agent_sdk.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/claude_agent_sdk.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/claude_agent_sdk.py
diff --git a/ddtrace/llmobs/_integrations/constants.py b/dd-trace-py/ddtrace/llmobs/_integrations/constants.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/constants.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/constants.py
diff --git a/ddtrace/llmobs/_integrations/crewai.py b/dd-trace-py/ddtrace/llmobs/_integrations/crewai.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/crewai.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/crewai.py
diff --git a/ddtrace/llmobs/_integrations/google_adk.py b/dd-trace-py/ddtrace/llmobs/_integrations/google_adk.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/google_adk.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/google_adk.py
diff --git a/ddtrace/llmobs/_integrations/google_genai.py b/dd-trace-py/ddtrace/llmobs/_integrations/google_genai.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/google_genai.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/google_genai.py
diff --git a/ddtrace/llmobs/_integrations/google_utils.py b/dd-trace-py/ddtrace/llmobs/_integrations/google_utils.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/google_utils.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/google_utils.py
diff --git a/ddtrace/llmobs/_integrations/langchain.py b/dd-trace-py/ddtrace/llmobs/_integrations/langchain.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/langchain.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/langchain.py
diff --git a/ddtrace/llmobs/_integrations/langgraph.py b/dd-trace-py/ddtrace/llmobs/_integrations/langgraph.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/langgraph.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/langgraph.py
diff --git a/ddtrace/llmobs/_integrations/litellm.py b/dd-trace-py/ddtrace/llmobs/_integrations/litellm.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/litellm.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/litellm.py
diff --git a/ddtrace/llmobs/_integrations/llama_index.py b/dd-trace-py/ddtrace/llmobs/_integrations/llama_index.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/llama_index.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/llama_index.py
diff --git a/ddtrace/llmobs/_integrations/mcp.py b/dd-trace-py/ddtrace/llmobs/_integrations/mcp.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/mcp.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/mcp.py
diff --git a/ddtrace/llmobs/_integrations/openai.py b/dd-trace-py/ddtrace/llmobs/_integrations/openai.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/openai.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/openai.py
diff --git a/ddtrace/llmobs/_integrations/openai_agents.py b/dd-trace-py/ddtrace/llmobs/_integrations/openai_agents.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/openai_agents.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/openai_agents.py
diff --git a/ddtrace/llmobs/_integrations/pydantic_ai.py b/dd-trace-py/ddtrace/llmobs/_integrations/pydantic_ai.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/pydantic_ai.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/pydantic_ai.py
diff --git a/ddtrace/llmobs/_integrations/utils.py b/dd-trace-py/ddtrace/llmobs/_integrations/utils.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/utils.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/utils.py
diff --git a/ddtrace/llmobs/_integrations/vertexai.py b/dd-trace-py/ddtrace/llmobs/_integrations/vertexai.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/vertexai.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/vertexai.py
diff --git a/ddtrace/llmobs/_integrations/vllm.py b/dd-trace-py/ddtrace/llmobs/_integrations/vllm.py
similarity index 100%
rename from ddtrace/llmobs/_integrations/vllm.py
rename to dd-trace-py/ddtrace/llmobs/_integrations/vllm.py
diff --git a/ddtrace/llmobs/_llmobs.py b/dd-trace-py/ddtrace/llmobs/_llmobs.py
similarity index 100%
rename from ddtrace/llmobs/_llmobs.py
rename to dd-trace-py/ddtrace/llmobs/_llmobs.py
diff --git a/ddtrace/llmobs/_log_writer.py b/dd-trace-py/ddtrace/llmobs/_log_writer.py
similarity index 100%
rename from ddtrace/llmobs/_log_writer.py
rename to dd-trace-py/ddtrace/llmobs/_log_writer.py
diff --git a/ddtrace/llmobs/_product.py b/dd-trace-py/ddtrace/llmobs/_product.py
similarity index 100%
rename from ddtrace/llmobs/_product.py
rename to dd-trace-py/ddtrace/llmobs/_product.py
diff --git a/ddtrace/llmobs/_prompt_optimization.py b/dd-trace-py/ddtrace/llmobs/_prompt_optimization.py
similarity index 100%
rename from ddtrace/llmobs/_prompt_optimization.py
rename to dd-trace-py/ddtrace/llmobs/_prompt_optimization.py
diff --git a/ddtrace/llmobs/_prompt_optimization_prompt.py b/dd-trace-py/ddtrace/llmobs/_prompt_optimization_prompt.py
similarity index 100%
rename from ddtrace/llmobs/_prompt_optimization_prompt.py
rename to dd-trace-py/ddtrace/llmobs/_prompt_optimization_prompt.py
diff --git a/ddtrace/llmobs/_prompts/__init__.py b/dd-trace-py/ddtrace/llmobs/_prompts/__init__.py
similarity index 100%
rename from ddtrace/llmobs/_prompts/__init__.py
rename to dd-trace-py/ddtrace/llmobs/_prompts/__init__.py
diff --git a/ddtrace/llmobs/_prompts/cache.py b/dd-trace-py/ddtrace/llmobs/_prompts/cache.py
similarity index 100%
rename from ddtrace/llmobs/_prompts/cache.py
rename to dd-trace-py/ddtrace/llmobs/_prompts/cache.py
diff --git a/ddtrace/llmobs/_prompts/manager.py b/dd-trace-py/ddtrace/llmobs/_prompts/manager.py
similarity index 100%
rename from ddtrace/llmobs/_prompts/manager.py
rename to dd-trace-py/ddtrace/llmobs/_prompts/manager.py
diff --git a/ddtrace/llmobs/_prompts/prompt.py b/dd-trace-py/ddtrace/llmobs/_prompts/prompt.py
similarity index 100%
rename from ddtrace/llmobs/_prompts/prompt.py
rename to dd-trace-py/ddtrace/llmobs/_prompts/prompt.py
diff --git a/ddtrace/llmobs/_prompts/utils.py b/dd-trace-py/ddtrace/llmobs/_prompts/utils.py
similarity index 100%
rename from ddtrace/llmobs/_prompts/utils.py
rename to dd-trace-py/ddtrace/llmobs/_prompts/utils.py
diff --git a/ddtrace/llmobs/_telemetry.py b/dd-trace-py/ddtrace/llmobs/_telemetry.py
similarity index 100%
rename from ddtrace/llmobs/_telemetry.py
rename to dd-trace-py/ddtrace/llmobs/_telemetry.py
diff --git a/ddtrace/llmobs/_utils.py b/dd-trace-py/ddtrace/llmobs/_utils.py
similarity index 100%
rename from ddtrace/llmobs/_utils.py
rename to dd-trace-py/ddtrace/llmobs/_utils.py
diff --git a/ddtrace/llmobs/_writer.py b/dd-trace-py/ddtrace/llmobs/_writer.py
similarity index 100%
rename from ddtrace/llmobs/_writer.py
rename to dd-trace-py/ddtrace/llmobs/_writer.py
diff --git a/ddtrace/llmobs/decorators.py b/dd-trace-py/ddtrace/llmobs/decorators.py
similarity index 100%
rename from ddtrace/llmobs/decorators.py
rename to dd-trace-py/ddtrace/llmobs/decorators.py
diff --git a/ddtrace/llmobs/evaluators.py b/dd-trace-py/ddtrace/llmobs/evaluators.py
similarity index 100%
rename from ddtrace/llmobs/evaluators.py
rename to dd-trace-py/ddtrace/llmobs/evaluators.py
diff --git a/ddtrace/llmobs/types.py b/dd-trace-py/ddtrace/llmobs/types.py
similarity index 100%
rename from ddtrace/llmobs/types.py
rename to dd-trace-py/ddtrace/llmobs/types.py
diff --git a/ddtrace/llmobs/utils.py b/dd-trace-py/ddtrace/llmobs/utils.py
similarity index 100%
rename from ddtrace/llmobs/utils.py
rename to dd-trace-py/ddtrace/llmobs/utils.py
diff --git a/ddtrace/openfeature/__init__.py b/dd-trace-py/ddtrace/openfeature/__init__.py
similarity index 100%
rename from ddtrace/openfeature/__init__.py
rename to dd-trace-py/ddtrace/openfeature/__init__.py
diff --git a/ddtrace/opentelemetry/__init__.py b/dd-trace-py/ddtrace/opentelemetry/__init__.py
similarity index 100%
rename from ddtrace/opentelemetry/__init__.py
rename to dd-trace-py/ddtrace/opentelemetry/__init__.py
diff --git a/ddtrace/profiling/__init__.py b/dd-trace-py/ddtrace/profiling/__init__.py
similarity index 100%
rename from ddtrace/profiling/__init__.py
rename to dd-trace-py/ddtrace/profiling/__init__.py
diff --git a/ddtrace/profiling/_asyncio.py b/dd-trace-py/ddtrace/profiling/_asyncio.py
similarity index 100%
rename from ddtrace/profiling/_asyncio.py
rename to dd-trace-py/ddtrace/profiling/_asyncio.py
diff --git a/ddtrace/profiling/_gevent.py b/dd-trace-py/ddtrace/profiling/_gevent.py
similarity index 100%
rename from ddtrace/profiling/_gevent.py
rename to dd-trace-py/ddtrace/profiling/_gevent.py
diff --git a/ddtrace/profiling/_threading.pxd b/dd-trace-py/ddtrace/profiling/_threading.pxd
similarity index 100%
rename from ddtrace/profiling/_threading.pxd
rename to dd-trace-py/ddtrace/profiling/_threading.pxd
diff --git a/ddtrace/profiling/_threading.pyi b/dd-trace-py/ddtrace/profiling/_threading.pyi
similarity index 100%
rename from ddtrace/profiling/_threading.pyi
rename to dd-trace-py/ddtrace/profiling/_threading.pyi
diff --git a/ddtrace/profiling/_threading.pyx b/dd-trace-py/ddtrace/profiling/_threading.pyx
similarity index 100%
rename from ddtrace/profiling/_threading.pyx
rename to dd-trace-py/ddtrace/profiling/_threading.pyx
diff --git a/ddtrace/profiling/auto.py b/dd-trace-py/ddtrace/profiling/auto.py
similarity index 100%
rename from ddtrace/profiling/auto.py
rename to dd-trace-py/ddtrace/profiling/auto.py
diff --git a/ddtrace/profiling/bootstrap/__init__.py b/dd-trace-py/ddtrace/profiling/bootstrap/__init__.py
similarity index 100%
rename from ddtrace/profiling/bootstrap/__init__.py
rename to dd-trace-py/ddtrace/profiling/bootstrap/__init__.py
diff --git a/ddtrace/profiling/bootstrap/sitecustomize.py b/dd-trace-py/ddtrace/profiling/bootstrap/sitecustomize.py
similarity index 100%
rename from ddtrace/profiling/bootstrap/sitecustomize.py
rename to dd-trace-py/ddtrace/profiling/bootstrap/sitecustomize.py
diff --git a/ddtrace/profiling/collector/CMakeLists.txt b/dd-trace-py/ddtrace/profiling/collector/CMakeLists.txt
similarity index 100%
rename from ddtrace/profiling/collector/CMakeLists.txt
rename to dd-trace-py/ddtrace/profiling/collector/CMakeLists.txt
diff --git a/ddtrace/profiling/collector/__init__.py b/dd-trace-py/ddtrace/profiling/collector/__init__.py
similarity index 100%
rename from ddtrace/profiling/collector/__init__.py
rename to dd-trace-py/ddtrace/profiling/collector/__init__.py
diff --git a/ddtrace/profiling/collector/_exception.pyi b/dd-trace-py/ddtrace/profiling/collector/_exception.pyi
similarity index 100%
rename from ddtrace/profiling/collector/_exception.pyi
rename to dd-trace-py/ddtrace/profiling/collector/_exception.pyi
diff --git a/ddtrace/profiling/collector/_exception.pyx b/dd-trace-py/ddtrace/profiling/collector/_exception.pyx
similarity index 100%
rename from ddtrace/profiling/collector/_exception.pyx
rename to dd-trace-py/ddtrace/profiling/collector/_exception.pyx
diff --git a/ddtrace/profiling/collector/_fast_poisson.pyi b/dd-trace-py/ddtrace/profiling/collector/_fast_poisson.pyi
similarity index 100%
rename from ddtrace/profiling/collector/_fast_poisson.pyi
rename to dd-trace-py/ddtrace/profiling/collector/_fast_poisson.pyi
diff --git a/ddtrace/profiling/collector/_fast_poisson.pyx b/dd-trace-py/ddtrace/profiling/collector/_fast_poisson.pyx
similarity index 100%
rename from ddtrace/profiling/collector/_fast_poisson.pyx
rename to dd-trace-py/ddtrace/profiling/collector/_fast_poisson.pyx
diff --git a/ddtrace/profiling/collector/_lock.pyi b/dd-trace-py/ddtrace/profiling/collector/_lock.pyi
similarity index 100%
rename from ddtrace/profiling/collector/_lock.pyi
rename to dd-trace-py/ddtrace/profiling/collector/_lock.pyi
diff --git a/ddtrace/profiling/collector/_lock.pyx b/dd-trace-py/ddtrace/profiling/collector/_lock.pyx
similarity index 100%
rename from ddtrace/profiling/collector/_lock.pyx
rename to dd-trace-py/ddtrace/profiling/collector/_lock.pyx
diff --git a/ddtrace/profiling/collector/_memalloc.cpp b/dd-trace-py/ddtrace/profiling/collector/_memalloc.cpp
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc.cpp
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc.cpp
diff --git a/ddtrace/profiling/collector/_memalloc.pyi b/dd-trace-py/ddtrace/profiling/collector/_memalloc.pyi
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc.pyi
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc.pyi
diff --git a/ddtrace/profiling/collector/_memalloc_debug.h b/dd-trace-py/ddtrace/profiling/collector/_memalloc_debug.h
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_debug.h
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_debug.h
diff --git a/ddtrace/profiling/collector/_memalloc_frame.h b/dd-trace-py/ddtrace/profiling/collector/_memalloc_frame.h
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_frame.h
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_frame.h
diff --git a/ddtrace/profiling/collector/_memalloc_gc_guard.hpp b/dd-trace-py/ddtrace/profiling/collector/_memalloc_gc_guard.hpp
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_gc_guard.hpp
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_gc_guard.hpp
diff --git a/ddtrace/profiling/collector/_memalloc_heap.cpp b/dd-trace-py/ddtrace/profiling/collector/_memalloc_heap.cpp
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_heap.cpp
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_heap.cpp
diff --git a/ddtrace/profiling/collector/_memalloc_heap.h b/dd-trace-py/ddtrace/profiling/collector/_memalloc_heap.h
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_heap.h
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_heap.h
diff --git a/ddtrace/profiling/collector/_memalloc_reentrant.cpp b/dd-trace-py/ddtrace/profiling/collector/_memalloc_reentrant.cpp
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_reentrant.cpp
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_reentrant.cpp
diff --git a/ddtrace/profiling/collector/_memalloc_reentrant.h b/dd-trace-py/ddtrace/profiling/collector/_memalloc_reentrant.h
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_reentrant.h
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_reentrant.h
diff --git a/ddtrace/profiling/collector/_memalloc_tb.cpp b/dd-trace-py/ddtrace/profiling/collector/_memalloc_tb.cpp
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_tb.cpp
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_tb.cpp
diff --git a/ddtrace/profiling/collector/_memalloc_tb.h b/dd-trace-py/ddtrace/profiling/collector/_memalloc_tb.h
similarity index 100%
rename from ddtrace/profiling/collector/_memalloc_tb.h
rename to dd-trace-py/ddtrace/profiling/collector/_memalloc_tb.h
diff --git a/ddtrace/profiling/collector/_pymacro.h b/dd-trace-py/ddtrace/profiling/collector/_pymacro.h
similarity index 100%
rename from ddtrace/profiling/collector/_pymacro.h
rename to dd-trace-py/ddtrace/profiling/collector/_pymacro.h
diff --git a/ddtrace/profiling/collector/_sampler.pxd b/dd-trace-py/ddtrace/profiling/collector/_sampler.pxd
similarity index 100%
rename from ddtrace/profiling/collector/_sampler.pxd
rename to dd-trace-py/ddtrace/profiling/collector/_sampler.pxd
diff --git a/ddtrace/profiling/collector/_sampler.pyi b/dd-trace-py/ddtrace/profiling/collector/_sampler.pyi
similarity index 100%
rename from ddtrace/profiling/collector/_sampler.pyi
rename to dd-trace-py/ddtrace/profiling/collector/_sampler.pyi
diff --git a/ddtrace/profiling/collector/_sampler.pyx b/dd-trace-py/ddtrace/profiling/collector/_sampler.pyx
similarity index 100%
rename from ddtrace/profiling/collector/_sampler.pyx
rename to dd-trace-py/ddtrace/profiling/collector/_sampler.pyx
diff --git a/ddtrace/profiling/collector/_task.pxd b/dd-trace-py/ddtrace/profiling/collector/_task.pxd
similarity index 100%
rename from ddtrace/profiling/collector/_task.pxd
rename to dd-trace-py/ddtrace/profiling/collector/_task.pxd
diff --git a/ddtrace/profiling/collector/_task.pyi b/dd-trace-py/ddtrace/profiling/collector/_task.pyi
similarity index 100%
rename from ddtrace/profiling/collector/_task.pyi
rename to dd-trace-py/ddtrace/profiling/collector/_task.pyi
diff --git a/ddtrace/profiling/collector/_task.pyx b/dd-trace-py/ddtrace/profiling/collector/_task.pyx
similarity index 100%
rename from ddtrace/profiling/collector/_task.pyx
rename to dd-trace-py/ddtrace/profiling/collector/_task.pyx
diff --git a/ddtrace/profiling/collector/asyncio.py b/dd-trace-py/ddtrace/profiling/collector/asyncio.py
similarity index 100%
rename from ddtrace/profiling/collector/asyncio.py
rename to dd-trace-py/ddtrace/profiling/collector/asyncio.py
diff --git a/ddtrace/profiling/collector/exception.py b/dd-trace-py/ddtrace/profiling/collector/exception.py
similarity index 100%
rename from ddtrace/profiling/collector/exception.py
rename to dd-trace-py/ddtrace/profiling/collector/exception.py
diff --git a/ddtrace/profiling/collector/memalloc.py b/dd-trace-py/ddtrace/profiling/collector/memalloc.py
similarity index 100%
rename from ddtrace/profiling/collector/memalloc.py
rename to dd-trace-py/ddtrace/profiling/collector/memalloc.py
diff --git a/ddtrace/profiling/collector/pytorch.py b/dd-trace-py/ddtrace/profiling/collector/pytorch.py
similarity index 100%
rename from ddtrace/profiling/collector/pytorch.py
rename to dd-trace-py/ddtrace/profiling/collector/pytorch.py
diff --git a/ddtrace/profiling/collector/stack.py b/dd-trace-py/ddtrace/profiling/collector/stack.py
similarity index 100%
rename from ddtrace/profiling/collector/stack.py
rename to dd-trace-py/ddtrace/profiling/collector/stack.py
diff --git a/ddtrace/profiling/collector/threading.py b/dd-trace-py/ddtrace/profiling/collector/threading.py
similarity index 100%
rename from ddtrace/profiling/collector/threading.py
rename to dd-trace-py/ddtrace/profiling/collector/threading.py
diff --git a/ddtrace/profiling/profiler.py b/dd-trace-py/ddtrace/profiling/profiler.py
similarity index 100%
rename from ddtrace/profiling/profiler.py
rename to dd-trace-py/ddtrace/profiling/profiler.py
diff --git a/ddtrace/profiling/scheduler.py b/dd-trace-py/ddtrace/profiling/scheduler.py
similarity index 100%
rename from ddtrace/profiling/scheduler.py
rename to dd-trace-py/ddtrace/profiling/scheduler.py
diff --git a/ddtrace/propagation/__init__.py b/dd-trace-py/ddtrace/propagation/__init__.py
similarity index 100%
rename from ddtrace/propagation/__init__.py
rename to dd-trace-py/ddtrace/propagation/__init__.py
diff --git a/ddtrace/propagation/_database_monitoring.py b/dd-trace-py/ddtrace/propagation/_database_monitoring.py
similarity index 100%
rename from ddtrace/propagation/_database_monitoring.py
rename to dd-trace-py/ddtrace/propagation/_database_monitoring.py
diff --git a/ddtrace/propagation/_utils.py b/dd-trace-py/ddtrace/propagation/_utils.py
similarity index 100%
rename from ddtrace/propagation/_utils.py
rename to dd-trace-py/ddtrace/propagation/_utils.py
diff --git a/ddtrace/propagation/http.py b/dd-trace-py/ddtrace/propagation/http.py
similarity index 100%
rename from ddtrace/propagation/http.py
rename to dd-trace-py/ddtrace/propagation/http.py
diff --git a/ddtrace/py.typed b/dd-trace-py/ddtrace/py.typed
similarity index 100%
rename from ddtrace/py.typed
rename to dd-trace-py/ddtrace/py.typed
diff --git a/ddtrace/runtime/__init__.py b/dd-trace-py/ddtrace/runtime/__init__.py
similarity index 100%
rename from ddtrace/runtime/__init__.py
rename to dd-trace-py/ddtrace/runtime/__init__.py
diff --git a/ddtrace/sourcecode/__init__.py b/dd-trace-py/ddtrace/sourcecode/__init__.py
similarity index 100%
rename from ddtrace/sourcecode/__init__.py
rename to dd-trace-py/ddtrace/sourcecode/__init__.py
diff --git a/ddtrace/sourcecode/_utils.py b/dd-trace-py/ddtrace/sourcecode/_utils.py
similarity index 100%
rename from ddtrace/sourcecode/_utils.py
rename to dd-trace-py/ddtrace/sourcecode/_utils.py
diff --git a/ddtrace/sourcecode/setuptools_auto.py b/dd-trace-py/ddtrace/sourcecode/setuptools_auto.py
similarity index 100%
rename from ddtrace/sourcecode/setuptools_auto.py
rename to dd-trace-py/ddtrace/sourcecode/setuptools_auto.py
diff --git a/ddtrace/testing/__init__.py b/dd-trace-py/ddtrace/testing/__init__.py
similarity index 100%
rename from ddtrace/testing/__init__.py
rename to dd-trace-py/ddtrace/testing/__init__.py
diff --git a/ddtrace/testing/internal/__init__.py b/dd-trace-py/ddtrace/testing/internal/__init__.py
similarity index 100%
rename from ddtrace/testing/internal/__init__.py
rename to dd-trace-py/ddtrace/testing/internal/__init__.py
diff --git a/ddtrace/testing/internal/api_client.py b/dd-trace-py/ddtrace/testing/internal/api_client.py
similarity index 100%
rename from ddtrace/testing/internal/api_client.py
rename to dd-trace-py/ddtrace/testing/internal/api_client.py
diff --git a/ddtrace/testing/internal/cached_file_provider.py b/dd-trace-py/ddtrace/testing/internal/cached_file_provider.py
similarity index 100%
rename from ddtrace/testing/internal/cached_file_provider.py
rename to dd-trace-py/ddtrace/testing/internal/cached_file_provider.py
diff --git a/ddtrace/testing/internal/ci.py b/dd-trace-py/ddtrace/testing/internal/ci.py
similarity index 100%
rename from ddtrace/testing/internal/ci.py
rename to dd-trace-py/ddtrace/testing/internal/ci.py
diff --git a/ddtrace/testing/internal/constants.py b/dd-trace-py/ddtrace/testing/internal/constants.py
similarity index 100%
rename from ddtrace/testing/internal/constants.py
rename to dd-trace-py/ddtrace/testing/internal/constants.py
diff --git a/ddtrace/testing/internal/env_tags.py b/dd-trace-py/ddtrace/testing/internal/env_tags.py
similarity index 100%
rename from ddtrace/testing/internal/env_tags.py
rename to dd-trace-py/ddtrace/testing/internal/env_tags.py
diff --git a/ddtrace/testing/internal/errors.py b/dd-trace-py/ddtrace/testing/internal/errors.py
similarity index 100%
rename from ddtrace/testing/internal/errors.py
rename to dd-trace-py/ddtrace/testing/internal/errors.py
diff --git a/ddtrace/testing/internal/git.py b/dd-trace-py/ddtrace/testing/internal/git.py
similarity index 100%
rename from ddtrace/testing/internal/git.py
rename to dd-trace-py/ddtrace/testing/internal/git.py
diff --git a/ddtrace/testing/internal/http.py b/dd-trace-py/ddtrace/testing/internal/http.py
similarity index 100%
rename from ddtrace/testing/internal/http.py
rename to dd-trace-py/ddtrace/testing/internal/http.py
diff --git a/ddtrace/testing/internal/logging.py b/dd-trace-py/ddtrace/testing/internal/logging.py
similarity index 100%
rename from ddtrace/testing/internal/logging.py
rename to dd-trace-py/ddtrace/testing/internal/logging.py
diff --git a/ddtrace/testing/internal/logs.py b/dd-trace-py/ddtrace/testing/internal/logs.py
similarity index 100%
rename from ddtrace/testing/internal/logs.py
rename to dd-trace-py/ddtrace/testing/internal/logs.py
diff --git a/ddtrace/testing/internal/offline_mode.py b/dd-trace-py/ddtrace/testing/internal/offline_mode.py
similarity index 100%
rename from ddtrace/testing/internal/offline_mode.py
rename to dd-trace-py/ddtrace/testing/internal/offline_mode.py
diff --git a/ddtrace/testing/internal/platform.py b/dd-trace-py/ddtrace/testing/internal/platform.py
similarity index 100%
rename from ddtrace/testing/internal/platform.py
rename to dd-trace-py/ddtrace/testing/internal/platform.py
diff --git a/ddtrace/testing/internal/pytest/__init__.py b/dd-trace-py/ddtrace/testing/internal/pytest/__init__.py
similarity index 100%
rename from ddtrace/testing/internal/pytest/__init__.py
rename to dd-trace-py/ddtrace/testing/internal/pytest/__init__.py
diff --git a/ddtrace/testing/internal/pytest/bdd.py b/dd-trace-py/ddtrace/testing/internal/pytest/bdd.py
similarity index 100%
rename from ddtrace/testing/internal/pytest/bdd.py
rename to dd-trace-py/ddtrace/testing/internal/pytest/bdd.py
diff --git a/ddtrace/testing/internal/pytest/benchmark.py b/dd-trace-py/ddtrace/testing/internal/pytest/benchmark.py
similarity index 100%
rename from ddtrace/testing/internal/pytest/benchmark.py
rename to dd-trace-py/ddtrace/testing/internal/pytest/benchmark.py
diff --git a/ddtrace/testing/internal/pytest/entry_point.py b/dd-trace-py/ddtrace/testing/internal/pytest/entry_point.py
similarity index 100%
rename from ddtrace/testing/internal/pytest/entry_point.py
rename to dd-trace-py/ddtrace/testing/internal/pytest/entry_point.py
diff --git a/ddtrace/testing/internal/pytest/hookspecs.py b/dd-trace-py/ddtrace/testing/internal/pytest/hookspecs.py
similarity index 100%
rename from ddtrace/testing/internal/pytest/hookspecs.py
rename to dd-trace-py/ddtrace/testing/internal/pytest/hookspecs.py
diff --git a/ddtrace/testing/internal/pytest/plugin.py b/dd-trace-py/ddtrace/testing/internal/pytest/plugin.py
similarity index 100%
rename from ddtrace/testing/internal/pytest/plugin.py
rename to dd-trace-py/ddtrace/testing/internal/pytest/plugin.py
diff --git a/ddtrace/testing/internal/pytest/report_links.py b/dd-trace-py/ddtrace/testing/internal/pytest/report_links.py
similarity index 100%
rename from ddtrace/testing/internal/pytest/report_links.py
rename to dd-trace-py/ddtrace/testing/internal/pytest/report_links.py
diff --git a/ddtrace/testing/internal/pytest/utils.py b/dd-trace-py/ddtrace/testing/internal/pytest/utils.py
similarity index 100%
rename from ddtrace/testing/internal/pytest/utils.py
rename to dd-trace-py/ddtrace/testing/internal/pytest/utils.py
diff --git a/ddtrace/testing/internal/retries.py b/dd-trace-py/ddtrace/testing/internal/retries.py
similarity index 100%
rename from ddtrace/testing/internal/retries.py
rename to dd-trace-py/ddtrace/testing/internal/retries.py
diff --git a/ddtrace/testing/internal/retry_handlers.py b/dd-trace-py/ddtrace/testing/internal/retry_handlers.py
similarity index 100%
rename from ddtrace/testing/internal/retry_handlers.py
rename to dd-trace-py/ddtrace/testing/internal/retry_handlers.py
diff --git a/ddtrace/testing/internal/session_manager.py b/dd-trace-py/ddtrace/testing/internal/session_manager.py
similarity index 100%
rename from ddtrace/testing/internal/session_manager.py
rename to dd-trace-py/ddtrace/testing/internal/session_manager.py
diff --git a/ddtrace/testing/internal/settings_data.py b/dd-trace-py/ddtrace/testing/internal/settings_data.py
similarity index 100%
rename from ddtrace/testing/internal/settings_data.py
rename to dd-trace-py/ddtrace/testing/internal/settings_data.py
diff --git a/ddtrace/testing/internal/telemetry.py b/dd-trace-py/ddtrace/testing/internal/telemetry.py
similarity index 100%
rename from ddtrace/testing/internal/telemetry.py
rename to dd-trace-py/ddtrace/testing/internal/telemetry.py
diff --git a/ddtrace/testing/internal/test_data.py b/dd-trace-py/ddtrace/testing/internal/test_data.py
similarity index 100%
rename from ddtrace/testing/internal/test_data.py
rename to dd-trace-py/ddtrace/testing/internal/test_data.py
diff --git a/ddtrace/testing/internal/tracer_api/__init__.py b/dd-trace-py/ddtrace/testing/internal/tracer_api/__init__.py
similarity index 100%
rename from ddtrace/testing/internal/tracer_api/__init__.py
rename to dd-trace-py/ddtrace/testing/internal/tracer_api/__init__.py
diff --git a/ddtrace/testing/internal/tracer_api/context.py b/dd-trace-py/ddtrace/testing/internal/tracer_api/context.py
similarity index 100%
rename from ddtrace/testing/internal/tracer_api/context.py
rename to dd-trace-py/ddtrace/testing/internal/tracer_api/context.py
diff --git a/ddtrace/testing/internal/tracer_api/coverage.py b/dd-trace-py/ddtrace/testing/internal/tracer_api/coverage.py
similarity index 100%
rename from ddtrace/testing/internal/tracer_api/coverage.py
rename to dd-trace-py/ddtrace/testing/internal/tracer_api/coverage.py
diff --git a/ddtrace/testing/internal/tracer_api/pytest_hooks.py b/dd-trace-py/ddtrace/testing/internal/tracer_api/pytest_hooks.py
similarity index 100%
rename from ddtrace/testing/internal/tracer_api/pytest_hooks.py
rename to dd-trace-py/ddtrace/testing/internal/tracer_api/pytest_hooks.py
diff --git a/ddtrace/testing/internal/tracer_api/span_processor.py b/dd-trace-py/ddtrace/testing/internal/tracer_api/span_processor.py
similarity index 100%
rename from ddtrace/testing/internal/tracer_api/span_processor.py
rename to dd-trace-py/ddtrace/testing/internal/tracer_api/span_processor.py
diff --git a/ddtrace/testing/internal/utils.py b/dd-trace-py/ddtrace/testing/internal/utils.py
similarity index 100%
rename from ddtrace/testing/internal/utils.py
rename to dd-trace-py/ddtrace/testing/internal/utils.py
diff --git a/ddtrace/testing/internal/writer.py b/dd-trace-py/ddtrace/testing/internal/writer.py
similarity index 100%
rename from ddtrace/testing/internal/writer.py
rename to dd-trace-py/ddtrace/testing/internal/writer.py
diff --git a/ddtrace/trace/__init__.py b/dd-trace-py/ddtrace/trace/__init__.py
similarity index 100%
rename from ddtrace/trace/__init__.py
rename to dd-trace-py/ddtrace/trace/__init__.py
diff --git a/ddtrace/vendor/__init__.py b/dd-trace-py/ddtrace/vendor/__init__.py
similarity index 100%
rename from ddtrace/vendor/__init__.py
rename to dd-trace-py/ddtrace/vendor/__init__.py
diff --git a/ddtrace/vendor/debtcollector/__init__.py b/dd-trace-py/ddtrace/vendor/debtcollector/__init__.py
similarity index 100%
rename from ddtrace/vendor/debtcollector/__init__.py
rename to dd-trace-py/ddtrace/vendor/debtcollector/__init__.py
diff --git a/ddtrace/vendor/debtcollector/_utils.py b/dd-trace-py/ddtrace/vendor/debtcollector/_utils.py
similarity index 100%
rename from ddtrace/vendor/debtcollector/_utils.py
rename to dd-trace-py/ddtrace/vendor/debtcollector/_utils.py
diff --git a/ddtrace/vendor/debtcollector/moves.py b/dd-trace-py/ddtrace/vendor/debtcollector/moves.py
similarity index 100%
rename from ddtrace/vendor/debtcollector/moves.py
rename to dd-trace-py/ddtrace/vendor/debtcollector/moves.py
diff --git a/ddtrace/vendor/debtcollector/removals.py b/dd-trace-py/ddtrace/vendor/debtcollector/removals.py
similarity index 100%
rename from ddtrace/vendor/debtcollector/removals.py
rename to dd-trace-py/ddtrace/vendor/debtcollector/removals.py
diff --git a/ddtrace/vendor/debtcollector/renames.py b/dd-trace-py/ddtrace/vendor/debtcollector/renames.py
similarity index 100%
rename from ddtrace/vendor/debtcollector/renames.py
rename to dd-trace-py/ddtrace/vendor/debtcollector/renames.py
diff --git a/ddtrace/vendor/debtcollector/updating.py b/dd-trace-py/ddtrace/vendor/debtcollector/updating.py
similarity index 100%
rename from ddtrace/vendor/debtcollector/updating.py
rename to dd-trace-py/ddtrace/vendor/debtcollector/updating.py
diff --git a/ddtrace/vendor/dogstatsd/__init__.py b/dd-trace-py/ddtrace/vendor/dogstatsd/__init__.py
similarity index 100%
rename from ddtrace/vendor/dogstatsd/__init__.py
rename to dd-trace-py/ddtrace/vendor/dogstatsd/__init__.py
diff --git a/ddtrace/vendor/dogstatsd/base.py b/dd-trace-py/ddtrace/vendor/dogstatsd/base.py
similarity index 100%
rename from ddtrace/vendor/dogstatsd/base.py
rename to dd-trace-py/ddtrace/vendor/dogstatsd/base.py
diff --git a/ddtrace/vendor/dogstatsd/compat.py b/dd-trace-py/ddtrace/vendor/dogstatsd/compat.py
similarity index 100%
rename from ddtrace/vendor/dogstatsd/compat.py
rename to dd-trace-py/ddtrace/vendor/dogstatsd/compat.py
diff --git a/ddtrace/vendor/dogstatsd/container.py b/dd-trace-py/ddtrace/vendor/dogstatsd/container.py
similarity index 100%
rename from ddtrace/vendor/dogstatsd/container.py
rename to dd-trace-py/ddtrace/vendor/dogstatsd/container.py
diff --git a/ddtrace/vendor/dogstatsd/context.py b/dd-trace-py/ddtrace/vendor/dogstatsd/context.py
similarity index 100%
rename from ddtrace/vendor/dogstatsd/context.py
rename to dd-trace-py/ddtrace/vendor/dogstatsd/context.py
diff --git a/ddtrace/vendor/dogstatsd/context_async.py b/dd-trace-py/ddtrace/vendor/dogstatsd/context_async.py
similarity index 100%
rename from ddtrace/vendor/dogstatsd/context_async.py
rename to dd-trace-py/ddtrace/vendor/dogstatsd/context_async.py
diff --git a/ddtrace/vendor/dogstatsd/format.py b/dd-trace-py/ddtrace/vendor/dogstatsd/format.py
similarity index 100%
rename from ddtrace/vendor/dogstatsd/format.py
rename to dd-trace-py/ddtrace/vendor/dogstatsd/format.py
diff --git a/ddtrace/vendor/dogstatsd/route.py b/dd-trace-py/ddtrace/vendor/dogstatsd/route.py
similarity index 100%
rename from ddtrace/vendor/dogstatsd/route.py
rename to dd-trace-py/ddtrace/vendor/dogstatsd/route.py
diff --git a/ddtrace/vendor/jsonpath_ng/__init__.py b/dd-trace-py/ddtrace/vendor/jsonpath_ng/__init__.py
similarity index 100%
rename from ddtrace/vendor/jsonpath_ng/__init__.py
rename to dd-trace-py/ddtrace/vendor/jsonpath_ng/__init__.py
diff --git a/ddtrace/vendor/jsonpath_ng/exceptions.py b/dd-trace-py/ddtrace/vendor/jsonpath_ng/exceptions.py
similarity index 100%
rename from ddtrace/vendor/jsonpath_ng/exceptions.py
rename to dd-trace-py/ddtrace/vendor/jsonpath_ng/exceptions.py
diff --git a/ddtrace/vendor/jsonpath_ng/jsonpath.py b/dd-trace-py/ddtrace/vendor/jsonpath_ng/jsonpath.py
similarity index 100%
rename from ddtrace/vendor/jsonpath_ng/jsonpath.py
rename to dd-trace-py/ddtrace/vendor/jsonpath_ng/jsonpath.py
diff --git a/ddtrace/vendor/jsonpath_ng/lexer.py b/dd-trace-py/ddtrace/vendor/jsonpath_ng/lexer.py
similarity index 100%
rename from ddtrace/vendor/jsonpath_ng/lexer.py
rename to dd-trace-py/ddtrace/vendor/jsonpath_ng/lexer.py
diff --git a/ddtrace/vendor/jsonpath_ng/parser.py b/dd-trace-py/ddtrace/vendor/jsonpath_ng/parser.py
similarity index 100%
rename from ddtrace/vendor/jsonpath_ng/parser.py
rename to dd-trace-py/ddtrace/vendor/jsonpath_ng/parser.py
diff --git a/ddtrace/vendor/packaging/__init__.py b/dd-trace-py/ddtrace/vendor/packaging/__init__.py
similarity index 100%
rename from ddtrace/vendor/packaging/__init__.py
rename to dd-trace-py/ddtrace/vendor/packaging/__init__.py
diff --git a/ddtrace/vendor/packaging/_structures.py b/dd-trace-py/ddtrace/vendor/packaging/_structures.py
similarity index 100%
rename from ddtrace/vendor/packaging/_structures.py
rename to dd-trace-py/ddtrace/vendor/packaging/_structures.py
diff --git a/ddtrace/vendor/packaging/specifiers.py b/dd-trace-py/ddtrace/vendor/packaging/specifiers.py
similarity index 100%
rename from ddtrace/vendor/packaging/specifiers.py
rename to dd-trace-py/ddtrace/vendor/packaging/specifiers.py
diff --git a/ddtrace/vendor/packaging/version.py b/dd-trace-py/ddtrace/vendor/packaging/version.py
similarity index 100%
rename from ddtrace/vendor/packaging/version.py
rename to dd-trace-py/ddtrace/vendor/packaging/version.py
diff --git a/ddtrace/vendor/ply/__init__.py b/dd-trace-py/ddtrace/vendor/ply/__init__.py
similarity index 100%
rename from ddtrace/vendor/ply/__init__.py
rename to dd-trace-py/ddtrace/vendor/ply/__init__.py
diff --git a/ddtrace/vendor/ply/lex.py b/dd-trace-py/ddtrace/vendor/ply/lex.py
similarity index 100%
rename from ddtrace/vendor/ply/lex.py
rename to dd-trace-py/ddtrace/vendor/ply/lex.py
diff --git a/ddtrace/vendor/ply/yacc.py b/dd-trace-py/ddtrace/vendor/ply/yacc.py
similarity index 100%
rename from ddtrace/vendor/ply/yacc.py
rename to dd-trace-py/ddtrace/vendor/ply/yacc.py
diff --git a/ddtrace/vendor/psutil/__init__.py b/dd-trace-py/ddtrace/vendor/psutil/__init__.py
similarity index 100%
rename from ddtrace/vendor/psutil/__init__.py
rename to dd-trace-py/ddtrace/vendor/psutil/__init__.py
diff --git a/ddtrace/vendor/psutil/_common.py b/dd-trace-py/ddtrace/vendor/psutil/_common.py
similarity index 100%
rename from ddtrace/vendor/psutil/_common.py
rename to dd-trace-py/ddtrace/vendor/psutil/_common.py
diff --git a/ddtrace/vendor/psutil/_psaix.py b/dd-trace-py/ddtrace/vendor/psutil/_psaix.py
similarity index 100%
rename from ddtrace/vendor/psutil/_psaix.py
rename to dd-trace-py/ddtrace/vendor/psutil/_psaix.py
diff --git a/ddtrace/vendor/psutil/_psbsd.py b/dd-trace-py/ddtrace/vendor/psutil/_psbsd.py
similarity index 100%
rename from ddtrace/vendor/psutil/_psbsd.py
rename to dd-trace-py/ddtrace/vendor/psutil/_psbsd.py
diff --git a/ddtrace/vendor/psutil/_pslinux.py b/dd-trace-py/ddtrace/vendor/psutil/_pslinux.py
similarity index 100%
rename from ddtrace/vendor/psutil/_pslinux.py
rename to dd-trace-py/ddtrace/vendor/psutil/_pslinux.py
diff --git a/ddtrace/vendor/psutil/_psosx.py b/dd-trace-py/ddtrace/vendor/psutil/_psosx.py
similarity index 100%
rename from ddtrace/vendor/psutil/_psosx.py
rename to dd-trace-py/ddtrace/vendor/psutil/_psosx.py
diff --git a/ddtrace/vendor/psutil/_psposix.py b/dd-trace-py/ddtrace/vendor/psutil/_psposix.py
similarity index 100%
rename from ddtrace/vendor/psutil/_psposix.py
rename to dd-trace-py/ddtrace/vendor/psutil/_psposix.py
diff --git a/ddtrace/vendor/psutil/_pssunos.py b/dd-trace-py/ddtrace/vendor/psutil/_pssunos.py
similarity index 100%
rename from ddtrace/vendor/psutil/_pssunos.py
rename to dd-trace-py/ddtrace/vendor/psutil/_pssunos.py
diff --git a/ddtrace/vendor/psutil/_psutil_aix.c b/dd-trace-py/ddtrace/vendor/psutil/_psutil_aix.c
similarity index 100%
rename from ddtrace/vendor/psutil/_psutil_aix.c
rename to dd-trace-py/ddtrace/vendor/psutil/_psutil_aix.c
diff --git a/ddtrace/vendor/psutil/_psutil_bsd.c b/dd-trace-py/ddtrace/vendor/psutil/_psutil_bsd.c
similarity index 100%
rename from ddtrace/vendor/psutil/_psutil_bsd.c
rename to dd-trace-py/ddtrace/vendor/psutil/_psutil_bsd.c
diff --git a/ddtrace/vendor/psutil/_psutil_linux.c b/dd-trace-py/ddtrace/vendor/psutil/_psutil_linux.c
similarity index 100%
rename from ddtrace/vendor/psutil/_psutil_linux.c
rename to dd-trace-py/ddtrace/vendor/psutil/_psutil_linux.c
diff --git a/ddtrace/vendor/psutil/_psutil_osx.c b/dd-trace-py/ddtrace/vendor/psutil/_psutil_osx.c
similarity index 100%
rename from ddtrace/vendor/psutil/_psutil_osx.c
rename to dd-trace-py/ddtrace/vendor/psutil/_psutil_osx.c
diff --git a/ddtrace/vendor/psutil/_psutil_sunos.c b/dd-trace-py/ddtrace/vendor/psutil/_psutil_sunos.c
similarity index 100%
rename from ddtrace/vendor/psutil/_psutil_sunos.c
rename to dd-trace-py/ddtrace/vendor/psutil/_psutil_sunos.c
diff --git a/ddtrace/vendor/psutil/_psutil_windows.c b/dd-trace-py/ddtrace/vendor/psutil/_psutil_windows.c
similarity index 100%
rename from ddtrace/vendor/psutil/_psutil_windows.c
rename to dd-trace-py/ddtrace/vendor/psutil/_psutil_windows.c
diff --git a/ddtrace/vendor/psutil/_pswindows.py b/dd-trace-py/ddtrace/vendor/psutil/_pswindows.py
similarity index 100%
rename from ddtrace/vendor/psutil/_pswindows.py
rename to dd-trace-py/ddtrace/vendor/psutil/_pswindows.py
diff --git a/ddtrace/vendor/psutil/arch/aix/common.c b/dd-trace-py/ddtrace/vendor/psutil/arch/aix/common.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/aix/common.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/aix/common.c
diff --git a/ddtrace/vendor/psutil/arch/aix/common.h b/dd-trace-py/ddtrace/vendor/psutil/arch/aix/common.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/aix/common.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/aix/common.h
diff --git a/ddtrace/vendor/psutil/arch/aix/ifaddrs.c b/dd-trace-py/ddtrace/vendor/psutil/arch/aix/ifaddrs.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/aix/ifaddrs.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/aix/ifaddrs.c
diff --git a/ddtrace/vendor/psutil/arch/aix/ifaddrs.h b/dd-trace-py/ddtrace/vendor/psutil/arch/aix/ifaddrs.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/aix/ifaddrs.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/aix/ifaddrs.h
diff --git a/ddtrace/vendor/psutil/arch/aix/net_connections.c b/dd-trace-py/ddtrace/vendor/psutil/arch/aix/net_connections.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/aix/net_connections.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/aix/net_connections.c
diff --git a/ddtrace/vendor/psutil/arch/aix/net_connections.h b/dd-trace-py/ddtrace/vendor/psutil/arch/aix/net_connections.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/aix/net_connections.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/aix/net_connections.h
diff --git a/ddtrace/vendor/psutil/arch/aix/net_kernel_structs.h b/dd-trace-py/ddtrace/vendor/psutil/arch/aix/net_kernel_structs.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/aix/net_kernel_structs.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/aix/net_kernel_structs.h
diff --git a/ddtrace/vendor/psutil/arch/all/errors.c b/dd-trace-py/ddtrace/vendor/psutil/arch/all/errors.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/all/errors.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/all/errors.c
diff --git a/ddtrace/vendor/psutil/arch/all/init.c b/dd-trace-py/ddtrace/vendor/psutil/arch/all/init.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/all/init.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/all/init.c
diff --git a/ddtrace/vendor/psutil/arch/all/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/all/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/all/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/all/init.h
diff --git a/ddtrace/vendor/psutil/arch/all/pids.c b/dd-trace-py/ddtrace/vendor/psutil/arch/all/pids.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/all/pids.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/all/pids.c
diff --git a/ddtrace/vendor/psutil/arch/all/str.c b/dd-trace-py/ddtrace/vendor/psutil/arch/all/str.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/all/str.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/all/str.c
diff --git a/ddtrace/vendor/psutil/arch/bsd/cpu.c b/dd-trace-py/ddtrace/vendor/psutil/arch/bsd/cpu.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/bsd/cpu.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/bsd/cpu.c
diff --git a/ddtrace/vendor/psutil/arch/bsd/disk.c b/dd-trace-py/ddtrace/vendor/psutil/arch/bsd/disk.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/bsd/disk.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/bsd/disk.c
diff --git a/ddtrace/vendor/psutil/arch/bsd/init.c b/dd-trace-py/ddtrace/vendor/psutil/arch/bsd/init.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/bsd/init.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/bsd/init.c
diff --git a/ddtrace/vendor/psutil/arch/bsd/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/bsd/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/bsd/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/bsd/init.h
diff --git a/ddtrace/vendor/psutil/arch/bsd/net.c b/dd-trace-py/ddtrace/vendor/psutil/arch/bsd/net.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/bsd/net.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/bsd/net.c
diff --git a/ddtrace/vendor/psutil/arch/bsd/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/bsd/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/bsd/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/bsd/proc.c
diff --git a/ddtrace/vendor/psutil/arch/bsd/proc_utils.c b/dd-trace-py/ddtrace/vendor/psutil/arch/bsd/proc_utils.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/bsd/proc_utils.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/bsd/proc_utils.c
diff --git a/ddtrace/vendor/psutil/arch/bsd/sys.c b/dd-trace-py/ddtrace/vendor/psutil/arch/bsd/sys.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/bsd/sys.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/bsd/sys.c
diff --git a/ddtrace/vendor/psutil/arch/freebsd/cpu.c b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/cpu.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/cpu.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/cpu.c
diff --git a/ddtrace/vendor/psutil/arch/freebsd/disk.c b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/disk.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/disk.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/disk.c
diff --git a/ddtrace/vendor/psutil/arch/freebsd/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/init.h
diff --git a/ddtrace/vendor/psutil/arch/freebsd/mem.c b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/mem.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/mem.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/mem.c
diff --git a/ddtrace/vendor/psutil/arch/freebsd/pids.c b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/pids.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/pids.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/pids.c
diff --git a/ddtrace/vendor/psutil/arch/freebsd/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/proc.c
diff --git a/ddtrace/vendor/psutil/arch/freebsd/proc_socks.c b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/proc_socks.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/proc_socks.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/proc_socks.c
diff --git a/ddtrace/vendor/psutil/arch/freebsd/sensors.c b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/sensors.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/sensors.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/sensors.c
diff --git a/ddtrace/vendor/psutil/arch/freebsd/sys_socks.c b/dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/sys_socks.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/freebsd/sys_socks.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/freebsd/sys_socks.c
diff --git a/ddtrace/vendor/psutil/arch/linux/disk.c b/dd-trace-py/ddtrace/vendor/psutil/arch/linux/disk.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/linux/disk.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/linux/disk.c
diff --git a/ddtrace/vendor/psutil/arch/linux/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/linux/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/linux/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/linux/init.h
diff --git a/ddtrace/vendor/psutil/arch/linux/mem.c b/dd-trace-py/ddtrace/vendor/psutil/arch/linux/mem.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/linux/mem.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/linux/mem.c
diff --git a/ddtrace/vendor/psutil/arch/linux/net.c b/dd-trace-py/ddtrace/vendor/psutil/arch/linux/net.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/linux/net.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/linux/net.c
diff --git a/ddtrace/vendor/psutil/arch/linux/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/linux/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/linux/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/linux/proc.c
diff --git a/ddtrace/vendor/psutil/arch/netbsd/cpu.c b/dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/cpu.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/netbsd/cpu.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/cpu.c
diff --git a/ddtrace/vendor/psutil/arch/netbsd/disk.c b/dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/disk.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/netbsd/disk.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/disk.c
diff --git a/ddtrace/vendor/psutil/arch/netbsd/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/netbsd/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/init.h
diff --git a/ddtrace/vendor/psutil/arch/netbsd/mem.c b/dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/mem.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/netbsd/mem.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/mem.c
diff --git a/ddtrace/vendor/psutil/arch/netbsd/pids.c b/dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/pids.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/netbsd/pids.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/pids.c
diff --git a/ddtrace/vendor/psutil/arch/netbsd/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/netbsd/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/proc.c
diff --git a/ddtrace/vendor/psutil/arch/netbsd/socks.c b/dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/socks.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/netbsd/socks.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/netbsd/socks.c
diff --git a/ddtrace/vendor/psutil/arch/openbsd/cpu.c b/dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/cpu.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/openbsd/cpu.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/cpu.c
diff --git a/ddtrace/vendor/psutil/arch/openbsd/disk.c b/dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/disk.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/openbsd/disk.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/disk.c
diff --git a/ddtrace/vendor/psutil/arch/openbsd/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/openbsd/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/init.h
diff --git a/ddtrace/vendor/psutil/arch/openbsd/mem.c b/dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/mem.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/openbsd/mem.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/mem.c
diff --git a/ddtrace/vendor/psutil/arch/openbsd/pids.c b/dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/pids.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/openbsd/pids.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/pids.c
diff --git a/ddtrace/vendor/psutil/arch/openbsd/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/openbsd/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/proc.c
diff --git a/ddtrace/vendor/psutil/arch/openbsd/socks.c b/dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/socks.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/openbsd/socks.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/socks.c
diff --git a/ddtrace/vendor/psutil/arch/openbsd/users.c b/dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/users.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/openbsd/users.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/openbsd/users.c
diff --git a/ddtrace/vendor/psutil/arch/osx/cpu.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/cpu.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/cpu.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/cpu.c
diff --git a/ddtrace/vendor/psutil/arch/osx/disk.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/disk.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/disk.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/disk.c
diff --git a/ddtrace/vendor/psutil/arch/osx/init.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/init.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/init.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/init.c
diff --git a/ddtrace/vendor/psutil/arch/osx/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/init.h
diff --git a/ddtrace/vendor/psutil/arch/osx/mem.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/mem.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/mem.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/mem.c
diff --git a/ddtrace/vendor/psutil/arch/osx/net.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/net.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/net.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/net.c
diff --git a/ddtrace/vendor/psutil/arch/osx/pids.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/pids.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/pids.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/pids.c
diff --git a/ddtrace/vendor/psutil/arch/osx/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/proc.c
diff --git a/ddtrace/vendor/psutil/arch/osx/proc_utils.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/proc_utils.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/proc_utils.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/proc_utils.c
diff --git a/ddtrace/vendor/psutil/arch/osx/sensors.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/sensors.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/sensors.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/sensors.c
diff --git a/ddtrace/vendor/psutil/arch/osx/sys.c b/dd-trace-py/ddtrace/vendor/psutil/arch/osx/sys.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/osx/sys.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/osx/sys.c
diff --git a/ddtrace/vendor/psutil/arch/posix/init.c b/dd-trace-py/ddtrace/vendor/psutil/arch/posix/init.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/posix/init.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/posix/init.c
diff --git a/ddtrace/vendor/psutil/arch/posix/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/posix/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/posix/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/posix/init.h
diff --git a/ddtrace/vendor/psutil/arch/posix/net.c b/dd-trace-py/ddtrace/vendor/psutil/arch/posix/net.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/posix/net.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/posix/net.c
diff --git a/ddtrace/vendor/psutil/arch/posix/pids.c b/dd-trace-py/ddtrace/vendor/psutil/arch/posix/pids.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/posix/pids.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/posix/pids.c
diff --git a/ddtrace/vendor/psutil/arch/posix/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/posix/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/posix/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/posix/proc.c
diff --git a/ddtrace/vendor/psutil/arch/posix/sysctl.c b/dd-trace-py/ddtrace/vendor/psutil/arch/posix/sysctl.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/posix/sysctl.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/posix/sysctl.c
diff --git a/ddtrace/vendor/psutil/arch/posix/users.c b/dd-trace-py/ddtrace/vendor/psutil/arch/posix/users.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/posix/users.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/posix/users.c
diff --git a/ddtrace/vendor/psutil/arch/sunos/cpu.c b/dd-trace-py/ddtrace/vendor/psutil/arch/sunos/cpu.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/sunos/cpu.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/sunos/cpu.c
diff --git a/ddtrace/vendor/psutil/arch/sunos/disk.c b/dd-trace-py/ddtrace/vendor/psutil/arch/sunos/disk.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/sunos/disk.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/sunos/disk.c
diff --git a/ddtrace/vendor/psutil/arch/sunos/environ.c b/dd-trace-py/ddtrace/vendor/psutil/arch/sunos/environ.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/sunos/environ.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/sunos/environ.c
diff --git a/ddtrace/vendor/psutil/arch/sunos/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/sunos/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/sunos/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/sunos/init.h
diff --git a/ddtrace/vendor/psutil/arch/sunos/mem.c b/dd-trace-py/ddtrace/vendor/psutil/arch/sunos/mem.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/sunos/mem.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/sunos/mem.c
diff --git a/ddtrace/vendor/psutil/arch/sunos/net.c b/dd-trace-py/ddtrace/vendor/psutil/arch/sunos/net.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/sunos/net.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/sunos/net.c
diff --git a/ddtrace/vendor/psutil/arch/sunos/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/sunos/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/sunos/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/sunos/proc.c
diff --git a/ddtrace/vendor/psutil/arch/sunos/sys.c b/dd-trace-py/ddtrace/vendor/psutil/arch/sunos/sys.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/sunos/sys.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/sunos/sys.c
diff --git a/ddtrace/vendor/psutil/arch/windows/cpu.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/cpu.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/cpu.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/cpu.c
diff --git a/ddtrace/vendor/psutil/arch/windows/disk.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/disk.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/disk.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/disk.c
diff --git a/ddtrace/vendor/psutil/arch/windows/init.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/init.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/init.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/init.c
diff --git a/ddtrace/vendor/psutil/arch/windows/init.h b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/init.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/init.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/init.h
diff --git a/ddtrace/vendor/psutil/arch/windows/mem.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/mem.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/mem.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/mem.c
diff --git a/ddtrace/vendor/psutil/arch/windows/net.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/net.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/net.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/net.c
diff --git a/ddtrace/vendor/psutil/arch/windows/ntextapi.h b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/ntextapi.h
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/ntextapi.h
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/ntextapi.h
diff --git a/ddtrace/vendor/psutil/arch/windows/pids.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/pids.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/pids.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/pids.c
diff --git a/ddtrace/vendor/psutil/arch/windows/proc.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/proc.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/proc.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/proc.c
diff --git a/ddtrace/vendor/psutil/arch/windows/proc_handles.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/proc_handles.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/proc_handles.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/proc_handles.c
diff --git a/ddtrace/vendor/psutil/arch/windows/proc_info.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/proc_info.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/proc_info.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/proc_info.c
diff --git a/ddtrace/vendor/psutil/arch/windows/proc_utils.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/proc_utils.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/proc_utils.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/proc_utils.c
diff --git a/ddtrace/vendor/psutil/arch/windows/security.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/security.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/security.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/security.c
diff --git a/ddtrace/vendor/psutil/arch/windows/sensors.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/sensors.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/sensors.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/sensors.c
diff --git a/ddtrace/vendor/psutil/arch/windows/services.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/services.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/services.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/services.c
diff --git a/ddtrace/vendor/psutil/arch/windows/socks.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/socks.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/socks.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/socks.c
diff --git a/ddtrace/vendor/psutil/arch/windows/sys.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/sys.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/sys.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/sys.c
diff --git a/ddtrace/vendor/psutil/arch/windows/wmi.c b/dd-trace-py/ddtrace/vendor/psutil/arch/windows/wmi.c
similarity index 100%
rename from ddtrace/vendor/psutil/arch/windows/wmi.c
rename to dd-trace-py/ddtrace/vendor/psutil/arch/windows/wmi.c
diff --git a/ddtrace/vendor/psutil/setup.py b/dd-trace-py/ddtrace/vendor/psutil/setup.py
similarity index 100%
rename from ddtrace/vendor/psutil/setup.py
rename to dd-trace-py/ddtrace/vendor/psutil/setup.py
diff --git a/ddtrace/vendor/sqlcommenter/__init__.py b/dd-trace-py/ddtrace/vendor/sqlcommenter/__init__.py
similarity index 100%
rename from ddtrace/vendor/sqlcommenter/__init__.py
rename to dd-trace-py/ddtrace/vendor/sqlcommenter/__init__.py
diff --git a/ddtrace/vendor/xmltodict.py b/dd-trace-py/ddtrace/vendor/xmltodict.py
similarity index 100%
rename from ddtrace/vendor/xmltodict.py
rename to dd-trace-py/ddtrace/vendor/xmltodict.py
diff --git a/ddtrace/version.py b/dd-trace-py/ddtrace/version.py
similarity index 100%
rename from ddtrace/version.py
rename to dd-trace-py/ddtrace/version.py
diff --git a/docker-compose.gpu.yml b/dd-trace-py/docker-compose.gpu.yml
similarity index 100%
rename from docker-compose.gpu.yml
rename to dd-trace-py/docker-compose.gpu.yml
diff --git a/docker-compose.yml b/dd-trace-py/docker-compose.yml
similarity index 99%
rename from docker-compose.yml
rename to dd-trace-py/docker-compose.yml
index aa9a9873ea5..ad8a2af0283 100644
--- a/docker-compose.yml
+++ b/dd-trace-py/docker-compose.yml
@@ -228,6 +228,7 @@ services:
- ddagent:/tmp/ddagent
- ${DD_TEST_CACHE_DIR:-./.cache}:/home/bits/.cache
- ./:/home/bits/project
+ - ../ddtrace-internal:/home/bits/ddtrace-internal
localstack:
image: localstack/localstack:1.4.0
diff --git a/docker/.python-version b/dd-trace-py/docker/.python-version
similarity index 100%
rename from docker/.python-version
rename to dd-trace-py/docker/.python-version
diff --git a/docker/Dockerfile b/dd-trace-py/docker/Dockerfile
similarity index 100%
rename from docker/Dockerfile
rename to dd-trace-py/docker/Dockerfile
diff --git a/docker/Dockerfile.fuzz b/dd-trace-py/docker/Dockerfile.fuzz
similarity index 100%
rename from docker/Dockerfile.fuzz
rename to dd-trace-py/docker/Dockerfile.fuzz
diff --git a/docker/Dockerfile.fuzz.dockerignore b/dd-trace-py/docker/Dockerfile.fuzz.dockerignore
similarity index 100%
rename from docker/Dockerfile.fuzz.dockerignore
rename to dd-trace-py/docker/Dockerfile.fuzz.dockerignore
diff --git a/docker/Dockerfile.windows b/dd-trace-py/docker/Dockerfile.windows
similarity index 100%
rename from docker/Dockerfile.windows
rename to dd-trace-py/docker/Dockerfile.windows
diff --git a/docker/Dockerfile_py311_debug_mode b/dd-trace-py/docker/Dockerfile_py311_debug_mode
similarity index 100%
rename from docker/Dockerfile_py311_debug_mode
rename to dd-trace-py/docker/Dockerfile_py311_debug_mode
diff --git a/docker/Dockerfile_py312_debug_mode b/dd-trace-py/docker/Dockerfile_py312_debug_mode
similarity index 100%
rename from docker/Dockerfile_py312_debug_mode
rename to dd-trace-py/docker/Dockerfile_py312_debug_mode
diff --git a/docs/advanced_usage.rst b/dd-trace-py/docs/advanced_usage.rst
similarity index 100%
rename from docs/advanced_usage.rst
rename to dd-trace-py/docs/advanced_usage.rst
diff --git a/docs/api.rst b/dd-trace-py/docs/api.rst
similarity index 100%
rename from docs/api.rst
rename to dd-trace-py/docs/api.rst
diff --git a/docs/basic_usage.rst b/dd-trace-py/docs/basic_usage.rst
similarity index 100%
rename from docs/basic_usage.rst
rename to dd-trace-py/docs/basic_usage.rst
diff --git a/docs/benchmarks.rst b/dd-trace-py/docs/benchmarks.rst
similarity index 100%
rename from docs/benchmarks.rst
rename to dd-trace-py/docs/benchmarks.rst
diff --git a/docs/build_system.rst b/dd-trace-py/docs/build_system.rst
similarity index 100%
rename from docs/build_system.rst
rename to dd-trace-py/docs/build_system.rst
diff --git a/docs/conf.py b/dd-trace-py/docs/conf.py
similarity index 100%
rename from docs/conf.py
rename to dd-trace-py/docs/conf.py
diff --git a/docs/configuration.rst b/dd-trace-py/docs/configuration.rst
similarity index 100%
rename from docs/configuration.rst
rename to dd-trace-py/docs/configuration.rst
diff --git a/docs/contributing-design.rst b/dd-trace-py/docs/contributing-design.rst
similarity index 100%
rename from docs/contributing-design.rst
rename to dd-trace-py/docs/contributing-design.rst
diff --git a/docs/contributing-fuzzing.rst b/dd-trace-py/docs/contributing-fuzzing.rst
similarity index 100%
rename from docs/contributing-fuzzing.rst
rename to dd-trace-py/docs/contributing-fuzzing.rst
diff --git a/docs/contributing-integrations.rst b/dd-trace-py/docs/contributing-integrations.rst
similarity index 100%
rename from docs/contributing-integrations.rst
rename to dd-trace-py/docs/contributing-integrations.rst
diff --git a/docs/contributing-release.rst b/dd-trace-py/docs/contributing-release.rst
similarity index 100%
rename from docs/contributing-release.rst
rename to dd-trace-py/docs/contributing-release.rst
diff --git a/docs/contributing-testing.rst b/dd-trace-py/docs/contributing-testing.rst
similarity index 100%
rename from docs/contributing-testing.rst
rename to dd-trace-py/docs/contributing-testing.rst
diff --git a/docs/contributing-tracing.rst b/dd-trace-py/docs/contributing-tracing.rst
similarity index 100%
rename from docs/contributing-tracing.rst
rename to dd-trace-py/docs/contributing-tracing.rst
diff --git a/docs/contributing.rst b/dd-trace-py/docs/contributing.rst
similarity index 100%
rename from docs/contributing.rst
rename to dd-trace-py/docs/contributing.rst
diff --git a/docs/debug_symbols.rst b/dd-trace-py/docs/debug_symbols.rst
similarity index 100%
rename from docs/debug_symbols.rst
rename to dd-trace-py/docs/debug_symbols.rst
diff --git a/docs/favicon.ico b/dd-trace-py/docs/favicon.ico
similarity index 100%
rename from docs/favicon.ico
rename to dd-trace-py/docs/favicon.ico
diff --git a/docs/index.rst b/dd-trace-py/docs/index.rst
similarity index 100%
rename from docs/index.rst
rename to dd-trace-py/docs/index.rst
diff --git a/docs/installation_quickstart.rst b/dd-trace-py/docs/installation_quickstart.rst
similarity index 100%
rename from docs/installation_quickstart.rst
rename to dd-trace-py/docs/installation_quickstart.rst
diff --git a/docs/integrations.rst b/dd-trace-py/docs/integrations.rst
similarity index 100%
rename from docs/integrations.rst
rename to dd-trace-py/docs/integrations.rst
diff --git a/docs/native-code-review.md b/dd-trace-py/docs/native-code-review.md
similarity index 100%
rename from docs/native-code-review.md
rename to dd-trace-py/docs/native-code-review.md
diff --git a/docs/pytorch_metric.png b/dd-trace-py/docs/pytorch_metric.png
similarity index 100%
rename from docs/pytorch_metric.png
rename to dd-trace-py/docs/pytorch_metric.png
diff --git a/docs/releasenotes.rst b/dd-trace-py/docs/releasenotes.rst
similarity index 100%
rename from docs/releasenotes.rst
rename to dd-trace-py/docs/releasenotes.rst
diff --git a/docs/shared.rst b/dd-trace-py/docs/shared.rst
similarity index 100%
rename from docs/shared.rst
rename to dd-trace-py/docs/shared.rst
diff --git a/docs/spelling_wordlist.txt b/dd-trace-py/docs/spelling_wordlist.txt
similarity index 100%
rename from docs/spelling_wordlist.txt
rename to dd-trace-py/docs/spelling_wordlist.txt
diff --git a/docs/troubleshooting.rst b/dd-trace-py/docs/troubleshooting.rst
similarity index 100%
rename from docs/troubleshooting.rst
rename to dd-trace-py/docs/troubleshooting.rst
diff --git a/docs/upgrading.rst b/dd-trace-py/docs/upgrading.rst
similarity index 100%
rename from docs/upgrading.rst
rename to dd-trace-py/docs/upgrading.rst
diff --git a/docs/versioning.rst b/dd-trace-py/docs/versioning.rst
similarity index 100%
rename from docs/versioning.rst
rename to dd-trace-py/docs/versioning.rst
diff --git a/hatch.toml b/dd-trace-py/hatch.toml
similarity index 100%
rename from hatch.toml
rename to dd-trace-py/hatch.toml
diff --git a/hooks/README.md b/dd-trace-py/hooks/README.md
similarity index 100%
rename from hooks/README.md
rename to dd-trace-py/hooks/README.md
diff --git a/hooks/autohook.sh b/dd-trace-py/hooks/autohook.sh
similarity index 100%
rename from hooks/autohook.sh
rename to dd-trace-py/hooks/autohook.sh
diff --git a/hooks/post-checkout/check-native-changes b/dd-trace-py/hooks/post-checkout/check-native-changes
similarity index 100%
rename from hooks/post-checkout/check-native-changes
rename to dd-trace-py/hooks/post-checkout/check-native-changes
diff --git a/hooks/post-merge/check-native-changes b/dd-trace-py/hooks/post-merge/check-native-changes
similarity index 100%
rename from hooks/post-merge/check-native-changes
rename to dd-trace-py/hooks/post-merge/check-native-changes
diff --git a/hooks/pre-commit/01-format-and-lint b/dd-trace-py/hooks/pre-commit/01-format-and-lint
similarity index 100%
rename from hooks/pre-commit/01-format-and-lint
rename to dd-trace-py/hooks/pre-commit/01-format-and-lint
diff --git a/hooks/pre-commit/02-run-mypy b/dd-trace-py/hooks/pre-commit/02-run-mypy
similarity index 100%
rename from hooks/pre-commit/02-run-mypy
rename to dd-trace-py/hooks/pre-commit/02-run-mypy
diff --git a/hooks/pre-commit/03-run-codespell b/dd-trace-py/hooks/pre-commit/03-run-codespell
similarity index 100%
rename from hooks/pre-commit/03-run-codespell
rename to dd-trace-py/hooks/pre-commit/03-run-codespell
diff --git a/hooks/pre-commit/04-run-clang-format b/dd-trace-py/hooks/pre-commit/04-run-clang-format
similarity index 100%
rename from hooks/pre-commit/04-run-clang-format
rename to dd-trace-py/hooks/pre-commit/04-run-clang-format
diff --git a/hooks/pre-commit/05-run-bandit b/dd-trace-py/hooks/pre-commit/05-run-bandit
similarity index 100%
rename from hooks/pre-commit/05-run-bandit
rename to dd-trace-py/hooks/pre-commit/05-run-bandit
diff --git a/hooks/pre-commit/06-check-cython-stubs b/dd-trace-py/hooks/pre-commit/06-check-cython-stubs
similarity index 100%
rename from hooks/pre-commit/06-check-cython-stubs
rename to dd-trace-py/hooks/pre-commit/06-check-cython-stubs
diff --git a/hooks/pre-commit/07-run-cmake-format b/dd-trace-py/hooks/pre-commit/07-run-cmake-format
similarity index 100%
rename from hooks/pre-commit/07-run-cmake-format
rename to dd-trace-py/hooks/pre-commit/07-run-cmake-format
diff --git a/hooks/pre-commit/08-run-sg b/dd-trace-py/hooks/pre-commit/08-run-sg
similarity index 100%
rename from hooks/pre-commit/08-run-sg
rename to dd-trace-py/hooks/pre-commit/08-run-sg
diff --git a/hooks/pre-commit/09-run-error-log-check b/dd-trace-py/hooks/pre-commit/09-run-error-log-check
similarity index 100%
rename from hooks/pre-commit/09-run-error-log-check
rename to dd-trace-py/hooks/pre-commit/09-run-error-log-check
diff --git a/hooks/scripts/check-cython-stubs.sh b/dd-trace-py/hooks/scripts/check-cython-stubs.sh
similarity index 100%
rename from hooks/scripts/check-cython-stubs.sh
rename to dd-trace-py/hooks/scripts/check-cython-stubs.sh
diff --git a/hooks/scripts/check-native-changes b/dd-trace-py/hooks/scripts/check-native-changes
similarity index 100%
rename from hooks/scripts/check-native-changes
rename to dd-trace-py/hooks/scripts/check-native-changes
diff --git a/hooks/scripts/run-clang-format.sh b/dd-trace-py/hooks/scripts/run-clang-format.sh
similarity index 100%
rename from hooks/scripts/run-clang-format.sh
rename to dd-trace-py/hooks/scripts/run-clang-format.sh
diff --git a/hooks/scripts/run-codespell.sh b/dd-trace-py/hooks/scripts/run-codespell.sh
similarity index 100%
rename from hooks/scripts/run-codespell.sh
rename to dd-trace-py/hooks/scripts/run-codespell.sh
diff --git a/hooks/scripts/run-fmt.sh b/dd-trace-py/hooks/scripts/run-fmt.sh
similarity index 100%
rename from hooks/scripts/run-fmt.sh
rename to dd-trace-py/hooks/scripts/run-fmt.sh
diff --git a/hooks/scripts/run-mypy.sh b/dd-trace-py/hooks/scripts/run-mypy.sh
similarity index 100%
rename from hooks/scripts/run-mypy.sh
rename to dd-trace-py/hooks/scripts/run-mypy.sh
diff --git a/hooks/tests/test-run-clang-format.sh b/dd-trace-py/hooks/tests/test-run-clang-format.sh
similarity index 100%
rename from hooks/tests/test-run-clang-format.sh
rename to dd-trace-py/hooks/tests/test-run-clang-format.sh
diff --git a/hooks/tests/test-run-fmt-cython-lint.sh b/dd-trace-py/hooks/tests/test-run-fmt-cython-lint.sh
similarity index 100%
rename from hooks/tests/test-run-fmt-cython-lint.sh
rename to dd-trace-py/hooks/tests/test-run-fmt-cython-lint.sh
diff --git a/hooks/tests/test-run-fmt.sh b/dd-trace-py/hooks/tests/test-run-fmt.sh
similarity index 100%
rename from hooks/tests/test-run-fmt.sh
rename to dd-trace-py/hooks/tests/test-run-fmt.sh
diff --git a/lib-injection/README.md b/dd-trace-py/lib-injection/README.md
similarity index 100%
rename from lib-injection/README.md
rename to dd-trace-py/lib-injection/README.md
diff --git a/lib-injection/dl_wheels.py b/dd-trace-py/lib-injection/dl_wheels.py
similarity index 100%
rename from lib-injection/dl_wheels.py
rename to dd-trace-py/lib-injection/dl_wheels.py
diff --git a/lib-injection/docker-compose.yml b/dd-trace-py/lib-injection/docker-compose.yml
similarity index 100%
rename from lib-injection/docker-compose.yml
rename to dd-trace-py/lib-injection/docker-compose.yml
diff --git a/lib-injection/sources/denied_executable_modules.txt b/dd-trace-py/lib-injection/sources/denied_executable_modules.txt
similarity index 100%
rename from lib-injection/sources/denied_executable_modules.txt
rename to dd-trace-py/lib-injection/sources/denied_executable_modules.txt
diff --git a/lib-injection/sources/denied_executables.txt b/dd-trace-py/lib-injection/sources/denied_executables.txt
similarity index 100%
rename from lib-injection/sources/denied_executables.txt
rename to dd-trace-py/lib-injection/sources/denied_executables.txt
diff --git a/lib-injection/sources/min_compatible_versions.csv b/dd-trace-py/lib-injection/sources/min_compatible_versions.csv
similarity index 100%
rename from lib-injection/sources/min_compatible_versions.csv
rename to dd-trace-py/lib-injection/sources/min_compatible_versions.csv
diff --git a/lib-injection/sources/requirements.csv b/dd-trace-py/lib-injection/sources/requirements.csv
similarity index 100%
rename from lib-injection/sources/requirements.csv
rename to dd-trace-py/lib-injection/sources/requirements.csv
diff --git a/lib-injection/sources/requirements.json b/dd-trace-py/lib-injection/sources/requirements.json
similarity index 100%
rename from lib-injection/sources/requirements.json
rename to dd-trace-py/lib-injection/sources/requirements.json
diff --git a/lib-injection/sources/sitecustomize.py b/dd-trace-py/lib-injection/sources/sitecustomize.py
similarity index 100%
rename from lib-injection/sources/sitecustomize.py
rename to dd-trace-py/lib-injection/sources/sitecustomize.py
diff --git a/lib-injection/sources/telemetry-forwarder.sh b/dd-trace-py/lib-injection/sources/telemetry-forwarder.sh
similarity index 100%
rename from lib-injection/sources/telemetry-forwarder.sh
rename to dd-trace-py/lib-injection/sources/telemetry-forwarder.sh
diff --git a/min_compatible_versions.csv b/dd-trace-py/min_compatible_versions.csv
similarity index 100%
rename from min_compatible_versions.csv
rename to dd-trace-py/min_compatible_versions.csv
diff --git a/mypy.ini b/dd-trace-py/mypy.ini
similarity index 100%
rename from mypy.ini
rename to dd-trace-py/mypy.ini
diff --git a/pyproject.toml b/dd-trace-py/pyproject.toml
similarity index 99%
rename from pyproject.toml
rename to dd-trace-py/pyproject.toml
index 3fed3507cd8..c324d7777a4 100644
--- a/pyproject.toml
+++ b/dd-trace-py/pyproject.toml
@@ -38,6 +38,7 @@ dependencies = [
"bytecode>=0.15.1,<1; python_version~='3.12.0'",
"bytecode>=0.14.0,<1; python_version~='3.11.0'",
"bytecode>=0.13.0,<1; python_version<'3.11'",
+ "ddtrace-internal @ file:../ddtrace-internal",
"envier~=0.6.1",
"opentelemetry-api>=1,<2",
"wrapt>=1,<3",
diff --git a/releasenotes/config.yaml b/dd-trace-py/releasenotes/config.yaml
similarity index 100%
rename from releasenotes/config.yaml
rename to dd-trace-py/releasenotes/config.yaml
diff --git a/releasenotes/notes/1.0-remove-default-sampler-d1f6bcb2b23ca8a7.yaml b/dd-trace-py/releasenotes/notes/1.0-remove-default-sampler-d1f6bcb2b23ca8a7.yaml
similarity index 100%
rename from releasenotes/notes/1.0-remove-default-sampler-d1f6bcb2b23ca8a7.yaml
rename to dd-trace-py/releasenotes/notes/1.0-remove-default-sampler-d1f6bcb2b23ca8a7.yaml
diff --git a/releasenotes/notes/128-bit-default-16002e779c465db0.yaml b/dd-trace-py/releasenotes/notes/128-bit-default-16002e779c465db0.yaml
similarity index 100%
rename from releasenotes/notes/128-bit-default-16002e779c465db0.yaml
rename to dd-trace-py/releasenotes/notes/128-bit-default-16002e779c465db0.yaml
diff --git a/releasenotes/notes/128-bit-traceid-mandatory-a9ab3a4d5fc34a15.yaml b/dd-trace-py/releasenotes/notes/128-bit-traceid-mandatory-a9ab3a4d5fc34a15.yaml
similarity index 100%
rename from releasenotes/notes/128-bit-traceid-mandatory-a9ab3a4d5fc34a15.yaml
rename to dd-trace-py/releasenotes/notes/128-bit-traceid-mandatory-a9ab3a4d5fc34a15.yaml
diff --git a/releasenotes/notes/128bit-trace-id-support-b3-w3c-b5746f84a509fa24.yaml b/dd-trace-py/releasenotes/notes/128bit-trace-id-support-b3-w3c-b5746f84a509fa24.yaml
similarity index 100%
rename from releasenotes/notes/128bit-trace-id-support-b3-w3c-b5746f84a509fa24.yaml
rename to dd-trace-py/releasenotes/notes/128bit-trace-id-support-b3-w3c-b5746f84a509fa24.yaml
diff --git a/releasenotes/notes/3.7-removal-c5259c3df41f08fe.yaml b/dd-trace-py/releasenotes/notes/3.7-removal-c5259c3df41f08fe.yaml
similarity index 100%
rename from releasenotes/notes/3.7-removal-c5259c3df41f08fe.yaml
rename to dd-trace-py/releasenotes/notes/3.7-removal-c5259c3df41f08fe.yaml
diff --git a/releasenotes/notes/313-ddtracerun-e34ef8d7496091b3.yaml b/dd-trace-py/releasenotes/notes/313-ddtracerun-e34ef8d7496091b3.yaml
similarity index 100%
rename from releasenotes/notes/313-ddtracerun-e34ef8d7496091b3.yaml
rename to dd-trace-py/releasenotes/notes/313-ddtracerun-e34ef8d7496091b3.yaml
diff --git a/releasenotes/notes/313-enable-integrations-01990085769ea3f3.yaml b/dd-trace-py/releasenotes/notes/313-enable-integrations-01990085769ea3f3.yaml
similarity index 100%
rename from releasenotes/notes/313-enable-integrations-01990085769ea3f3.yaml
rename to dd-trace-py/releasenotes/notes/313-enable-integrations-01990085769ea3f3.yaml
diff --git a/releasenotes/notes/ATO_V3-e7f73ecf00d1474b.yaml b/dd-trace-py/releasenotes/notes/ATO_V3-e7f73ecf00d1474b.yaml
similarity index 100%
rename from releasenotes/notes/ATO_V3-e7f73ecf00d1474b.yaml
rename to dd-trace-py/releasenotes/notes/ATO_V3-e7f73ecf00d1474b.yaml
diff --git a/releasenotes/notes/ATO_auto_user_events_new_feature_version-449297c3de2815e2.yaml b/dd-trace-py/releasenotes/notes/ATO_auto_user_events_new_feature_version-449297c3de2815e2.yaml
similarity index 100%
rename from releasenotes/notes/ATO_auto_user_events_new_feature_version-449297c3de2815e2.yaml
rename to dd-trace-py/releasenotes/notes/ATO_auto_user_events_new_feature_version-449297c3de2815e2.yaml
diff --git a/releasenotes/notes/Add-AI-Guard-support-to-current-LangChain-instrumentations-945ae0ae4315277a.yaml b/dd-trace-py/releasenotes/notes/Add-AI-Guard-support-to-current-LangChain-instrumentations-945ae0ae4315277a.yaml
similarity index 100%
rename from releasenotes/notes/Add-AI-Guard-support-to-current-LangChain-instrumentations-945ae0ae4315277a.yaml
rename to dd-trace-py/releasenotes/notes/Add-AI-Guard-support-to-current-LangChain-instrumentations-945ae0ae4315277a.yaml
diff --git a/releasenotes/notes/Add-public-SDK-for-AI-Guard-a853b4ae9db1c7fc.yaml b/dd-trace-py/releasenotes/notes/Add-public-SDK-for-AI-Guard-a853b4ae9db1c7fc.yaml
similarity index 100%
rename from releasenotes/notes/Add-public-SDK-for-AI-Guard-a853b4ae9db1c7fc.yaml
rename to dd-trace-py/releasenotes/notes/Add-public-SDK-for-AI-Guard-a853b4ae9db1c7fc.yaml
diff --git a/releasenotes/notes/Add-streaming-support-to-AI-Guard-evaluations-in-LangChain-c1286b0c00cfa354.yaml b/dd-trace-py/releasenotes/notes/Add-streaming-support-to-AI-Guard-evaluations-in-LangChain-c1286b0c00cfa354.yaml
similarity index 100%
rename from releasenotes/notes/Add-streaming-support-to-AI-Guard-evaluations-in-LangChain-c1286b0c00cfa354.yaml
rename to dd-trace-py/releasenotes/notes/Add-streaming-support-to-AI-Guard-evaluations-in-LangChain-c1286b0c00cfa354.yaml
diff --git a/releasenotes/notes/Add-tracing-of-initialization-requests-and-responses-on-MCP-servers-51d32286dcd52a7d.yaml b/dd-trace-py/releasenotes/notes/Add-tracing-of-initialization-requests-and-responses-on-MCP-servers-51d32286dcd52a7d.yaml
similarity index 100%
rename from releasenotes/notes/Add-tracing-of-initialization-requests-and-responses-on-MCP-servers-51d32286dcd52a7d.yaml
rename to dd-trace-py/releasenotes/notes/Add-tracing-of-initialization-requests-and-responses-on-MCP-servers-51d32286dcd52a7d.yaml
diff --git a/releasenotes/notes/Added-support-for-profiling-of-asyncio.BoundedSemaphore-objects-to-the-Python-Lock-profiler-5bf06391b0b047f1.yaml b/dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-asyncio.BoundedSemaphore-objects-to-the-Python-Lock-profiler-5bf06391b0b047f1.yaml
similarity index 100%
rename from releasenotes/notes/Added-support-for-profiling-of-asyncio.BoundedSemaphore-objects-to-the-Python-Lock-profiler-5bf06391b0b047f1.yaml
rename to dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-asyncio.BoundedSemaphore-objects-to-the-Python-Lock-profiler-5bf06391b0b047f1.yaml
diff --git a/releasenotes/notes/Added-support-for-profiling-of-asyncio.Condition-objects-to-the-Python-Lock-profiler-0324360536e549fa.yaml b/dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-asyncio.Condition-objects-to-the-Python-Lock-profiler-0324360536e549fa.yaml
similarity index 100%
rename from releasenotes/notes/Added-support-for-profiling-of-asyncio.Condition-objects-to-the-Python-Lock-profiler-0324360536e549fa.yaml
rename to dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-asyncio.Condition-objects-to-the-Python-Lock-profiler-0324360536e549fa.yaml
diff --git a/releasenotes/notes/Added-support-for-profiling-of-asyncio.Semaphore-objects-to-the-Python-Lock-profiler-193fd8150d084ea6.yaml b/dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-asyncio.Semaphore-objects-to-the-Python-Lock-profiler-193fd8150d084ea6.yaml
similarity index 100%
rename from releasenotes/notes/Added-support-for-profiling-of-asyncio.Semaphore-objects-to-the-Python-Lock-profiler-193fd8150d084ea6.yaml
rename to dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-asyncio.Semaphore-objects-to-the-Python-Lock-profiler-193fd8150d084ea6.yaml
diff --git a/releasenotes/notes/Added-support-for-profiling-of-threading.BoundedSemaphore-objects-to-the-Python-Lock-profiler-9c54a96d93e09c46.yaml b/dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-threading.BoundedSemaphore-objects-to-the-Python-Lock-profiler-9c54a96d93e09c46.yaml
similarity index 100%
rename from releasenotes/notes/Added-support-for-profiling-of-threading.BoundedSemaphore-objects-to-the-Python-Lock-profiler-9c54a96d93e09c46.yaml
rename to dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-threading.BoundedSemaphore-objects-to-the-Python-Lock-profiler-9c54a96d93e09c46.yaml
diff --git a/releasenotes/notes/Added-support-for-profiling-of-threading.Condition-objects-to-the-Python-Lock-profiler-2125e897cb26415c.yaml b/dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-threading.Condition-objects-to-the-Python-Lock-profiler-2125e897cb26415c.yaml
similarity index 100%
rename from releasenotes/notes/Added-support-for-profiling-of-threading.Condition-objects-to-the-Python-Lock-profiler-2125e897cb26415c.yaml
rename to dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-threading.Condition-objects-to-the-Python-Lock-profiler-2125e897cb26415c.yaml
diff --git a/releasenotes/notes/Added-support-for-profiling-of-threading.Semaphore-objects-to-the-Python-Lock-profiler-aa46b9a5b01ccd3d.yaml b/dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-threading.Semaphore-objects-to-the-Python-Lock-profiler-aa46b9a5b01ccd3d.yaml
similarity index 100%
rename from releasenotes/notes/Added-support-for-profiling-of-threading.Semaphore-objects-to-the-Python-Lock-profiler-aa46b9a5b01ccd3d.yaml
rename to dd-trace-py/releasenotes/notes/Added-support-for-profiling-of-threading.Semaphore-objects-to-the-Python-Lock-profiler-aa46b9a5b01ccd3d.yaml
diff --git a/releasenotes/notes/Fix-deprecation-warning-for-asyncio.coroutine-on-tracer.wrap-373af979c39dfcd9.yaml b/dd-trace-py/releasenotes/notes/Fix-deprecation-warning-for-asyncio.coroutine-on-tracer.wrap-373af979c39dfcd9.yaml
similarity index 100%
rename from releasenotes/notes/Fix-deprecation-warning-for-asyncio.coroutine-on-tracer.wrap-373af979c39dfcd9.yaml
rename to dd-trace-py/releasenotes/notes/Fix-deprecation-warning-for-asyncio.coroutine-on-tracer.wrap-373af979c39dfcd9.yaml
diff --git a/releasenotes/notes/Fix-for-ASGI-middleware-not-processing-response-headers-bc117dd67210ccb8.yaml b/dd-trace-py/releasenotes/notes/Fix-for-ASGI-middleware-not-processing-response-headers-bc117dd67210ccb8.yaml
similarity index 100%
rename from releasenotes/notes/Fix-for-ASGI-middleware-not-processing-response-headers-bc117dd67210ccb8.yaml
rename to dd-trace-py/releasenotes/notes/Fix-for-ASGI-middleware-not-processing-response-headers-bc117dd67210ccb8.yaml
diff --git a/releasenotes/notes/Fix-version-constraints-for-Py27-e3a0069f43a84c16.yaml b/dd-trace-py/releasenotes/notes/Fix-version-constraints-for-Py27-e3a0069f43a84c16.yaml
similarity index 100%
rename from releasenotes/notes/Fix-version-constraints-for-Py27-e3a0069f43a84c16.yaml
rename to dd-trace-py/releasenotes/notes/Fix-version-constraints-for-Py27-e3a0069f43a84c16.yaml
diff --git a/releasenotes/notes/PCF-container-UUID-0f65eed47e42f4ad.yaml b/dd-trace-py/releasenotes/notes/PCF-container-UUID-0f65eed47e42f4ad.yaml
similarity index 100%
rename from releasenotes/notes/PCF-container-UUID-0f65eed47e42f4ad.yaml
rename to dd-trace-py/releasenotes/notes/PCF-container-UUID-0f65eed47e42f4ad.yaml
diff --git a/releasenotes/notes/aap-apisec-inferred-endpoint-sampling-b168b03e81de987c.yaml b/dd-trace-py/releasenotes/notes/aap-apisec-inferred-endpoint-sampling-b168b03e81de987c.yaml
similarity index 100%
rename from releasenotes/notes/aap-apisec-inferred-endpoint-sampling-b168b03e81de987c.yaml
rename to dd-trace-py/releasenotes/notes/aap-apisec-inferred-endpoint-sampling-b168b03e81de987c.yaml
diff --git a/releasenotes/notes/aap-apisec-inferred-span-correlation-2997a791635c4f54.yaml b/dd-trace-py/releasenotes/notes/aap-apisec-inferred-span-correlation-2997a791635c4f54.yaml
similarity index 100%
rename from releasenotes/notes/aap-apisec-inferred-span-correlation-2997a791635c4f54.yaml
rename to dd-trace-py/releasenotes/notes/aap-apisec-inferred-span-correlation-2997a791635c4f54.yaml
diff --git a/releasenotes/notes/aap-blocked-response-template-543f6cdb1a45bb69.yaml b/dd-trace-py/releasenotes/notes/aap-blocked-response-template-543f6cdb1a45bb69.yaml
similarity index 100%
rename from releasenotes/notes/aap-blocked-response-template-543f6cdb1a45bb69.yaml
rename to dd-trace-py/releasenotes/notes/aap-blocked-response-template-543f6cdb1a45bb69.yaml
diff --git a/releasenotes/notes/aap-down-req-headers-urllib3-61b27c7fdc927312.yaml b/dd-trace-py/releasenotes/notes/aap-down-req-headers-urllib3-61b27c7fdc927312.yaml
similarity index 100%
rename from releasenotes/notes/aap-down-req-headers-urllib3-61b27c7fdc927312.yaml
rename to dd-trace-py/releasenotes/notes/aap-down-req-headers-urllib3-61b27c7fdc927312.yaml
diff --git a/releasenotes/notes/aap-fix-api10-headers-23aa445139713469.yaml b/dd-trace-py/releasenotes/notes/aap-fix-api10-headers-23aa445139713469.yaml
similarity index 100%
rename from releasenotes/notes/aap-fix-api10-headers-23aa445139713469.yaml
rename to dd-trace-py/releasenotes/notes/aap-fix-api10-headers-23aa445139713469.yaml
diff --git a/releasenotes/notes/aap-fix-ignore-agent-based-samplers-for-asm-standalone-71bc0133f3a8480c.yaml b/dd-trace-py/releasenotes/notes/aap-fix-ignore-agent-based-samplers-for-asm-standalone-71bc0133f3a8480c.yaml
similarity index 100%
rename from releasenotes/notes/aap-fix-ignore-agent-based-samplers-for-asm-standalone-71bc0133f3a8480c.yaml
rename to dd-trace-py/releasenotes/notes/aap-fix-ignore-agent-based-samplers-for-asm-standalone-71bc0133f3a8480c.yaml
diff --git a/releasenotes/notes/aap-httpx-support-for-ssrf-detection-bf8dd526d74e95b0.yaml b/dd-trace-py/releasenotes/notes/aap-httpx-support-for-ssrf-detection-bf8dd526d74e95b0.yaml
similarity index 100%
rename from releasenotes/notes/aap-httpx-support-for-ssrf-detection-bf8dd526d74e95b0.yaml
rename to dd-trace-py/releasenotes/notes/aap-httpx-support-for-ssrf-detection-bf8dd526d74e95b0.yaml
diff --git a/releasenotes/notes/aap-patch-urllib3-by-default-df1177d7852727ac.yaml b/dd-trace-py/releasenotes/notes/aap-patch-urllib3-by-default-df1177d7852727ac.yaml
similarity index 100%
rename from releasenotes/notes/aap-patch-urllib3-by-default-df1177d7852727ac.yaml
rename to dd-trace-py/releasenotes/notes/aap-patch-urllib3-by-default-df1177d7852727ac.yaml
diff --git a/releasenotes/notes/aap-stripe-business-logic-events-e26e3b13047b8caa.yaml b/dd-trace-py/releasenotes/notes/aap-stripe-business-logic-events-e26e3b13047b8caa.yaml
similarity index 100%
rename from releasenotes/notes/aap-stripe-business-logic-events-e26e3b13047b8caa.yaml
rename to dd-trace-py/releasenotes/notes/aap-stripe-business-logic-events-e26e3b13047b8caa.yaml
diff --git a/releasenotes/notes/abort-git-upload-on-search-commits-error-7255166fffc095f6.yaml b/dd-trace-py/releasenotes/notes/abort-git-upload-on-search-commits-error-7255166fffc095f6.yaml
similarity index 100%
rename from releasenotes/notes/abort-git-upload-on-search-commits-error-7255166fffc095f6.yaml
rename to dd-trace-py/releasenotes/notes/abort-git-upload-on-search-commits-error-7255166fffc095f6.yaml
diff --git a/releasenotes/notes/actions_from_RC-08744fc9e91a8c02.yaml b/dd-trace-py/releasenotes/notes/actions_from_RC-08744fc9e91a8c02.yaml
similarity index 100%
rename from releasenotes/notes/actions_from_RC-08744fc9e91a8c02.yaml
rename to dd-trace-py/releasenotes/notes/actions_from_RC-08744fc9e91a8c02.yaml
diff --git a/releasenotes/notes/add-312-73857cf79c64c924.yaml b/dd-trace-py/releasenotes/notes/add-312-73857cf79c64c924.yaml
similarity index 100%
rename from releasenotes/notes/add-312-73857cf79c64c924.yaml
rename to dd-trace-py/releasenotes/notes/add-312-73857cf79c64c924.yaml
diff --git a/releasenotes/notes/add-DD_TRACE_LOG_LEVEL-4e1b2d280f0e32da.yaml b/dd-trace-py/releasenotes/notes/add-DD_TRACE_LOG_LEVEL-4e1b2d280f0e32da.yaml
similarity index 100%
rename from releasenotes/notes/add-DD_TRACE_LOG_LEVEL-4e1b2d280f0e32da.yaml
rename to dd-trace-py/releasenotes/notes/add-DD_TRACE_LOG_LEVEL-4e1b2d280f0e32da.yaml
diff --git a/releasenotes/notes/add-aiohttp-split-by-domain-f8f3242025c96cc1.yaml b/dd-trace-py/releasenotes/notes/add-aiohttp-split-by-domain-f8f3242025c96cc1.yaml
similarity index 100%
rename from releasenotes/notes/add-aiohttp-split-by-domain-f8f3242025c96cc1.yaml
rename to dd-trace-py/releasenotes/notes/add-aiohttp-split-by-domain-f8f3242025c96cc1.yaml
diff --git a/releasenotes/notes/add-aiomysql-d7803bcb9a1b1777.yaml b/dd-trace-py/releasenotes/notes/add-aiomysql-d7803bcb9a1b1777.yaml
similarity index 100%
rename from releasenotes/notes/add-aiomysql-d7803bcb9a1b1777.yaml
rename to dd-trace-py/releasenotes/notes/add-aiomysql-d7803bcb9a1b1777.yaml
diff --git a/releasenotes/notes/add-anthropic-beta-client-support-994eb81351353dc9.yaml b/dd-trace-py/releasenotes/notes/add-anthropic-beta-client-support-994eb81351353dc9.yaml
similarity index 100%
rename from releasenotes/notes/add-anthropic-beta-client-support-994eb81351353dc9.yaml
rename to dd-trace-py/releasenotes/notes/add-anthropic-beta-client-support-994eb81351353dc9.yaml
diff --git a/releasenotes/notes/add-anthropic-llm-observability-27e914a3a23b5001.yaml b/dd-trace-py/releasenotes/notes/add-anthropic-llm-observability-27e914a3a23b5001.yaml
similarity index 100%
rename from releasenotes/notes/add-anthropic-llm-observability-27e914a3a23b5001.yaml
rename to dd-trace-py/releasenotes/notes/add-anthropic-llm-observability-27e914a3a23b5001.yaml
diff --git a/releasenotes/notes/add-anthropic-streaming-support-01937d2e524f1bd0.yaml b/dd-trace-py/releasenotes/notes/add-anthropic-streaming-support-01937d2e524f1bd0.yaml
similarity index 100%
rename from releasenotes/notes/add-anthropic-streaming-support-01937d2e524f1bd0.yaml
rename to dd-trace-py/releasenotes/notes/add-anthropic-streaming-support-01937d2e524f1bd0.yaml
diff --git a/releasenotes/notes/add-anthropic-tools-support-90422a74ec9ceba4.yaml b/dd-trace-py/releasenotes/notes/add-anthropic-tools-support-90422a74ec9ceba4.yaml
similarity index 100%
rename from releasenotes/notes/add-anthropic-tools-support-90422a74ec9ceba4.yaml
rename to dd-trace-py/releasenotes/notes/add-anthropic-tools-support-90422a74ec9ceba4.yaml
diff --git a/releasenotes/notes/add-apm-and-llmobs-support-for-google-adk-8a6bb3842b464da4.yaml b/dd-trace-py/releasenotes/notes/add-apm-and-llmobs-support-for-google-adk-8a6bb3842b464da4.yaml
similarity index 100%
rename from releasenotes/notes/add-apm-and-llmobs-support-for-google-adk-8a6bb3842b464da4.yaml
rename to dd-trace-py/releasenotes/notes/add-apm-and-llmobs-support-for-google-adk-8a6bb3842b464da4.yaml
diff --git a/releasenotes/notes/add-aredis-support-416f890073cc7113.yaml b/dd-trace-py/releasenotes/notes/add-aredis-support-416f890073cc7113.yaml
similarity index 100%
rename from releasenotes/notes/add-aredis-support-416f890073cc7113.yaml
rename to dd-trace-py/releasenotes/notes/add-aredis-support-416f890073cc7113.yaml
diff --git a/releasenotes/notes/add-auth-plugin-for-mlflow-4aa9aaa6e783078e.yaml b/dd-trace-py/releasenotes/notes/add-auth-plugin-for-mlflow-4aa9aaa6e783078e.yaml
similarity index 100%
rename from releasenotes/notes/add-auth-plugin-for-mlflow-4aa9aaa6e783078e.yaml
rename to dd-trace-py/releasenotes/notes/add-auth-plugin-for-mlflow-4aa9aaa6e783078e.yaml
diff --git a/releasenotes/notes/add-automatic-dogstatsd-uds-detection-9a3cb9a833b3e95b.yaml b/dd-trace-py/releasenotes/notes/add-automatic-dogstatsd-uds-detection-9a3cb9a833b3e95b.yaml
similarity index 100%
rename from releasenotes/notes/add-automatic-dogstatsd-uds-detection-9a3cb9a833b3e95b.yaml
rename to dd-trace-py/releasenotes/notes/add-automatic-dogstatsd-uds-detection-9a3cb9a833b3e95b.yaml
diff --git a/releasenotes/notes/add-automatic-trace-uds-detection-7c7602c6a06f03d2.yaml b/dd-trace-py/releasenotes/notes/add-automatic-trace-uds-detection-7c7602c6a06f03d2.yaml
similarity index 100%
rename from releasenotes/notes/add-automatic-trace-uds-detection-7c7602c6a06f03d2.yaml
rename to dd-trace-py/releasenotes/notes/add-automatic-trace-uds-detection-7c7602c6a06f03d2.yaml
diff --git a/releasenotes/notes/add-aws-api-gateway-dabfeee3decdfd89.yaml b/dd-trace-py/releasenotes/notes/add-aws-api-gateway-dabfeee3decdfd89.yaml
similarity index 100%
rename from releasenotes/notes/add-aws-api-gateway-dabfeee3decdfd89.yaml
rename to dd-trace-py/releasenotes/notes/add-aws-api-gateway-dabfeee3decdfd89.yaml
diff --git a/releasenotes/notes/add-aws-payload-tagging-d01f0033c7e1f5c0.yaml b/dd-trace-py/releasenotes/notes/add-aws-payload-tagging-d01f0033c7e1f5c0.yaml
similarity index 100%
rename from releasenotes/notes/add-aws-payload-tagging-d01f0033c7e1f5c0.yaml
rename to dd-trace-py/releasenotes/notes/add-aws-payload-tagging-d01f0033c7e1f5c0.yaml
diff --git a/releasenotes/notes/add-aws_service-region-resourcename-tags-for-aws-sdk-requests-186ea33075ef3168.yaml b/dd-trace-py/releasenotes/notes/add-aws_service-region-resourcename-tags-for-aws-sdk-requests-186ea33075ef3168.yaml
similarity index 100%
rename from releasenotes/notes/add-aws_service-region-resourcename-tags-for-aws-sdk-requests-186ea33075ef3168.yaml
rename to dd-trace-py/releasenotes/notes/add-aws_service-region-resourcename-tags-for-aws-sdk-requests-186ea33075ef3168.yaml
diff --git a/releasenotes/notes/add-back-starlette-fastapi-aggregate-resources-21855734c8b45d45.yaml b/dd-trace-py/releasenotes/notes/add-back-starlette-fastapi-aggregate-resources-21855734c8b45d45.yaml
similarity index 100%
rename from releasenotes/notes/add-back-starlette-fastapi-aggregate-resources-21855734c8b45d45.yaml
rename to dd-trace-py/releasenotes/notes/add-back-starlette-fastapi-aggregate-resources-21855734c8b45d45.yaml
diff --git a/releasenotes/notes/add-boolean-metric-type-llmobs-4f7a9b2c1d3e.yaml b/dd-trace-py/releasenotes/notes/add-boolean-metric-type-llmobs-4f7a9b2c1d3e.yaml
similarity index 100%
rename from releasenotes/notes/add-boolean-metric-type-llmobs-4f7a9b2c1d3e.yaml
rename to dd-trace-py/releasenotes/notes/add-boolean-metric-type-llmobs-4f7a9b2c1d3e.yaml
diff --git a/releasenotes/notes/add-botocore-trace-context-propagation-for-sqs-and-kinesis-2876781c977c1377.yaml b/dd-trace-py/releasenotes/notes/add-botocore-trace-context-propagation-for-sqs-and-kinesis-2876781c977c1377.yaml
similarity index 100%
rename from releasenotes/notes/add-botocore-trace-context-propagation-for-sqs-and-kinesis-2876781c977c1377.yaml
rename to dd-trace-py/releasenotes/notes/add-botocore-trace-context-propagation-for-sqs-and-kinesis-2876781c977c1377.yaml
diff --git a/releasenotes/notes/add-buddy-works-metadata-extraction-988f215f36ddf88b.yaml b/dd-trace-py/releasenotes/notes/add-buddy-works-metadata-extraction-988f215f36ddf88b.yaml
similarity index 100%
rename from releasenotes/notes/add-buddy-works-metadata-extraction-988f215f36ddf88b.yaml
rename to dd-trace-py/releasenotes/notes/add-buddy-works-metadata-extraction-988f215f36ddf88b.yaml
diff --git a/releasenotes/notes/add-c0f1d24cf11f23b7.yaml b/dd-trace-py/releasenotes/notes/add-c0f1d24cf11f23b7.yaml
similarity index 100%
rename from releasenotes/notes/add-c0f1d24cf11f23b7.yaml
rename to dd-trace-py/releasenotes/notes/add-c0f1d24cf11f23b7.yaml
diff --git a/releasenotes/notes/add-code-coverage-tag-ef5c183d3f29d5c3.yaml b/dd-trace-py/releasenotes/notes/add-code-coverage-tag-ef5c183d3f29d5c3.yaml
similarity index 100%
rename from releasenotes/notes/add-code-coverage-tag-ef5c183d3f29d5c3.yaml
rename to dd-trace-py/releasenotes/notes/add-code-coverage-tag-ef5c183d3f29d5c3.yaml
diff --git a/releasenotes/notes/add-component-tag-299386887267885f.yaml b/dd-trace-py/releasenotes/notes/add-component-tag-299386887267885f.yaml
similarity index 100%
rename from releasenotes/notes/add-component-tag-299386887267885f.yaml
rename to dd-trace-py/releasenotes/notes/add-component-tag-299386887267885f.yaml
diff --git a/releasenotes/notes/add-config-to-allow-different-resource-name-in-django-dd55912a96678653.yaml b/dd-trace-py/releasenotes/notes/add-config-to-allow-different-resource-name-in-django-dd55912a96678653.yaml
similarity index 100%
rename from releasenotes/notes/add-config-to-allow-different-resource-name-in-django-dd55912a96678653.yaml
rename to dd-trace-py/releasenotes/notes/add-config-to-allow-different-resource-name-in-django-dd55912a96678653.yaml
diff --git a/releasenotes/notes/add-container-tags-support-ae80f97d168e5ff1.yaml b/dd-trace-py/releasenotes/notes/add-container-tags-support-ae80f97d168e5ff1.yaml
similarity index 100%
rename from releasenotes/notes/add-container-tags-support-ae80f97d168e5ff1.yaml
rename to dd-trace-py/releasenotes/notes/add-container-tags-support-ae80f97d168e5ff1.yaml
diff --git a/releasenotes/notes/add-context-back-to-public-api-e6c2412165df10a7.yaml b/dd-trace-py/releasenotes/notes/add-context-back-to-public-api-e6c2412165df10a7.yaml
similarity index 100%
rename from releasenotes/notes/add-context-back-to-public-api-e6c2412165df10a7.yaml
rename to dd-trace-py/releasenotes/notes/add-context-back-to-public-api-e6c2412165df10a7.yaml
diff --git a/releasenotes/notes/add-control-on-patch-botocore-submodules-f7dc6fd12279225f.yaml b/dd-trace-py/releasenotes/notes/add-control-on-patch-botocore-submodules-f7dc6fd12279225f.yaml
similarity index 100%
rename from releasenotes/notes/add-control-on-patch-botocore-submodules-f7dc6fd12279225f.yaml
rename to dd-trace-py/releasenotes/notes/add-control-on-patch-botocore-submodules-f7dc6fd12279225f.yaml
diff --git a/releasenotes/notes/add-datadog-config-defaults-for-otel-metrics-api-6a18652eb47607da.yaml b/dd-trace-py/releasenotes/notes/add-datadog-config-defaults-for-otel-metrics-api-6a18652eb47607da.yaml
similarity index 100%
rename from releasenotes/notes/add-datadog-config-defaults-for-otel-metrics-api-6a18652eb47607da.yaml
rename to dd-trace-py/releasenotes/notes/add-datadog-config-defaults-for-otel-metrics-api-6a18652eb47607da.yaml
diff --git a/releasenotes/notes/add-datadog-lambda-integration-520a41fe618280ac.yaml b/dd-trace-py/releasenotes/notes/add-datadog-lambda-integration-520a41fe618280ac.yaml
similarity index 100%
rename from releasenotes/notes/add-datadog-lambda-integration-520a41fe618280ac.yaml
rename to dd-trace-py/releasenotes/notes/add-datadog-lambda-integration-520a41fe618280ac.yaml
diff --git a/releasenotes/notes/add-datadog-trace-tag-propagation-f69736976107f1c2.yaml b/dd-trace-py/releasenotes/notes/add-datadog-trace-tag-propagation-f69736976107f1c2.yaml
similarity index 100%
rename from releasenotes/notes/add-datadog-trace-tag-propagation-f69736976107f1c2.yaml
rename to dd-trace-py/releasenotes/notes/add-datadog-trace-tag-propagation-f69736976107f1c2.yaml
diff --git a/releasenotes/notes/add-datastreams-monitoring-schema-tracking-784ba3f9f3c368d2.yaml b/dd-trace-py/releasenotes/notes/add-datastreams-monitoring-schema-tracking-784ba3f9f3c368d2.yaml
similarity index 100%
rename from releasenotes/notes/add-datastreams-monitoring-schema-tracking-784ba3f9f3c368d2.yaml
rename to dd-trace-py/releasenotes/notes/add-datastreams-monitoring-schema-tracking-784ba3f9f3c368d2.yaml
diff --git a/releasenotes/notes/add-dbm-for-mysql-and-postgres-integrations-8558939c45f0dbd7.yaml b/dd-trace-py/releasenotes/notes/add-dbm-for-mysql-and-postgres-integrations-8558939c45f0dbd7.yaml
similarity index 100%
rename from releasenotes/notes/add-dbm-for-mysql-and-postgres-integrations-8558939c45f0dbd7.yaml
rename to dd-trace-py/releasenotes/notes/add-dbm-for-mysql-and-postgres-integrations-8558939c45f0dbd7.yaml
diff --git a/releasenotes/notes/add-dd-128bit-traceid-releasenote-dae1a746134859bb.yaml b/dd-trace-py/releasenotes/notes/add-dd-128bit-traceid-releasenote-dae1a746134859bb.yaml
similarity index 100%
rename from releasenotes/notes/add-dd-128bit-traceid-releasenote-dae1a746134859bb.yaml
rename to dd-trace-py/releasenotes/notes/add-dd-128bit-traceid-releasenote-dae1a746134859bb.yaml
diff --git a/releasenotes/notes/add-dd-trace-agent-timeout-seconds-env-844b53ff0ccc7c9f.yaml b/dd-trace-py/releasenotes/notes/add-dd-trace-agent-timeout-seconds-env-844b53ff0ccc7c9f.yaml
similarity index 100%
rename from releasenotes/notes/add-dd-trace-agent-timeout-seconds-env-844b53ff0ccc7c9f.yaml
rename to dd-trace-py/releasenotes/notes/add-dd-trace-agent-timeout-seconds-env-844b53ff0ccc7c9f.yaml
diff --git a/releasenotes/notes/add-dd_call_basic_config-env-15570281d176f438.yaml b/dd-trace-py/releasenotes/notes/add-dd_call_basic_config-env-15570281d176f438.yaml
similarity index 100%
rename from releasenotes/notes/add-dd_call_basic_config-env-15570281d176f438.yaml
rename to dd-trace-py/releasenotes/notes/add-dd_call_basic_config-env-15570281d176f438.yaml
diff --git a/releasenotes/notes/add-ddtags-experimental-support-15c9e66c94870be2.yaml b/dd-trace-py/releasenotes/notes/add-ddtags-experimental-support-15c9e66c94870be2.yaml
similarity index 100%
rename from releasenotes/notes/add-ddtags-experimental-support-15c9e66c94870be2.yaml
rename to dd-trace-py/releasenotes/notes/add-ddtags-experimental-support-15c9e66c94870be2.yaml
diff --git a/releasenotes/notes/add-debug-logs-sampling-2b163de7c992fe0b.yaml b/dd-trace-py/releasenotes/notes/add-debug-logs-sampling-2b163de7c992fe0b.yaml
similarity index 100%
rename from releasenotes/notes/add-debug-logs-sampling-2b163de7c992fe0b.yaml
rename to dd-trace-py/releasenotes/notes/add-debug-logs-sampling-2b163de7c992fe0b.yaml
diff --git a/releasenotes/notes/add-debugger-log-probe-2eaadf0e5df1c437.yaml b/dd-trace-py/releasenotes/notes/add-debugger-log-probe-2eaadf0e5df1c437.yaml
similarity index 100%
rename from releasenotes/notes/add-debugger-log-probe-2eaadf0e5df1c437.yaml
rename to dd-trace-py/releasenotes/notes/add-debugger-log-probe-2eaadf0e5df1c437.yaml
diff --git a/releasenotes/notes/add-django-channels-support-44aefaa21961adff.yaml b/dd-trace-py/releasenotes/notes/add-django-channels-support-44aefaa21961adff.yaml
similarity index 100%
rename from releasenotes/notes/add-django-channels-support-44aefaa21961adff.yaml
rename to dd-trace-py/releasenotes/notes/add-django-channels-support-44aefaa21961adff.yaml
diff --git a/releasenotes/notes/add-django-disable-templates-af5bdf524f27156f.yaml b/dd-trace-py/releasenotes/notes/add-django-disable-templates-af5bdf524f27156f.yaml
similarity index 100%
rename from releasenotes/notes/add-django-disable-templates-af5bdf524f27156f.yaml
rename to dd-trace-py/releasenotes/notes/add-django-disable-templates-af5bdf524f27156f.yaml
diff --git a/releasenotes/notes/add-django-tracing-minimal-d995af59e59e748e.yaml b/dd-trace-py/releasenotes/notes/add-django-tracing-minimal-d995af59e59e748e.yaml
similarity index 100%
rename from releasenotes/notes/add-django-tracing-minimal-d995af59e59e748e.yaml
rename to dd-trace-py/releasenotes/notes/add-django-tracing-minimal-d995af59e59e748e.yaml
diff --git a/releasenotes/notes/add-dm-trace-tag-471f5ee0303a8497.yaml b/dd-trace-py/releasenotes/notes/add-dm-trace-tag-471f5ee0303a8497.yaml
similarity index 100%
rename from releasenotes/notes/add-dm-trace-tag-471f5ee0303a8497.yaml
rename to dd-trace-py/releasenotes/notes/add-dm-trace-tag-471f5ee0303a8497.yaml
diff --git a/releasenotes/notes/add-dsm-manual-checkpoint-flag-8ec40cc433070ee6.yaml b/dd-trace-py/releasenotes/notes/add-dsm-manual-checkpoint-flag-8ec40cc433070ee6.yaml
similarity index 100%
rename from releasenotes/notes/add-dsm-manual-checkpoint-flag-8ec40cc433070ee6.yaml
rename to dd-trace-py/releasenotes/notes/add-dsm-manual-checkpoint-flag-8ec40cc433070ee6.yaml
diff --git a/releasenotes/notes/add-dsm-pathway-hash-to-spans-ae79a40927ccba59.yaml b/dd-trace-py/releasenotes/notes/add-dsm-pathway-hash-to-spans-ae79a40927ccba59.yaml
similarity index 100%
rename from releasenotes/notes/add-dsm-pathway-hash-to-spans-ae79a40927ccba59.yaml
rename to dd-trace-py/releasenotes/notes/add-dsm-pathway-hash-to-spans-ae79a40927ccba59.yaml
diff --git a/releasenotes/notes/add-dynamodb-to-the-default-payload-tagging-services-list-3271baa13b8a3d14.yaml b/dd-trace-py/releasenotes/notes/add-dynamodb-to-the-default-payload-tagging-services-list-3271baa13b8a3d14.yaml
similarity index 100%
rename from releasenotes/notes/add-dynamodb-to-the-default-payload-tagging-services-list-3271baa13b8a3d14.yaml
rename to dd-trace-py/releasenotes/notes/add-dynamodb-to-the-default-payload-tagging-services-list-3271baa13b8a3d14.yaml
diff --git a/releasenotes/notes/add-feature-to-capture-user-intent-of-mcp-server-tool-calls-87ce1280fffe8f75.yaml b/dd-trace-py/releasenotes/notes/add-feature-to-capture-user-intent-of-mcp-server-tool-calls-87ce1280fffe8f75.yaml
similarity index 100%
rename from releasenotes/notes/add-feature-to-capture-user-intent-of-mcp-server-tool-calls-87ce1280fffe8f75.yaml
rename to dd-trace-py/releasenotes/notes/add-feature-to-capture-user-intent-of-mcp-server-tool-calls-87ce1280fffe8f75.yaml
diff --git a/releasenotes/notes/add-google-genai-to-llm-integrations-20bc03131f624e42.yaml b/dd-trace-py/releasenotes/notes/add-google-genai-to-llm-integrations-20bc03131f624e42.yaml
similarity index 100%
rename from releasenotes/notes/add-google-genai-to-llm-integrations-20bc03131f624e42.yaml
rename to dd-trace-py/releasenotes/notes/add-google-genai-to-llm-integrations-20bc03131f624e42.yaml
diff --git a/releasenotes/notes/add-graphene-support-b189f0265d629963.yaml b/dd-trace-py/releasenotes/notes/add-graphene-support-b189f0265d629963.yaml
similarity index 100%
rename from releasenotes/notes/add-graphene-support-b189f0265d629963.yaml
rename to dd-trace-py/releasenotes/notes/add-graphene-support-b189f0265d629963.yaml
diff --git a/releasenotes/notes/add-graphql-core-support-fd20dcbebfcaa8c7.yaml b/dd-trace-py/releasenotes/notes/add-graphql-core-support-fd20dcbebfcaa8c7.yaml
similarity index 100%
rename from releasenotes/notes/add-graphql-core-support-fd20dcbebfcaa8c7.yaml
rename to dd-trace-py/releasenotes/notes/add-graphql-core-support-fd20dcbebfcaa8c7.yaml
diff --git a/releasenotes/notes/add-grpc-aio-support-c59efa5557aeea8f.yaml b/dd-trace-py/releasenotes/notes/add-grpc-aio-support-c59efa5557aeea8f.yaml
similarity index 100%
rename from releasenotes/notes/add-grpc-aio-support-c59efa5557aeea8f.yaml
rename to dd-trace-py/releasenotes/notes/add-grpc-aio-support-c59efa5557aeea8f.yaml
diff --git a/releasenotes/notes/add-http-route-to-aiohttp-bottle-falcon-molten-f04b9cd82ca74bb1.yaml b/dd-trace-py/releasenotes/notes/add-http-route-to-aiohttp-bottle-falcon-molten-f04b9cd82ca74bb1.yaml
similarity index 100%
rename from releasenotes/notes/add-http-route-to-aiohttp-bottle-falcon-molten-f04b9cd82ca74bb1.yaml
rename to dd-trace-py/releasenotes/notes/add-http-route-to-aiohttp-bottle-falcon-molten-f04b9cd82ca74bb1.yaml
diff --git a/releasenotes/notes/add-http-route-to-pyramid-23eab91880ac8e0e.yaml b/dd-trace-py/releasenotes/notes/add-http-route-to-pyramid-23eab91880ac8e0e.yaml
similarity index 100%
rename from releasenotes/notes/add-http-route-to-pyramid-23eab91880ac8e0e.yaml
rename to dd-trace-py/releasenotes/notes/add-http-route-to-pyramid-23eab91880ac8e0e.yaml
diff --git a/releasenotes/notes/add-http-route-to-starlette-2539a132853213d6.yaml b/dd-trace-py/releasenotes/notes/add-http-route-to-starlette-2539a132853213d6.yaml
similarity index 100%
rename from releasenotes/notes/add-http-route-to-starlette-2539a132853213d6.yaml
rename to dd-trace-py/releasenotes/notes/add-http-route-to-starlette-2539a132853213d6.yaml
diff --git a/releasenotes/notes/add-httpx-integration-6e2493b2ea605203.yaml b/dd-trace-py/releasenotes/notes/add-httpx-integration-6e2493b2ea605203.yaml
similarity index 100%
rename from releasenotes/notes/add-httpx-integration-6e2493b2ea605203.yaml
rename to dd-trace-py/releasenotes/notes/add-httpx-integration-6e2493b2ea605203.yaml
diff --git a/releasenotes/notes/add-injection-metadata-fields-5f2d35cc9636c864.yaml b/dd-trace-py/releasenotes/notes/add-injection-metadata-fields-5f2d35cc9636c864.yaml
similarity index 100%
rename from releasenotes/notes/add-injection-metadata-fields-5f2d35cc9636c864.yaml
rename to dd-trace-py/releasenotes/notes/add-injection-metadata-fields-5f2d35cc9636c864.yaml
diff --git a/releasenotes/notes/add-integration-guardrail-versions-when-patching-bd5897789bb046c6.yaml b/dd-trace-py/releasenotes/notes/add-integration-guardrail-versions-when-patching-bd5897789bb046c6.yaml
similarity index 100%
rename from releasenotes/notes/add-integration-guardrail-versions-when-patching-bd5897789bb046c6.yaml
rename to dd-trace-py/releasenotes/notes/add-integration-guardrail-versions-when-patching-bd5897789bb046c6.yaml
diff --git a/releasenotes/notes/add-ipv6-support-for-hostnames-0fb700a1ef7ed57e.yaml b/dd-trace-py/releasenotes/notes/add-ipv6-support-for-hostnames-0fb700a1ef7ed57e.yaml
similarity index 100%
rename from releasenotes/notes/add-ipv6-support-for-hostnames-0fb700a1ef7ed57e.yaml
rename to dd-trace-py/releasenotes/notes/add-ipv6-support-for-hostnames-0fb700a1ef7ed57e.yaml
diff --git a/releasenotes/notes/add-itr-unittest-dce1864da8d6e843.yaml b/dd-trace-py/releasenotes/notes/add-itr-unittest-dce1864da8d6e843.yaml
similarity index 100%
rename from releasenotes/notes/add-itr-unittest-dce1864da8d6e843.yaml
rename to dd-trace-py/releasenotes/notes/add-itr-unittest-dce1864da8d6e843.yaml
diff --git a/releasenotes/notes/add-kafka-distributed-tracing-150a31a858c2f7c5.yaml b/dd-trace-py/releasenotes/notes/add-kafka-distributed-tracing-150a31a858c2f7c5.yaml
similarity index 100%
rename from releasenotes/notes/add-kafka-distributed-tracing-150a31a858c2f7c5.yaml
rename to dd-trace-py/releasenotes/notes/add-kafka-distributed-tracing-150a31a858c2f7c5.yaml
diff --git a/releasenotes/notes/add-llama-index-integration-e8648aab68aca1a3.yaml b/dd-trace-py/releasenotes/notes/add-llama-index-integration-e8648aab68aca1a3.yaml
similarity index 100%
rename from releasenotes/notes/add-llama-index-integration-e8648aab68aca1a3.yaml
rename to dd-trace-py/releasenotes/notes/add-llama-index-integration-e8648aab68aca1a3.yaml
diff --git a/releasenotes/notes/add-llmobs-get-prompt-method-ab180b0092d3997a.yaml b/dd-trace-py/releasenotes/notes/add-llmobs-get-prompt-method-ab180b0092d3997a.yaml
similarity index 100%
rename from releasenotes/notes/add-llmobs-get-prompt-method-ab180b0092d3997a.yaml
rename to dd-trace-py/releasenotes/notes/add-llmobs-get-prompt-method-ab180b0092d3997a.yaml
diff --git a/releasenotes/notes/add-main-package-tag-b16e5d39f0507758.yaml b/dd-trace-py/releasenotes/notes/add-main-package-tag-b16e5d39f0507758.yaml
similarity index 100%
rename from releasenotes/notes/add-main-package-tag-b16e5d39f0507758.yaml
rename to dd-trace-py/releasenotes/notes/add-main-package-tag-b16e5d39f0507758.yaml
diff --git a/releasenotes/notes/add-missing-component-tag-on-aiohttp-tcp-spans-8c9fe55d4e8f9085.yaml b/dd-trace-py/releasenotes/notes/add-missing-component-tag-on-aiohttp-tcp-spans-8c9fe55d4e8f9085.yaml
similarity index 100%
rename from releasenotes/notes/add-missing-component-tag-on-aiohttp-tcp-spans-8c9fe55d4e8f9085.yaml
rename to dd-trace-py/releasenotes/notes/add-missing-component-tag-on-aiohttp-tcp-spans-8c9fe55d4e8f9085.yaml
diff --git a/releasenotes/notes/add-missing-service-naming-changes-e226590a217298f2.yaml b/dd-trace-py/releasenotes/notes/add-missing-service-naming-changes-e226590a217298f2.yaml
similarity index 100%
rename from releasenotes/notes/add-missing-service-naming-changes-e226590a217298f2.yaml
rename to dd-trace-py/releasenotes/notes/add-missing-service-naming-changes-e226590a217298f2.yaml
diff --git a/releasenotes/notes/add-mongo-obfuscation-toggle-52dc5ea6dcf0f8cf.yaml b/dd-trace-py/releasenotes/notes/add-mongo-obfuscation-toggle-52dc5ea6dcf0f8cf.yaml
similarity index 100%
rename from releasenotes/notes/add-mongo-obfuscation-toggle-52dc5ea6dcf0f8cf.yaml
rename to dd-trace-py/releasenotes/notes/add-mongo-obfuscation-toggle-52dc5ea6dcf0f8cf.yaml
diff --git a/releasenotes/notes/add-mongodb-dbm-propagation-support-3ff0f1423cafda8a.yaml b/dd-trace-py/releasenotes/notes/add-mongodb-dbm-propagation-support-3ff0f1423cafda8a.yaml
similarity index 100%
rename from releasenotes/notes/add-mongodb-dbm-propagation-support-3ff0f1423cafda8a.yaml
rename to dd-trace-py/releasenotes/notes/add-mongodb-dbm-propagation-support-3ff0f1423cafda8a.yaml
diff --git a/releasenotes/notes/add-native-span-events-b04983442822d1b0.yaml b/dd-trace-py/releasenotes/notes/add-native-span-events-b04983442822d1b0.yaml
similarity index 100%
rename from releasenotes/notes/add-native-span-events-b04983442822d1b0.yaml
rename to dd-trace-py/releasenotes/notes/add-native-span-events-b04983442822d1b0.yaml
diff --git a/releasenotes/notes/add-opensearch-support-6cc83636317df1a7.yaml b/dd-trace-py/releasenotes/notes/add-opensearch-support-6cc83636317df1a7.yaml
similarity index 100%
rename from releasenotes/notes/add-opensearch-support-6cc83636317df1a7.yaml
rename to dd-trace-py/releasenotes/notes/add-opensearch-support-6cc83636317df1a7.yaml
diff --git a/releasenotes/notes/add-option-for-ddtrace-file-logs-d87104ec7cdfb6fd.yaml b/dd-trace-py/releasenotes/notes/add-option-for-ddtrace-file-logs-d87104ec7cdfb6fd.yaml
similarity index 100%
rename from releasenotes/notes/add-option-for-ddtrace-file-logs-d87104ec7cdfb6fd.yaml
rename to dd-trace-py/releasenotes/notes/add-option-for-ddtrace-file-logs-d87104ec7cdfb6fd.yaml
diff --git a/releasenotes/notes/add-package-distribution-version-for-telemetry-to-all-integrations-a95c503f6643f5b2.yaml b/dd-trace-py/releasenotes/notes/add-package-distribution-version-for-telemetry-to-all-integrations-a95c503f6643f5b2.yaml
similarity index 100%
rename from releasenotes/notes/add-package-distribution-version-for-telemetry-to-all-integrations-a95c503f6643f5b2.yaml
rename to dd-trace-py/releasenotes/notes/add-package-distribution-version-for-telemetry-to-all-integrations-a95c503f6643f5b2.yaml
diff --git a/releasenotes/notes/add-partition-tag-b423877806ab7271.yaml b/dd-trace-py/releasenotes/notes/add-partition-tag-b423877806ab7271.yaml
similarity index 100%
rename from releasenotes/notes/add-partition-tag-b423877806ab7271.yaml
rename to dd-trace-py/releasenotes/notes/add-partition-tag-b423877806ab7271.yaml
diff --git a/releasenotes/notes/add-process-tags-to-stats-payload-ecb62193b7e58b13.yaml b/dd-trace-py/releasenotes/notes/add-process-tags-to-stats-payload-ecb62193b7e58b13.yaml
similarity index 100%
rename from releasenotes/notes/add-process-tags-to-stats-payload-ecb62193b7e58b13.yaml
rename to dd-trace-py/releasenotes/notes/add-process-tags-to-stats-payload-ecb62193b7e58b13.yaml
diff --git a/releasenotes/notes/add-py27-windows-support-a624cbc63b8f90de.yaml b/dd-trace-py/releasenotes/notes/add-py27-windows-support-a624cbc63b8f90de.yaml
similarity index 100%
rename from releasenotes/notes/add-py27-windows-support-a624cbc63b8f90de.yaml
rename to dd-trace-py/releasenotes/notes/add-py27-windows-support-a624cbc63b8f90de.yaml
diff --git a/releasenotes/notes/add-pytest-bdd-integration-ce14f6be6d63ba01.yaml b/dd-trace-py/releasenotes/notes/add-pytest-bdd-integration-ce14f6be6d63ba01.yaml
similarity index 100%
rename from releasenotes/notes/add-pytest-bdd-integration-ce14f6be6d63ba01.yaml
rename to dd-trace-py/releasenotes/notes/add-pytest-bdd-integration-ce14f6be6d63ba01.yaml
diff --git a/releasenotes/notes/add-pytest-benchmark-support-71c6505ca4b202f3.yaml b/dd-trace-py/releasenotes/notes/add-pytest-benchmark-support-71c6505ca4b202f3.yaml
similarity index 100%
rename from releasenotes/notes/add-pytest-benchmark-support-71c6505ca4b202f3.yaml
rename to dd-trace-py/releasenotes/notes/add-pytest-benchmark-support-71c6505ca4b202f3.yaml
diff --git a/releasenotes/notes/add-reasoning-extended-thinking-llmobs-7392f7362ec0c3f7.yaml b/dd-trace-py/releasenotes/notes/add-reasoning-extended-thinking-llmobs-7392f7362ec0c3f7.yaml
similarity index 100%
rename from releasenotes/notes/add-reasoning-extended-thinking-llmobs-7392f7362ec0c3f7.yaml
rename to dd-trace-py/releasenotes/notes/add-reasoning-extended-thinking-llmobs-7392f7362ec0c3f7.yaml
diff --git a/releasenotes/notes/add-requirements-json-038073d722697e32.yaml b/dd-trace-py/releasenotes/notes/add-requirements-json-038073d722697e32.yaml
similarity index 100%
rename from releasenotes/notes/add-requirements-json-038073d722697e32.yaml
rename to dd-trace-py/releasenotes/notes/add-requirements-json-038073d722697e32.yaml
diff --git a/releasenotes/notes/add-row_count-tag-to-redis-integrations-5777e8dde72407d7.yaml b/dd-trace-py/releasenotes/notes/add-row_count-tag-to-redis-integrations-5777e8dde72407d7.yaml
similarity index 100%
rename from releasenotes/notes/add-row_count-tag-to-redis-integrations-5777e8dde72407d7.yaml
rename to dd-trace-py/releasenotes/notes/add-row_count-tag-to-redis-integrations-5777e8dde72407d7.yaml
diff --git a/releasenotes/notes/add-runtime-and-sampling-rules-to-startup-logs-18a8a8236d4131f5.yaml b/dd-trace-py/releasenotes/notes/add-runtime-and-sampling-rules-to-startup-logs-18a8a8236d4131f5.yaml
similarity index 100%
rename from releasenotes/notes/add-runtime-and-sampling-rules-to-startup-logs-18a8a8236d4131f5.yaml
rename to dd-trace-py/releasenotes/notes/add-runtime-and-sampling-rules-to-startup-logs-18a8a8236d4131f5.yaml
diff --git a/releasenotes/notes/add-sampling-rule-environment-variable-2fe72140f8395b86.yaml b/dd-trace-py/releasenotes/notes/add-sampling-rule-environment-variable-2fe72140f8395b86.yaml
similarity index 100%
rename from releasenotes/notes/add-sampling-rule-environment-variable-2fe72140f8395b86.yaml
rename to dd-trace-py/releasenotes/notes/add-sampling-rule-environment-variable-2fe72140f8395b86.yaml
diff --git a/releasenotes/notes/add-snowflake-9fdedcd5058de2f7.yaml b/dd-trace-py/releasenotes/notes/add-snowflake-9fdedcd5058de2f7.yaml
similarity index 100%
rename from releasenotes/notes/add-snowflake-9fdedcd5058de2f7.yaml
rename to dd-trace-py/releasenotes/notes/add-snowflake-9fdedcd5058de2f7.yaml
diff --git a/releasenotes/notes/add-span-get-tags-metrics-7969ba7843dcc24d.yaml b/dd-trace-py/releasenotes/notes/add-span-get-tags-metrics-7969ba7843dcc24d.yaml
similarity index 100%
rename from releasenotes/notes/add-span-get-tags-metrics-7969ba7843dcc24d.yaml
rename to dd-trace-py/releasenotes/notes/add-span-get-tags-metrics-7969ba7843dcc24d.yaml
diff --git a/releasenotes/notes/add-sqs-lambda-context-support-5062a60d81055ed7.yaml b/dd-trace-py/releasenotes/notes/add-sqs-lambda-context-support-5062a60d81055ed7.yaml
similarity index 100%
rename from releasenotes/notes/add-sqs-lambda-context-support-5062a60d81055ed7.yaml
rename to dd-trace-py/releasenotes/notes/add-sqs-lambda-context-support-5062a60d81055ed7.yaml
diff --git a/releasenotes/notes/add-start-end-lines-for-pytest-08bc7d463b9f100e.yaml b/dd-trace-py/releasenotes/notes/add-start-end-lines-for-pytest-08bc7d463b9f100e.yaml
similarity index 100%
rename from releasenotes/notes/add-start-end-lines-for-pytest-08bc7d463b9f100e.yaml
rename to dd-trace-py/releasenotes/notes/add-start-end-lines-for-pytest-08bc7d463b9f100e.yaml
diff --git a/releasenotes/notes/add-start-end-unittest-515222961e619ac2.yaml b/dd-trace-py/releasenotes/notes/add-start-end-unittest-515222961e619ac2.yaml
similarity index 100%
rename from releasenotes/notes/add-start-end-unittest-515222961e619ac2.yaml
rename to dd-trace-py/releasenotes/notes/add-start-end-unittest-515222961e619ac2.yaml
diff --git a/releasenotes/notes/add-step-span-cdecf392446b8d6c.yaml b/dd-trace-py/releasenotes/notes/add-step-span-cdecf392446b8d6c.yaml
similarity index 100%
rename from releasenotes/notes/add-step-span-cdecf392446b8d6c.yaml
rename to dd-trace-py/releasenotes/notes/add-step-span-cdecf392446b8d6c.yaml
diff --git a/releasenotes/notes/add-support-for-aiobotocore-1-x-2-x-611d93a3ec362489.yaml b/dd-trace-py/releasenotes/notes/add-support-for-aiobotocore-1-x-2-x-611d93a3ec362489.yaml
similarity index 100%
rename from releasenotes/notes/add-support-for-aiobotocore-1-x-2-x-611d93a3ec362489.yaml
rename to dd-trace-py/releasenotes/notes/add-support-for-aiobotocore-1-x-2-x-611d93a3ec362489.yaml
diff --git a/releasenotes/notes/add-support-for-otel-logs-eef1218c3fb2996b.yaml b/dd-trace-py/releasenotes/notes/add-support-for-otel-logs-eef1218c3fb2996b.yaml
similarity index 100%
rename from releasenotes/notes/add-support-for-otel-logs-eef1218c3fb2996b.yaml
rename to dd-trace-py/releasenotes/notes/add-support-for-otel-logs-eef1218c3fb2996b.yaml
diff --git a/releasenotes/notes/add-support-for-otel-metrics-42396aa1550e621c.yaml b/dd-trace-py/releasenotes/notes/add-support-for-otel-metrics-42396aa1550e621c.yaml
similarity index 100%
rename from releasenotes/notes/add-support-for-otel-metrics-42396aa1550e621c.yaml
rename to dd-trace-py/releasenotes/notes/add-support-for-otel-metrics-42396aa1550e621c.yaml
diff --git a/releasenotes/notes/add-support-for-redis-py-cluster-265c66546f843efa.yaml b/dd-trace-py/releasenotes/notes/add-support-for-redis-py-cluster-265c66546f843efa.yaml
similarity index 100%
rename from releasenotes/notes/add-support-for-redis-py-cluster-265c66546f843efa.yaml
rename to dd-trace-py/releasenotes/notes/add-support-for-redis-py-cluster-265c66546f843efa.yaml
diff --git a/releasenotes/notes/add-support-ranges-for-all-integrations-2f61758185226480.yaml b/dd-trace-py/releasenotes/notes/add-support-ranges-for-all-integrations-2f61758185226480.yaml
similarity index 100%
rename from releasenotes/notes/add-support-ranges-for-all-integrations-2f61758185226480.yaml
rename to dd-trace-py/releasenotes/notes/add-support-ranges-for-all-integrations-2f61758185226480.yaml
diff --git a/releasenotes/notes/add-supported-configurations-registry-282adcec17b80fae.yaml b/dd-trace-py/releasenotes/notes/add-supported-configurations-registry-282adcec17b80fae.yaml
similarity index 100%
rename from releasenotes/notes/add-supported-configurations-registry-282adcec17b80fae.yaml
rename to dd-trace-py/releasenotes/notes/add-supported-configurations-registry-282adcec17b80fae.yaml
diff --git a/releasenotes/notes/add-trace-injector-for-botocore-eventbridge-7dd2e56134b9472f.yaml b/dd-trace-py/releasenotes/notes/add-trace-injector-for-botocore-eventbridge-7dd2e56134b9472f.yaml
similarity index 100%
rename from releasenotes/notes/add-trace-injector-for-botocore-eventbridge-7dd2e56134b9472f.yaml
rename to dd-trace-py/releasenotes/notes/add-trace-injector-for-botocore-eventbridge-7dd2e56134b9472f.yaml
diff --git a/releasenotes/notes/add-tracer-flare-65e275bca27631dd.yaml b/dd-trace-py/releasenotes/notes/add-tracer-flare-65e275bca27631dd.yaml
similarity index 100%
rename from releasenotes/notes/add-tracer-flare-65e275bca27631dd.yaml
rename to dd-trace-py/releasenotes/notes/add-tracer-flare-65e275bca27631dd.yaml
diff --git a/releasenotes/notes/add-tslv-unittest-support-f2967051df9aa9aa.yaml b/dd-trace-py/releasenotes/notes/add-tslv-unittest-support-f2967051df9aa9aa.yaml
similarity index 100%
rename from releasenotes/notes/add-tslv-unittest-support-f2967051df9aa9aa.yaml
rename to dd-trace-py/releasenotes/notes/add-tslv-unittest-support-f2967051df9aa9aa.yaml
diff --git a/releasenotes/notes/add-unittest-support-024c4664f6546c21.yaml b/dd-trace-py/releasenotes/notes/add-unittest-support-024c4664f6546c21.yaml
similarity index 100%
rename from releasenotes/notes/add-unittest-support-024c4664f6546c21.yaml
rename to dd-trace-py/releasenotes/notes/add-unittest-support-024c4664f6546c21.yaml
diff --git a/releasenotes/notes/add-valkey-support-6cc9f41351dc0cd9.yaml b/dd-trace-py/releasenotes/notes/add-valkey-support-6cc9f41351dc0cd9.yaml
similarity index 100%
rename from releasenotes/notes/add-valkey-support-6cc9f41351dc0cd9.yaml
rename to dd-trace-py/releasenotes/notes/add-valkey-support-6cc9f41351dc0cd9.yaml
diff --git a/releasenotes/notes/add-vllm-integration-b93a517daeb45f61.yaml b/dd-trace-py/releasenotes/notes/add-vllm-integration-b93a517daeb45f61.yaml
similarity index 100%
rename from releasenotes/notes/add-vllm-integration-b93a517daeb45f61.yaml
rename to dd-trace-py/releasenotes/notes/add-vllm-integration-b93a517daeb45f61.yaml
diff --git a/releasenotes/notes/add-warning-after-shutdown-tracer-dd8799467c4d29c8.yaml b/dd-trace-py/releasenotes/notes/add-warning-after-shutdown-tracer-dd8799467c4d29c8.yaml
similarity index 100%
rename from releasenotes/notes/add-warning-after-shutdown-tracer-dd8799467c4d29c8.yaml
rename to dd-trace-py/releasenotes/notes/add-warning-after-shutdown-tracer-dd8799467c4d29c8.yaml
diff --git a/releasenotes/notes/add-windows-3.13-build-f36c6cf5a74e14de.yaml b/dd-trace-py/releasenotes/notes/add-windows-3.13-build-f36c6cf5a74e14de.yaml
similarity index 100%
rename from releasenotes/notes/add-windows-3.13-build-f36c6cf5a74e14de.yaml
rename to dd-trace-py/releasenotes/notes/add-windows-3.13-build-f36c6cf5a74e14de.yaml
diff --git a/releasenotes/notes/add-writer-env-config-7c0916dff4f7f80c.yaml b/dd-trace-py/releasenotes/notes/add-writer-env-config-7c0916dff4f7f80c.yaml
similarity index 100%
rename from releasenotes/notes/add-writer-env-config-7c0916dff4f7f80c.yaml
rename to dd-trace-py/releasenotes/notes/add-writer-env-config-7c0916dff4f7f80c.yaml
diff --git a/releasenotes/notes/addDD_DJANGO_INCLUDE_USER_NAME-fdaf2750076e7038.yaml b/dd-trace-py/releasenotes/notes/addDD_DJANGO_INCLUDE_USER_NAME-fdaf2750076e7038.yaml
similarity index 100%
rename from releasenotes/notes/addDD_DJANGO_INCLUDE_USER_NAME-fdaf2750076e7038.yaml
rename to dd-trace-py/releasenotes/notes/addDD_DJANGO_INCLUDE_USER_NAME-fdaf2750076e7038.yaml
diff --git a/releasenotes/notes/add_DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED-8e9d518dfd0028f2.yaml b/dd-trace-py/releasenotes/notes/add_DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED-8e9d518dfd0028f2.yaml
similarity index 100%
rename from releasenotes/notes/add_DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED-8e9d518dfd0028f2.yaml
rename to dd-trace-py/releasenotes/notes/add_DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED-8e9d518dfd0028f2.yaml
diff --git a/releasenotes/notes/add_DD_TRACE_PROPAGATION_STYLE-ee71fda484a0e444.yaml b/dd-trace-py/releasenotes/notes/add_DD_TRACE_PROPAGATION_STYLE-ee71fda484a0e444.yaml
similarity index 100%
rename from releasenotes/notes/add_DD_TRACE_PROPAGATION_STYLE-ee71fda484a0e444.yaml
rename to dd-trace-py/releasenotes/notes/add_DD_TRACE_PROPAGATION_STYLE-ee71fda484a0e444.yaml
diff --git a/releasenotes/notes/add_aiohttp_memory_leak_flag-66005f987dbfbd47.yaml b/dd-trace-py/releasenotes/notes/add_aiohttp_memory_leak_flag-66005f987dbfbd47.yaml
similarity index 100%
rename from releasenotes/notes/add_aiohttp_memory_leak_flag-66005f987dbfbd47.yaml
rename to dd-trace-py/releasenotes/notes/add_aiohttp_memory_leak_flag-66005f987dbfbd47.yaml
diff --git a/releasenotes/notes/add_flag_for_span_aggregator_rlock-b08c88e0da85dc66.yaml b/dd-trace-py/releasenotes/notes/add_flag_for_span_aggregator_rlock-b08c88e0da85dc66.yaml
similarity index 100%
rename from releasenotes/notes/add_flag_for_span_aggregator_rlock-b08c88e0da85dc66.yaml
rename to dd-trace-py/releasenotes/notes/add_flag_for_span_aggregator_rlock-b08c88e0da85dc66.yaml
diff --git a/releasenotes/notes/add_known_issue_rcm_gevent_releasenote-1658a344a9aaf1b5.yaml b/dd-trace-py/releasenotes/notes/add_known_issue_rcm_gevent_releasenote-1658a344a9aaf1b5.yaml
similarity index 100%
rename from releasenotes/notes/add_known_issue_rcm_gevent_releasenote-1658a344a9aaf1b5.yaml
rename to dd-trace-py/releasenotes/notes/add_known_issue_rcm_gevent_releasenote-1658a344a9aaf1b5.yaml
diff --git a/releasenotes/notes/add_none_propagation_style-8ee2cc7f94c1034a.yaml b/dd-trace-py/releasenotes/notes/add_none_propagation_style-8ee2cc7f94c1034a.yaml
similarity index 100%
rename from releasenotes/notes/add_none_propagation_style-8ee2cc7f94c1034a.yaml
rename to dd-trace-py/releasenotes/notes/add_none_propagation_style-8ee2cc7f94c1034a.yaml
diff --git a/releasenotes/notes/additonal_tracestate_support-b8c4b6741aa89255.yaml b/dd-trace-py/releasenotes/notes/additonal_tracestate_support-b8c4b6741aa89255.yaml
similarity index 100%
rename from releasenotes/notes/additonal_tracestate_support-b8c4b6741aa89255.yaml
rename to dd-trace-py/releasenotes/notes/additonal_tracestate_support-b8c4b6741aa89255.yaml
diff --git a/releasenotes/notes/address-noisy-rcm-warnings-62eb36fb64e0f28f.yaml b/dd-trace-py/releasenotes/notes/address-noisy-rcm-warnings-62eb36fb64e0f28f.yaml
similarity index 100%
rename from releasenotes/notes/address-noisy-rcm-warnings-62eb36fb64e0f28f.yaml
rename to dd-trace-py/releasenotes/notes/address-noisy-rcm-warnings-62eb36fb64e0f28f.yaml
diff --git a/releasenotes/notes/adds-support-for-DD_DJANGO_INSTRUMENT_DATABASES-and-DD_DJANGO_INSTRUMENT_CACHES-env-variables-6e072e130d2433f5.yaml b/dd-trace-py/releasenotes/notes/adds-support-for-DD_DJANGO_INSTRUMENT_DATABASES-and-DD_DJANGO_INSTRUMENT_CACHES-env-variables-6e072e130d2433f5.yaml
similarity index 100%
rename from releasenotes/notes/adds-support-for-DD_DJANGO_INSTRUMENT_DATABASES-and-DD_DJANGO_INSTRUMENT_CACHES-env-variables-6e072e130d2433f5.yaml
rename to dd-trace-py/releasenotes/notes/adds-support-for-DD_DJANGO_INSTRUMENT_DATABASES-and-DD_DJANGO_INSTRUMENT_CACHES-env-variables-6e072e130d2433f5.yaml
diff --git a/releasenotes/notes/agent-sample-rate-39e5ad8039c675b9.yaml b/dd-trace-py/releasenotes/notes/agent-sample-rate-39e5ad8039c675b9.yaml
similarity index 100%
rename from releasenotes/notes/agent-sample-rate-39e5ad8039c675b9.yaml
rename to dd-trace-py/releasenotes/notes/agent-sample-rate-39e5ad8039c675b9.yaml
diff --git a/releasenotes/notes/agent-sample-rate-fix-92c7b15bc8f2e058.yaml b/dd-trace-py/releasenotes/notes/agent-sample-rate-fix-92c7b15bc8f2e058.yaml
similarity index 100%
rename from releasenotes/notes/agent-sample-rate-fix-92c7b15bc8f2e058.yaml
rename to dd-trace-py/releasenotes/notes/agent-sample-rate-fix-92c7b15bc8f2e058.yaml
diff --git a/releasenotes/notes/agent-url-path-f48aa4949b954dd5.yaml b/dd-trace-py/releasenotes/notes/agent-url-path-f48aa4949b954dd5.yaml
similarity index 100%
rename from releasenotes/notes/agent-url-path-f48aa4949b954dd5.yaml
rename to dd-trace-py/releasenotes/notes/agent-url-path-f48aa4949b954dd5.yaml
diff --git a/releasenotes/notes/ai-guard-block-env-var-97ec1268812c8ff4.yaml b/dd-trace-py/releasenotes/notes/ai-guard-block-env-var-97ec1268812c8ff4.yaml
similarity index 100%
rename from releasenotes/notes/ai-guard-block-env-var-97ec1268812c8ff4.yaml
rename to dd-trace-py/releasenotes/notes/ai-guard-block-env-var-97ec1268812c8ff4.yaml
diff --git a/releasenotes/notes/ai-guard-client-ip-tags-8ba1d0fabfe3d895.yaml b/dd-trace-py/releasenotes/notes/ai-guard-client-ip-tags-8ba1d0fabfe3d895.yaml
similarity index 100%
rename from releasenotes/notes/ai-guard-client-ip-tags-8ba1d0fabfe3d895.yaml
rename to dd-trace-py/releasenotes/notes/ai-guard-client-ip-tags-8ba1d0fabfe3d895.yaml
diff --git a/releasenotes/notes/ai-guard-default-block-ui-37ad8475fdc6ac27.yaml b/dd-trace-py/releasenotes/notes/ai-guard-default-block-ui-37ad8475fdc6ac27.yaml
similarity index 100%
rename from releasenotes/notes/ai-guard-default-block-ui-37ad8475fdc6ac27.yaml
rename to dd-trace-py/releasenotes/notes/ai-guard-default-block-ui-37ad8475fdc6ac27.yaml
diff --git a/releasenotes/notes/ai-guard-sds-findings-4a5aa05a2de3c55e.yaml b/dd-trace-py/releasenotes/notes/ai-guard-sds-findings-4a5aa05a2de3c55e.yaml
similarity index 100%
rename from releasenotes/notes/ai-guard-sds-findings-4a5aa05a2de3c55e.yaml
rename to dd-trace-py/releasenotes/notes/ai-guard-sds-findings-4a5aa05a2de3c55e.yaml
diff --git a/releasenotes/notes/ai-guard-sds-sdk-response-15343d1ea9397456.yaml b/dd-trace-py/releasenotes/notes/ai-guard-sds-sdk-response-15343d1ea9397456.yaml
similarity index 100%
rename from releasenotes/notes/ai-guard-sds-sdk-response-15343d1ea9397456.yaml
rename to dd-trace-py/releasenotes/notes/ai-guard-sds-sdk-response-15343d1ea9397456.yaml
diff --git a/releasenotes/notes/ai-guard-strands-agents-hook-provider-f5083a32f4cd9ac7.yaml b/dd-trace-py/releasenotes/notes/ai-guard-strands-agents-hook-provider-f5083a32f4cd9ac7.yaml
similarity index 100%
rename from releasenotes/notes/ai-guard-strands-agents-hook-provider-f5083a32f4cd9ac7.yaml
rename to dd-trace-py/releasenotes/notes/ai-guard-strands-agents-hook-provider-f5083a32f4cd9ac7.yaml
diff --git a/releasenotes/notes/ai-guard-strands-lazy-import-5af11784e3599038.yaml b/dd-trace-py/releasenotes/notes/ai-guard-strands-lazy-import-5af11784e3599038.yaml
similarity index 100%
rename from releasenotes/notes/ai-guard-strands-lazy-import-5af11784e3599038.yaml
rename to dd-trace-py/releasenotes/notes/ai-guard-strands-lazy-import-5af11784e3599038.yaml
diff --git a/releasenotes/notes/ai-guard-tag-probs-response-70b0145bfe6db459.yaml b/dd-trace-py/releasenotes/notes/ai-guard-tag-probs-response-70b0145bfe6db459.yaml
similarity index 100%
rename from releasenotes/notes/ai-guard-tag-probs-response-70b0145bfe6db459.yaml
rename to dd-trace-py/releasenotes/notes/ai-guard-tag-probs-response-70b0145bfe6db459.yaml
diff --git a/releasenotes/notes/aiohttp-98ae9ce70dda1dbc.yaml b/dd-trace-py/releasenotes/notes/aiohttp-98ae9ce70dda1dbc.yaml
similarity index 100%
rename from releasenotes/notes/aiohttp-98ae9ce70dda1dbc.yaml
rename to dd-trace-py/releasenotes/notes/aiohttp-98ae9ce70dda1dbc.yaml
diff --git a/releasenotes/notes/aiohttp-client-session-base-url-7109a5908dbddf58.yaml b/dd-trace-py/releasenotes/notes/aiohttp-client-session-base-url-7109a5908dbddf58.yaml
similarity index 100%
rename from releasenotes/notes/aiohttp-client-session-base-url-7109a5908dbddf58.yaml
rename to dd-trace-py/releasenotes/notes/aiohttp-client-session-base-url-7109a5908dbddf58.yaml
diff --git a/releasenotes/notes/aiohttp-remove-1.x-7a899e50dff73357.yaml b/dd-trace-py/releasenotes/notes/aiohttp-remove-1.x-7a899e50dff73357.yaml
similarity index 100%
rename from releasenotes/notes/aiohttp-remove-1.x-7a899e50dff73357.yaml
rename to dd-trace-py/releasenotes/notes/aiohttp-remove-1.x-7a899e50dff73357.yaml
diff --git a/releasenotes/notes/aiohttp-streamresponse-3ca7e43a890b4940.yaml b/dd-trace-py/releasenotes/notes/aiohttp-streamresponse-3ca7e43a890b4940.yaml
similarity index 100%
rename from releasenotes/notes/aiohttp-streamresponse-3ca7e43a890b4940.yaml
rename to dd-trace-py/releasenotes/notes/aiohttp-streamresponse-3ca7e43a890b4940.yaml
diff --git a/releasenotes/notes/aiohttp_jinja2-25d9a7b4e621fad2.yaml b/dd-trace-py/releasenotes/notes/aiohttp_jinja2-25d9a7b4e621fad2.yaml
similarity index 100%
rename from releasenotes/notes/aiohttp_jinja2-25d9a7b4e621fad2.yaml
rename to dd-trace-py/releasenotes/notes/aiohttp_jinja2-25d9a7b4e621fad2.yaml
diff --git a/releasenotes/notes/aiohttp_jinja2-fa35ccf6fc42814c.yaml b/dd-trace-py/releasenotes/notes/aiohttp_jinja2-fa35ccf6fc42814c.yaml
similarity index 100%
rename from releasenotes/notes/aiohttp_jinja2-fa35ccf6fc42814c.yaml
rename to dd-trace-py/releasenotes/notes/aiohttp_jinja2-fa35ccf6fc42814c.yaml
diff --git a/releasenotes/notes/aiokafka-dsm-support-fe2cb858c43b68df.yaml b/dd-trace-py/releasenotes/notes/aiokafka-dsm-support-fe2cb858c43b68df.yaml
similarity index 100%
rename from releasenotes/notes/aiokafka-dsm-support-fe2cb858c43b68df.yaml
rename to dd-trace-py/releasenotes/notes/aiokafka-dsm-support-fe2cb858c43b68df.yaml
diff --git a/releasenotes/notes/aiopg-0160-67bac7e073e4bbf9.yaml b/dd-trace-py/releasenotes/notes/aiopg-0160-67bac7e073e4bbf9.yaml
similarity index 100%
rename from releasenotes/notes/aiopg-0160-67bac7e073e4bbf9.yaml
rename to dd-trace-py/releasenotes/notes/aiopg-0160-67bac7e073e4bbf9.yaml
diff --git a/releasenotes/notes/aiopg-version-update-b10995a944fb5f91.yaml b/dd-trace-py/releasenotes/notes/aiopg-version-update-b10995a944fb5f91.yaml
similarity index 100%
rename from releasenotes/notes/aiopg-version-update-b10995a944fb5f91.yaml
rename to dd-trace-py/releasenotes/notes/aiopg-version-update-b10995a944fb5f91.yaml
diff --git a/releasenotes/notes/aioredis-integration-65c72aefff9d814c.yaml b/dd-trace-py/releasenotes/notes/aioredis-integration-65c72aefff9d814c.yaml
similarity index 100%
rename from releasenotes/notes/aioredis-integration-65c72aefff9d814c.yaml
rename to dd-trace-py/releasenotes/notes/aioredis-integration-65c72aefff9d814c.yaml
diff --git a/releasenotes/notes/algoliasearch-dangling-ref-e7a5086104d1761b.yaml b/dd-trace-py/releasenotes/notes/algoliasearch-dangling-ref-e7a5086104d1761b.yaml
similarity index 100%
rename from releasenotes/notes/algoliasearch-dangling-ref-e7a5086104d1761b.yaml
rename to dd-trace-py/releasenotes/notes/algoliasearch-dangling-ref-e7a5086104d1761b.yaml
diff --git a/releasenotes/notes/allow-mini-agent-to-run-on-all-hosting-plans-5e8df7330c108d71.yaml b/dd-trace-py/releasenotes/notes/allow-mini-agent-to-run-on-all-hosting-plans-5e8df7330c108d71.yaml
similarity index 100%
rename from releasenotes/notes/allow-mini-agent-to-run-on-all-hosting-plans-5e8df7330c108d71.yaml
rename to dd-trace-py/releasenotes/notes/allow-mini-agent-to-run-on-all-hosting-plans-5e8df7330c108d71.yaml
diff --git a/releasenotes/notes/always-add-p-to-ts-ff6c6c68c3cb9bfc.yaml b/dd-trace-py/releasenotes/notes/always-add-p-to-ts-ff6c6c68c3cb9bfc.yaml
similarity index 100%
rename from releasenotes/notes/always-add-p-to-ts-ff6c6c68c3cb9bfc.yaml
rename to dd-trace-py/releasenotes/notes/always-add-p-to-ts-ff6c6c68c3cb9bfc.yaml
diff --git a/releasenotes/notes/always_send_trace_to_agent-f5dad70a40aa92a9.yaml b/dd-trace-py/releasenotes/notes/always_send_trace_to_agent-f5dad70a40aa92a9.yaml
similarity index 100%
rename from releasenotes/notes/always_send_trace_to_agent-f5dad70a40aa92a9.yaml
rename to dd-trace-py/releasenotes/notes/always_send_trace_to_agent-f5dad70a40aa92a9.yaml
diff --git a/releasenotes/notes/annotate-update-dict-6ef6028ecbf0845d.yaml b/dd-trace-py/releasenotes/notes/annotate-update-dict-6ef6028ecbf0845d.yaml
similarity index 100%
rename from releasenotes/notes/annotate-update-dict-6ef6028ecbf0845d.yaml
rename to dd-trace-py/releasenotes/notes/annotate-update-dict-6ef6028ecbf0845d.yaml
diff --git a/releasenotes/notes/annotation-context-fixes-9fead4cbc6ebfde6.yaml b/dd-trace-py/releasenotes/notes/annotation-context-fixes-9fead4cbc6ebfde6.yaml
similarity index 100%
rename from releasenotes/notes/annotation-context-fixes-9fead4cbc6ebfde6.yaml
rename to dd-trace-py/releasenotes/notes/annotation-context-fixes-9fead4cbc6ebfde6.yaml
diff --git a/releasenotes/notes/annotation-context-modify-name-and-prompt-cc74b3b268983181.yaml b/dd-trace-py/releasenotes/notes/annotation-context-modify-name-and-prompt-cc74b3b268983181.yaml
similarity index 100%
rename from releasenotes/notes/annotation-context-modify-name-and-prompt-cc74b3b268983181.yaml
rename to dd-trace-py/releasenotes/notes/annotation-context-modify-name-and-prompt-cc74b3b268983181.yaml
diff --git a/releasenotes/notes/ant-p-cache-3d4001a431cedd67.yaml b/dd-trace-py/releasenotes/notes/ant-p-cache-3d4001a431cedd67.yaml
similarity index 100%
rename from releasenotes/notes/ant-p-cache-3d4001a431cedd67.yaml
rename to dd-trace-py/releasenotes/notes/ant-p-cache-3d4001a431cedd67.yaml
diff --git a/releasenotes/notes/anthropic-tool-usage-4d8b46cbe7173979.yaml b/dd-trace-py/releasenotes/notes/anthropic-tool-usage-4d8b46cbe7173979.yaml
similarity index 100%
rename from releasenotes/notes/anthropic-tool-usage-4d8b46cbe7173979.yaml
rename to dd-trace-py/releasenotes/notes/anthropic-tool-usage-4d8b46cbe7173979.yaml
diff --git a/releasenotes/notes/api10-ed802d03b6067b57.yaml b/dd-trace-py/releasenotes/notes/api10-ed802d03b6067b57.yaml
similarity index 100%
rename from releasenotes/notes/api10-ed802d03b6067b57.yaml
rename to dd-trace-py/releasenotes/notes/api10-ed802d03b6067b57.yaml
diff --git a/releasenotes/notes/api10_for_requests-32fe58c2c60064b2.yaml b/dd-trace-py/releasenotes/notes/api10_for_requests-32fe58c2c60064b2.yaml
similarity index 100%
rename from releasenotes/notes/api10_for_requests-32fe58c2c60064b2.yaml
rename to dd-trace-py/releasenotes/notes/api10_for_requests-32fe58c2c60064b2.yaml
diff --git a/releasenotes/notes/api10_redirect-d7863891c7cc8d5f.yaml b/dd-trace-py/releasenotes/notes/api10_redirect-d7863891c7cc8d5f.yaml
similarity index 100%
rename from releasenotes/notes/api10_redirect-d7863891c7cc8d5f.yaml
rename to dd-trace-py/releasenotes/notes/api10_redirect-d7863891c7cc8d5f.yaml
diff --git a/releasenotes/notes/api10_status_code-deb7bbc4c0c2a68e.yaml b/dd-trace-py/releasenotes/notes/api10_status_code-deb7bbc4c0c2a68e.yaml
similarity index 100%
rename from releasenotes/notes/api10_status_code-deb7bbc4c0c2a68e.yaml
rename to dd-trace-py/releasenotes/notes/api10_status_code-deb7bbc4c0c2a68e.yaml
diff --git a/releasenotes/notes/api_security_available-63d8f7829e512405.yaml b/dd-trace-py/releasenotes/notes/api_security_available-63d8f7829e512405.yaml
similarity index 100%
rename from releasenotes/notes/api_security_available-63d8f7829e512405.yaml
rename to dd-trace-py/releasenotes/notes/api_security_available-63d8f7829e512405.yaml
diff --git a/releasenotes/notes/api_security_for_fastapi-4fc37050ed19ed6d.yaml b/dd-trace-py/releasenotes/notes/api_security_for_fastapi-4fc37050ed19ed6d.yaml
similarity index 100%
rename from releasenotes/notes/api_security_for_fastapi-4fc37050ed19ed6d.yaml
rename to dd-trace-py/releasenotes/notes/api_security_for_fastapi-4fc37050ed19ed6d.yaml
diff --git a/releasenotes/notes/api_security_standalone_mode_ee9ab5c9ec585404.yaml b/dd-trace-py/releasenotes/notes/api_security_standalone_mode_ee9ab5c9ec585404.yaml
similarity index 100%
rename from releasenotes/notes/api_security_standalone_mode_ee9ab5c9ec585404.yaml
rename to dd-trace-py/releasenotes/notes/api_security_standalone_mode_ee9ab5c9ec585404.yaml
diff --git a/releasenotes/notes/appsec-ai-guard-litellm-guardrail-85e80a6ed67180af.yaml b/dd-trace-py/releasenotes/notes/appsec-ai-guard-litellm-guardrail-85e80a6ed67180af.yaml
similarity index 100%
rename from releasenotes/notes/appsec-ai-guard-litellm-guardrail-85e80a6ed67180af.yaml
rename to dd-trace-py/releasenotes/notes/appsec-ai-guard-litellm-guardrail-85e80a6ed67180af.yaml
diff --git a/releasenotes/notes/appsec-deepcopy-error-0f898629251881d2.yaml b/dd-trace-py/releasenotes/notes/appsec-deepcopy-error-0f898629251881d2.yaml
similarity index 100%
rename from releasenotes/notes/appsec-deepcopy-error-0f898629251881d2.yaml
rename to dd-trace-py/releasenotes/notes/appsec-deepcopy-error-0f898629251881d2.yaml
diff --git a/releasenotes/notes/appsec-django-login-anonymous-user-fix-3c1faae6df4106e9.yaml b/dd-trace-py/releasenotes/notes/appsec-django-login-anonymous-user-fix-3c1faae6df4106e9.yaml
similarity index 100%
rename from releasenotes/notes/appsec-django-login-anonymous-user-fix-3c1faae6df4106e9.yaml
rename to dd-trace-py/releasenotes/notes/appsec-django-login-anonymous-user-fix-3c1faae6df4106e9.yaml
diff --git a/releasenotes/notes/appsec-fix-waf-concurrent-access-memory-corruption-a5a06cc057be4c0f.yaml b/dd-trace-py/releasenotes/notes/appsec-fix-waf-concurrent-access-memory-corruption-a5a06cc057be4c0f.yaml
similarity index 100%
rename from releasenotes/notes/appsec-fix-waf-concurrent-access-memory-corruption-a5a06cc057be4c0f.yaml
rename to dd-trace-py/releasenotes/notes/appsec-fix-waf-concurrent-access-memory-corruption-a5a06cc057be4c0f.yaml
diff --git a/releasenotes/notes/appsec-report-tags-on-entry-span-7b43ae9779d05d17.yaml b/dd-trace-py/releasenotes/notes/appsec-report-tags-on-entry-span-7b43ae9779d05d17.yaml
similarity index 100%
rename from releasenotes/notes/appsec-report-tags-on-entry-span-7b43ae9779d05d17.yaml
rename to dd-trace-py/releasenotes/notes/appsec-report-tags-on-entry-span-7b43ae9779d05d17.yaml
diff --git a/releasenotes/notes/appsec-sca-env-var-telemetry-1f46bea88a86fc39.yaml b/dd-trace-py/releasenotes/notes/appsec-sca-env-var-telemetry-1f46bea88a86fc39.yaml
similarity index 100%
rename from releasenotes/notes/appsec-sca-env-var-telemetry-1f46bea88a86fc39.yaml
rename to dd-trace-py/releasenotes/notes/appsec-sca-env-var-telemetry-1f46bea88a86fc39.yaml
diff --git a/releasenotes/notes/asgi-bc983a8dfffe823e.yaml b/dd-trace-py/releasenotes/notes/asgi-bc983a8dfffe823e.yaml
similarity index 100%
rename from releasenotes/notes/asgi-bc983a8dfffe823e.yaml
rename to dd-trace-py/releasenotes/notes/asgi-bc983a8dfffe823e.yaml
diff --git a/releasenotes/notes/asgi-exception-group-catching-5d5132b367b01f4b.yaml b/dd-trace-py/releasenotes/notes/asgi-exception-group-catching-5d5132b367b01f4b.yaml
similarity index 100%
rename from releasenotes/notes/asgi-exception-group-catching-5d5132b367b01f4b.yaml
rename to dd-trace-py/releasenotes/notes/asgi-exception-group-catching-5d5132b367b01f4b.yaml
diff --git a/releasenotes/notes/asgi-resource-obfuscation-404-d77e8abd660c8132.yaml b/dd-trace-py/releasenotes/notes/asgi-resource-obfuscation-404-d77e8abd660c8132.yaml
similarity index 100%
rename from releasenotes/notes/asgi-resource-obfuscation-404-d77e8abd660c8132.yaml
rename to dd-trace-py/releasenotes/notes/asgi-resource-obfuscation-404-d77e8abd660c8132.yaml
diff --git a/releasenotes/notes/asgi-span-19e772cb2f09ef4d.yaml b/dd-trace-py/releasenotes/notes/asgi-span-19e772cb2f09ef4d.yaml
similarity index 100%
rename from releasenotes/notes/asgi-span-19e772cb2f09ef4d.yaml
rename to dd-trace-py/releasenotes/notes/asgi-span-19e772cb2f09ef4d.yaml
diff --git a/releasenotes/notes/asgi-support-websockets-f970956661062882.yaml b/dd-trace-py/releasenotes/notes/asgi-support-websockets-f970956661062882.yaml
similarity index 100%
rename from releasenotes/notes/asgi-support-websockets-f970956661062882.yaml
rename to dd-trace-py/releasenotes/notes/asgi-support-websockets-f970956661062882.yaml
diff --git a/releasenotes/notes/asgi-websocket-default-92527e70c3ba4dc1.yaml b/dd-trace-py/releasenotes/notes/asgi-websocket-default-92527e70c3ba4dc1.yaml
similarity index 100%
rename from releasenotes/notes/asgi-websocket-default-92527e70c3ba4dc1.yaml
rename to dd-trace-py/releasenotes/notes/asgi-websocket-default-92527e70c3ba4dc1.yaml
diff --git a/releasenotes/notes/asgi-websocket-tracing-support-0b785b921385dfeb.yaml b/dd-trace-py/releasenotes/notes/asgi-websocket-tracing-support-0b785b921385dfeb.yaml
similarity index 100%
rename from releasenotes/notes/asgi-websocket-tracing-support-0b785b921385dfeb.yaml
rename to dd-trace-py/releasenotes/notes/asgi-websocket-tracing-support-0b785b921385dfeb.yaml
diff --git a/releasenotes/notes/asm-1-click-activation-with-RCM-6a2431949768b73b.yaml b/dd-trace-py/releasenotes/notes/asm-1-click-activation-with-RCM-6a2431949768b73b.yaml
similarity index 100%
rename from releasenotes/notes/asm-1-click-activation-with-RCM-6a2431949768b73b.yaml
rename to dd-trace-py/releasenotes/notes/asm-1-click-activation-with-RCM-6a2431949768b73b.yaml
diff --git a/releasenotes/notes/asm-1-click-activation-with-RCM-by-default-92233ac7f60292e0.yaml b/dd-trace-py/releasenotes/notes/asm-1-click-activation-with-RCM-by-default-92233ac7f60292e0.yaml
similarity index 100%
rename from releasenotes/notes/asm-1-click-activation-with-RCM-by-default-92233ac7f60292e0.yaml
rename to dd-trace-py/releasenotes/notes/asm-1-click-activation-with-RCM-by-default-92233ac7f60292e0.yaml
diff --git a/releasenotes/notes/asm-add-http-route-for-flask-8b13c721e2f7543b.yaml b/dd-trace-py/releasenotes/notes/asm-add-http-route-for-flask-8b13c721e2f7543b.yaml
similarity index 100%
rename from releasenotes/notes/asm-add-http-route-for-flask-8b13c721e2f7543b.yaml
rename to dd-trace-py/releasenotes/notes/asm-add-http-route-for-flask-8b13c721e2f7543b.yaml
diff --git a/releasenotes/notes/asm-add-user-information-to-traces-27658759829e7782.yaml b/dd-trace-py/releasenotes/notes/asm-add-user-information-to-traces-27658759829e7782.yaml
similarity index 100%
rename from releasenotes/notes/asm-add-user-information-to-traces-27658759829e7782.yaml
rename to dd-trace-py/releasenotes/notes/asm-add-user-information-to-traces-27658759829e7782.yaml
diff --git a/releasenotes/notes/asm-automatic-login-evens-flask-login-f3daffc65a5ce830.yaml b/dd-trace-py/releasenotes/notes/asm-automatic-login-evens-flask-login-f3daffc65a5ce830.yaml
similarity index 100%
rename from releasenotes/notes/asm-automatic-login-evens-flask-login-f3daffc65a5ce830.yaml
rename to dd-trace-py/releasenotes/notes/asm-automatic-login-evens-flask-login-f3daffc65a5ce830.yaml
diff --git a/releasenotes/notes/asm-avoid-idna-d724dce73afafa93.yaml b/dd-trace-py/releasenotes/notes/asm-avoid-idna-d724dce73afafa93.yaml
similarity index 100%
rename from releasenotes/notes/asm-avoid-idna-d724dce73afafa93.yaml
rename to dd-trace-py/releasenotes/notes/asm-avoid-idna-d724dce73afafa93.yaml
diff --git a/releasenotes/notes/asm-avoid-json-decode-error-31479891110bcb55.yaml b/dd-trace-py/releasenotes/notes/asm-avoid-json-decode-error-31479891110bcb55.yaml
similarity index 100%
rename from releasenotes/notes/asm-avoid-json-decode-error-31479891110bcb55.yaml
rename to dd-trace-py/releasenotes/notes/asm-avoid-json-decode-error-31479891110bcb55.yaml
diff --git a/releasenotes/notes/asm-avoid-subprocess-iast-import-2e4b354d5880de40.yaml b/dd-trace-py/releasenotes/notes/asm-avoid-subprocess-iast-import-2e4b354d5880de40.yaml
similarity index 100%
rename from releasenotes/notes/asm-avoid-subprocess-iast-import-2e4b354d5880de40.yaml
rename to dd-trace-py/releasenotes/notes/asm-avoid-subprocess-iast-import-2e4b354d5880de40.yaml
diff --git a/releasenotes/notes/asm-avoid-subprocess-iast-import-d56d9bf2f37bdaa4.yaml b/dd-trace-py/releasenotes/notes/asm-avoid-subprocess-iast-import-d56d9bf2f37bdaa4.yaml
similarity index 100%
rename from releasenotes/notes/asm-avoid-subprocess-iast-import-d56d9bf2f37bdaa4.yaml
rename to dd-trace-py/releasenotes/notes/asm-avoid-subprocess-iast-import-d56d9bf2f37bdaa4.yaml
diff --git a/releasenotes/notes/asm-blocking-fixes-fce3bb6a81a2d186.yaml b/dd-trace-py/releasenotes/notes/asm-blocking-fixes-fce3bb6a81a2d186.yaml
similarity index 100%
rename from releasenotes/notes/asm-blocking-fixes-fce3bb6a81a2d186.yaml
rename to dd-trace-py/releasenotes/notes/asm-blocking-fixes-fce3bb6a81a2d186.yaml
diff --git a/releasenotes/notes/asm-boto-denylist-9ea0dee3a33fff7c.yaml b/dd-trace-py/releasenotes/notes/asm-boto-denylist-9ea0dee3a33fff7c.yaml
similarity index 100%
rename from releasenotes/notes/asm-boto-denylist-9ea0dee3a33fff7c.yaml
rename to dd-trace-py/releasenotes/notes/asm-boto-denylist-9ea0dee3a33fff7c.yaml
diff --git a/releasenotes/notes/asm-clear-ddwaf-ctx-on-span-finish-4d8b7c7e818ae5d7.yaml b/dd-trace-py/releasenotes/notes/asm-clear-ddwaf-ctx-on-span-finish-4d8b7c7e818ae5d7.yaml
similarity index 100%
rename from releasenotes/notes/asm-clear-ddwaf-ctx-on-span-finish-4d8b7c7e818ae5d7.yaml
rename to dd-trace-py/releasenotes/notes/asm-clear-ddwaf-ctx-on-span-finish-4d8b7c7e818ae5d7.yaml
diff --git a/releasenotes/notes/asm-collect-header-ip-494f489b1778b6ed.yaml b/dd-trace-py/releasenotes/notes/asm-collect-header-ip-494f489b1778b6ed.yaml
similarity index 100%
rename from releasenotes/notes/asm-collect-header-ip-494f489b1778b6ed.yaml
rename to dd-trace-py/releasenotes/notes/asm-collect-header-ip-494f489b1778b6ed.yaml
diff --git a/releasenotes/notes/asm-configure-sensitive-data-obfuscator-4bf70dcccb9f6350.yaml b/dd-trace-py/releasenotes/notes/asm-configure-sensitive-data-obfuscator-4bf70dcccb9f6350.yaml
similarity index 100%
rename from releasenotes/notes/asm-configure-sensitive-data-obfuscator-4bf70dcccb9f6350.yaml
rename to dd-trace-py/releasenotes/notes/asm-configure-sensitive-data-obfuscator-4bf70dcccb9f6350.yaml
diff --git a/releasenotes/notes/asm-dd-client-enabled-env-var-0d418972a04728f2.yaml b/dd-trace-py/releasenotes/notes/asm-dd-client-enabled-env-var-0d418972a04728f2.yaml
similarity index 100%
rename from releasenotes/notes/asm-dd-client-enabled-env-var-0d418972a04728f2.yaml
rename to dd-trace-py/releasenotes/notes/asm-dd-client-enabled-env-var-0d418972a04728f2.yaml
diff --git a/releasenotes/notes/asm-ddtracerun-info-bf2380675fe1c721.yaml b/dd-trace-py/releasenotes/notes/asm-ddtracerun-info-bf2380675fe1c721.yaml
similarity index 100%
rename from releasenotes/notes/asm-ddtracerun-info-bf2380675fe1c721.yaml
rename to dd-trace-py/releasenotes/notes/asm-ddtracerun-info-bf2380675fe1c721.yaml
diff --git a/releasenotes/notes/asm-dependencies-metrics-0f357e2613452be2.yaml b/dd-trace-py/releasenotes/notes/asm-dependencies-metrics-0f357e2613452be2.yaml
similarity index 100%
rename from releasenotes/notes/asm-dependencies-metrics-0f357e2613452be2.yaml
rename to dd-trace-py/releasenotes/notes/asm-dependencies-metrics-0f357e2613452be2.yaml
diff --git a/releasenotes/notes/asm-detect-attack-on-body-3fe45bc066dcc680.yaml b/dd-trace-py/releasenotes/notes/asm-detect-attack-on-body-3fe45bc066dcc680.yaml
similarity index 100%
rename from releasenotes/notes/asm-detect-attack-on-body-3fe45bc066dcc680.yaml
rename to dd-trace-py/releasenotes/notes/asm-detect-attack-on-body-3fe45bc066dcc680.yaml
diff --git a/releasenotes/notes/asm-detect-attacks-on-the-server.request.cookies-c138bee409617ff0.yaml b/dd-trace-py/releasenotes/notes/asm-detect-attacks-on-the-server.request.cookies-c138bee409617ff0.yaml
similarity index 100%
rename from releasenotes/notes/asm-detect-attacks-on-the-server.request.cookies-c138bee409617ff0.yaml
rename to dd-trace-py/releasenotes/notes/asm-detect-attacks-on-the-server.request.cookies-c138bee409617ff0.yaml
diff --git a/releasenotes/notes/asm-django-ip-blocking-e5d6d96eeb139df3.yaml b/dd-trace-py/releasenotes/notes/asm-django-ip-blocking-e5d6d96eeb139df3.yaml
similarity index 100%
rename from releasenotes/notes/asm-django-ip-blocking-e5d6d96eeb139df3.yaml
rename to dd-trace-py/releasenotes/notes/asm-django-ip-blocking-e5d6d96eeb139df3.yaml
diff --git a/releasenotes/notes/asm-django-session-id-on-request-span-853d812e1ac34cd3.yaml b/dd-trace-py/releasenotes/notes/asm-django-session-id-on-request-span-853d812e1ac34cd3.yaml
similarity index 100%
rename from releasenotes/notes/asm-django-session-id-on-request-span-853d812e1ac34cd3.yaml
rename to dd-trace-py/releasenotes/notes/asm-django-session-id-on-request-span-853d812e1ac34cd3.yaml
diff --git a/releasenotes/notes/asm-event-tracking-sdk-d7e8516511c73589.yaml b/dd-trace-py/releasenotes/notes/asm-event-tracking-sdk-d7e8516511c73589.yaml
similarity index 100%
rename from releasenotes/notes/asm-event-tracking-sdk-d7e8516511c73589.yaml
rename to dd-trace-py/releasenotes/notes/asm-event-tracking-sdk-d7e8516511c73589.yaml
diff --git a/releasenotes/notes/asm-feat-detect-attack-on-pylons-body-593fb0819259e6ad.yaml b/dd-trace-py/releasenotes/notes/asm-feat-detect-attack-on-pylons-body-593fb0819259e6ad.yaml
similarity index 100%
rename from releasenotes/notes/asm-feat-detect-attack-on-pylons-body-593fb0819259e6ad.yaml
rename to dd-trace-py/releasenotes/notes/asm-feat-detect-attack-on-pylons-body-593fb0819259e6ad.yaml
diff --git a/releasenotes/notes/asm-fix-chunked-requests-1f703ab103c1e65f.yaml b/dd-trace-py/releasenotes/notes/asm-fix-chunked-requests-1f703ab103c1e65f.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-chunked-requests-1f703ab103c1e65f.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-chunked-requests-1f703ab103c1e65f.yaml
diff --git a/releasenotes/notes/asm-fix-empty-ranges-decode-38aa73230a0e2a19.yaml b/dd-trace-py/releasenotes/notes/asm-fix-empty-ranges-decode-38aa73230a0e2a19.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-empty-ranges-decode-38aa73230a0e2a19.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-empty-ranges-decode-38aa73230a0e2a19.yaml
diff --git a/releasenotes/notes/asm-fix-flask-body-blocking-aa4836d70f8e1ea8.yaml b/dd-trace-py/releasenotes/notes/asm-fix-flask-body-blocking-aa4836d70f8e1ea8.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-flask-body-blocking-aa4836d70f8e1ea8.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-flask-body-blocking-aa4836d70f8e1ea8.yaml
diff --git a/releasenotes/notes/asm-fix-ipaddress-actorip-only-on-attack-c118a0560c0c0119.yaml b/dd-trace-py/releasenotes/notes/asm-fix-ipaddress-actorip-only-on-attack-c118a0560c0c0119.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-ipaddress-actorip-only-on-attack-c118a0560c0c0119.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-ipaddress-actorip-only-on-attack-c118a0560c0c0119.yaml
diff --git a/releasenotes/notes/asm-fix-json-decode-error-none-af2c99becf9041a4.yaml b/dd-trace-py/releasenotes/notes/asm-fix-json-decode-error-none-af2c99becf9041a4.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-json-decode-error-none-af2c99becf9041a4.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-json-decode-error-none-af2c99becf9041a4.yaml
diff --git a/releasenotes/notes/asm-fix-login-failure-events-4c79ea4b5c6f5e29.yaml b/dd-trace-py/releasenotes/notes/asm-fix-login-failure-events-4c79ea4b5c6f5e29.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-login-failure-events-4c79ea4b5c6f5e29.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-login-failure-events-4c79ea4b5c6f5e29.yaml
diff --git a/releasenotes/notes/asm-fix-python-2-error-reading-ddwaf-rules-d3653031f2ba84ba.yaml b/dd-trace-py/releasenotes/notes/asm-fix-python-2-error-reading-ddwaf-rules-d3653031f2ba84ba.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-python-2-error-reading-ddwaf-rules-d3653031f2ba84ba.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-python-2-error-reading-ddwaf-rules-d3653031f2ba84ba.yaml
diff --git a/releasenotes/notes/asm-fix-reset-wsgi-input-035e0a7d917af2b2.yaml b/dd-trace-py/releasenotes/notes/asm-fix-reset-wsgi-input-035e0a7d917af2b2.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-reset-wsgi-input-035e0a7d917af2b2.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-reset-wsgi-input-035e0a7d917af2b2.yaml
diff --git a/releasenotes/notes/asm-fix-wrong-source-on-taint_structure-20372c6974c70313.yaml b/dd-trace-py/releasenotes/notes/asm-fix-wrong-source-on-taint_structure-20372c6974c70313.yaml
similarity index 100%
rename from releasenotes/notes/asm-fix-wrong-source-on-taint_structure-20372c6974c70313.yaml
rename to dd-trace-py/releasenotes/notes/asm-fix-wrong-source-on-taint_structure-20372c6974c70313.yaml
diff --git a/releasenotes/notes/asm-flask-ip-blocking-a2416d04cacf71f3.yaml b/dd-trace-py/releasenotes/notes/asm-flask-ip-blocking-a2416d04cacf71f3.yaml
similarity index 100%
rename from releasenotes/notes/asm-flask-ip-blocking-a2416d04cacf71f3.yaml
rename to dd-trace-py/releasenotes/notes/asm-flask-ip-blocking-a2416d04cacf71f3.yaml
diff --git a/releasenotes/notes/asm-gprc-not-none-788b4b435b931a11.yaml b/dd-trace-py/releasenotes/notes/asm-gprc-not-none-788b4b435b931a11.yaml
similarity index 100%
rename from releasenotes/notes/asm-gprc-not-none-788b4b435b931a11.yaml
rename to dd-trace-py/releasenotes/notes/asm-gprc-not-none-788b4b435b931a11.yaml
diff --git a/releasenotes/notes/asm-grpc-treats-support-025582704f96dc7d.yaml b/dd-trace-py/releasenotes/notes/asm-grpc-treats-support-025582704f96dc7d.yaml
similarity index 100%
rename from releasenotes/notes/asm-grpc-treats-support-025582704f96dc7d.yaml
rename to dd-trace-py/releasenotes/notes/asm-grpc-treats-support-025582704f96dc7d.yaml
diff --git a/releasenotes/notes/asm-iast-flask-patch-95c5358926e8e5ed.yaml b/dd-trace-py/releasenotes/notes/asm-iast-flask-patch-95c5358926e8e5ed.yaml
similarity index 100%
rename from releasenotes/notes/asm-iast-flask-patch-95c5358926e8e5ed.yaml
rename to dd-trace-py/releasenotes/notes/asm-iast-flask-patch-95c5358926e8e5ed.yaml
diff --git a/releasenotes/notes/asm-iast-report-scrubbing-ef2aa1d74f866656.yaml b/dd-trace-py/releasenotes/notes/asm-iast-report-scrubbing-ef2aa1d74f866656.yaml
similarity index 100%
rename from releasenotes/notes/asm-iast-report-scrubbing-ef2aa1d74f866656.yaml
rename to dd-trace-py/releasenotes/notes/asm-iast-report-scrubbing-ef2aa1d74f866656.yaml
diff --git a/releasenotes/notes/asm-insecure-cookies-bcf4d3268408b079.yaml b/dd-trace-py/releasenotes/notes/asm-insecure-cookies-bcf4d3268408b079.yaml
similarity index 100%
rename from releasenotes/notes/asm-insecure-cookies-bcf4d3268408b079.yaml
rename to dd-trace-py/releasenotes/notes/asm-insecure-cookies-bcf4d3268408b079.yaml
diff --git a/releasenotes/notes/asm-insecure-cookies-response-3c95331da890709e.yaml b/dd-trace-py/releasenotes/notes/asm-insecure-cookies-response-3c95331da890709e.yaml
similarity index 100%
rename from releasenotes/notes/asm-insecure-cookies-response-3c95331da890709e.yaml
rename to dd-trace-py/releasenotes/notes/asm-insecure-cookies-response-3c95331da890709e.yaml
diff --git a/releasenotes/notes/asm-ipaddress-consider-appsec-value-9a0948896645a4b1.yaml b/dd-trace-py/releasenotes/notes/asm-ipaddress-consider-appsec-value-9a0948896645a4b1.yaml
similarity index 100%
rename from releasenotes/notes/asm-ipaddress-consider-appsec-value-9a0948896645a4b1.yaml
rename to dd-trace-py/releasenotes/notes/asm-ipaddress-consider-appsec-value-9a0948896645a4b1.yaml
diff --git a/releasenotes/notes/asm-ipaddress-rfc-part-two-a546e8453cc8163a.yaml b/dd-trace-py/releasenotes/notes/asm-ipaddress-rfc-part-two-a546e8453cc8163a.yaml
similarity index 100%
rename from releasenotes/notes/asm-ipaddress-rfc-part-two-a546e8453cc8163a.yaml
rename to dd-trace-py/releasenotes/notes/asm-ipaddress-rfc-part-two-a546e8453cc8163a.yaml
diff --git a/releasenotes/notes/asm-loopback-fetch-5114b4c15bd3fa53.yaml b/dd-trace-py/releasenotes/notes/asm-loopback-fetch-5114b4c15bd3fa53.yaml
similarity index 100%
rename from releasenotes/notes/asm-loopback-fetch-5114b4c15bd3fa53.yaml
rename to dd-trace-py/releasenotes/notes/asm-loopback-fetch-5114b4c15bd3fa53.yaml
diff --git a/releasenotes/notes/asm-memleaks-0bd0a25284dd1b9b.yaml b/dd-trace-py/releasenotes/notes/asm-memleaks-0bd0a25284dd1b9b.yaml
similarity index 100%
rename from releasenotes/notes/asm-memleaks-0bd0a25284dd1b9b.yaml
rename to dd-trace-py/releasenotes/notes/asm-memleaks-0bd0a25284dd1b9b.yaml
diff --git a/releasenotes/notes/asm-missing-tag-custom-events-b4d4087a2a3ce660.yaml b/dd-trace-py/releasenotes/notes/asm-missing-tag-custom-events-b4d4087a2a3ce660.yaml
similarity index 100%
rename from releasenotes/notes/asm-missing-tag-custom-events-b4d4087a2a3ce660.yaml
rename to dd-trace-py/releasenotes/notes/asm-missing-tag-custom-events-b4d4087a2a3ce660.yaml
diff --git a/releasenotes/notes/asm-new-gprc-server-propagation-89812a5e161fe0f6.yaml b/dd-trace-py/releasenotes/notes/asm-new-gprc-server-propagation-89812a5e161fe0f6.yaml
similarity index 100%
rename from releasenotes/notes/asm-new-gprc-server-propagation-89812a5e161fe0f6.yaml
rename to dd-trace-py/releasenotes/notes/asm-new-gprc-server-propagation-89812a5e161fe0f6.yaml
diff --git a/releasenotes/notes/asm-open-disabled-090eefa08b8b69a4.yaml b/dd-trace-py/releasenotes/notes/asm-open-disabled-090eefa08b8b69a4.yaml
similarity index 100%
rename from releasenotes/notes/asm-open-disabled-090eefa08b8b69a4.yaml
rename to dd-trace-py/releasenotes/notes/asm-open-disabled-090eefa08b8b69a4.yaml
diff --git a/releasenotes/notes/asm-propagate-user-id-1b1f596f7442fd34.yaml b/dd-trace-py/releasenotes/notes/asm-propagate-user-id-1b1f596f7442fd34.yaml
similarity index 100%
rename from releasenotes/notes/asm-propagate-user-id-1b1f596f7442fd34.yaml
rename to dd-trace-py/releasenotes/notes/asm-propagate-user-id-1b1f596f7442fd34.yaml
diff --git a/releasenotes/notes/asm-pylons-detect-attacks-on-HTTP-query-9f68009da8051bc0.yaml b/dd-trace-py/releasenotes/notes/asm-pylons-detect-attacks-on-HTTP-query-9f68009da8051bc0.yaml
similarity index 100%
rename from releasenotes/notes/asm-pylons-detect-attacks-on-HTTP-query-9f68009da8051bc0.yaml
rename to dd-trace-py/releasenotes/notes/asm-pylons-detect-attacks-on-HTTP-query-9f68009da8051bc0.yaml
diff --git a/releasenotes/notes/asm-pylons-detect-attacks-on-cookies-ddda4822bde49a25.yaml b/dd-trace-py/releasenotes/notes/asm-pylons-detect-attacks-on-cookies-ddda4822bde49a25.yaml
similarity index 100%
rename from releasenotes/notes/asm-pylons-detect-attacks-on-cookies-ddda4822bde49a25.yaml
rename to dd-trace-py/releasenotes/notes/asm-pylons-detect-attacks-on-cookies-ddda4822bde49a25.yaml
diff --git a/releasenotes/notes/asm-pylons-detect-attacks-on-path-params-760837978a2e3f32.yaml b/dd-trace-py/releasenotes/notes/asm-pylons-detect-attacks-on-path-params-760837978a2e3f32.yaml
similarity index 100%
rename from releasenotes/notes/asm-pylons-detect-attacks-on-path-params-760837978a2e3f32.yaml
rename to dd-trace-py/releasenotes/notes/asm-pylons-detect-attacks-on-path-params-760837978a2e3f32.yaml
diff --git a/releasenotes/notes/asm-pylons-report-http-method-d4a21ba111e75edd.yaml b/dd-trace-py/releasenotes/notes/asm-pylons-report-http-method-d4a21ba111e75edd.yaml
similarity index 100%
rename from releasenotes/notes/asm-pylons-report-http-method-d4a21ba111e75edd.yaml
rename to dd-trace-py/releasenotes/notes/asm-pylons-report-http-method-d4a21ba111e75edd.yaml
diff --git a/releasenotes/notes/asm-pylons-report-http-raw-uri-6a5f2c2351aaab6d.yaml b/dd-trace-py/releasenotes/notes/asm-pylons-report-http-raw-uri-6a5f2c2351aaab6d.yaml
similarity index 100%
rename from releasenotes/notes/asm-pylons-report-http-raw-uri-6a5f2c2351aaab6d.yaml
rename to dd-trace-py/releasenotes/notes/asm-pylons-report-http-raw-uri-6a5f2c2351aaab6d.yaml
diff --git a/releasenotes/notes/asm-rcm-feature-registration-21d79315c7a0feb7.yaml b/dd-trace-py/releasenotes/notes/asm-rcm-feature-registration-21d79315c7a0feb7.yaml
similarity index 100%
rename from releasenotes/notes/asm-rcm-feature-registration-21d79315c7a0feb7.yaml
rename to dd-trace-py/releasenotes/notes/asm-rcm-feature-registration-21d79315c7a0feb7.yaml
diff --git a/releasenotes/notes/asm-send-waf-metrics-over-telemetry-4208c7412e55cccd.yaml b/dd-trace-py/releasenotes/notes/asm-send-waf-metrics-over-telemetry-4208c7412e55cccd.yaml
similarity index 100%
rename from releasenotes/notes/asm-send-waf-metrics-over-telemetry-4208c7412e55cccd.yaml
rename to dd-trace-py/releasenotes/notes/asm-send-waf-metrics-over-telemetry-4208c7412e55cccd.yaml
diff --git a/releasenotes/notes/asm-ssrf-expanded-cc7d8abaa3f9c7dd.yaml b/dd-trace-py/releasenotes/notes/asm-ssrf-expanded-cc7d8abaa3f9c7dd.yaml
similarity index 100%
rename from releasenotes/notes/asm-ssrf-expanded-cc7d8abaa3f9c7dd.yaml
rename to dd-trace-py/releasenotes/notes/asm-ssrf-expanded-cc7d8abaa3f9c7dd.yaml
diff --git a/releasenotes/notes/asm-standalone-v2-upgrade.yaml b/dd-trace-py/releasenotes/notes/asm-standalone-v2-upgrade.yaml
similarity index 100%
rename from releasenotes/notes/asm-standalone-v2-upgrade.yaml
rename to dd-trace-py/releasenotes/notes/asm-standalone-v2-upgrade.yaml
diff --git a/releasenotes/notes/asm-subprocess-executions-479ab8fb59d9f312.yaml b/dd-trace-py/releasenotes/notes/asm-subprocess-executions-479ab8fb59d9f312.yaml
similarity index 100%
rename from releasenotes/notes/asm-subprocess-executions-479ab8fb59d9f312.yaml
rename to dd-trace-py/releasenotes/notes/asm-subprocess-executions-479ab8fb59d9f312.yaml
diff --git a/releasenotes/notes/asm-support-in-app-waf-metrics-report-4528e2b2574268cd.yaml b/dd-trace-py/releasenotes/notes/asm-support-in-app-waf-metrics-report-4528e2b2574268cd.yaml
similarity index 100%
rename from releasenotes/notes/asm-support-in-app-waf-metrics-report-4528e2b2574268cd.yaml
rename to dd-trace-py/releasenotes/notes/asm-support-in-app-waf-metrics-report-4528e2b2574268cd.yaml
diff --git a/releasenotes/notes/asm-tag-http-query-string-c7faba44b1402215.yaml b/dd-trace-py/releasenotes/notes/asm-tag-http-query-string-c7faba44b1402215.yaml
similarity index 100%
rename from releasenotes/notes/asm-tag-http-query-string-c7faba44b1402215.yaml
rename to dd-trace-py/releasenotes/notes/asm-tag-http-query-string-c7faba44b1402215.yaml
diff --git a/releasenotes/notes/asm-taint-grpc-messages-187537707bff7021.yaml b/dd-trace-py/releasenotes/notes/asm-taint-grpc-messages-187537707bff7021.yaml
similarity index 100%
rename from releasenotes/notes/asm-taint-grpc-messages-187537707bff7021.yaml
rename to dd-trace-py/releasenotes/notes/asm-taint-grpc-messages-187537707bff7021.yaml
diff --git a/releasenotes/notes/asm-update-ip-resolution-04c9d92ea3138051.yaml b/dd-trace-py/releasenotes/notes/asm-update-ip-resolution-04c9d92ea3138051.yaml
similarity index 100%
rename from releasenotes/notes/asm-update-ip-resolution-04c9d92ea3138051.yaml
rename to dd-trace-py/releasenotes/notes/asm-update-ip-resolution-04c9d92ea3138051.yaml
diff --git a/releasenotes/notes/asm-upgrade-libddwaf-cbebe158731bf7d9.yaml b/dd-trace-py/releasenotes/notes/asm-upgrade-libddwaf-cbebe158731bf7d9.yaml
similarity index 100%
rename from releasenotes/notes/asm-upgrade-libddwaf-cbebe158731bf7d9.yaml
rename to dd-trace-py/releasenotes/notes/asm-upgrade-libddwaf-cbebe158731bf7d9.yaml
diff --git a/releasenotes/notes/asm-user-id-blocking-5048b1cef07c80fd.yaml b/dd-trace-py/releasenotes/notes/asm-user-id-blocking-5048b1cef07c80fd.yaml
similarity index 100%
rename from releasenotes/notes/asm-user-id-blocking-5048b1cef07c80fd.yaml
rename to dd-trace-py/releasenotes/notes/asm-user-id-blocking-5048b1cef07c80fd.yaml
diff --git a/releasenotes/notes/asm_fix_headers-9bd1585200be8a2a.yaml b/dd-trace-py/releasenotes/notes/asm_fix_headers-9bd1585200be8a2a.yaml
similarity index 100%
rename from releasenotes/notes/asm_fix_headers-9bd1585200be8a2a.yaml
rename to dd-trace-py/releasenotes/notes/asm_fix_headers-9bd1585200be8a2a.yaml
diff --git a/releasenotes/notes/asm_fix_rc_capabilities_with_rule_file_set_in_env-3c24b75abbdf003c.yaml b/dd-trace-py/releasenotes/notes/asm_fix_rc_capabilities_with_rule_file_set_in_env-3c24b75abbdf003c.yaml
similarity index 100%
rename from releasenotes/notes/asm_fix_rc_capabilities_with_rule_file_set_in_env-3c24b75abbdf003c.yaml
rename to dd-trace-py/releasenotes/notes/asm_fix_rc_capabilities_with_rule_file_set_in_env-3c24b75abbdf003c.yaml
diff --git a/releasenotes/notes/asm_for_fast_api_chapter_1-e0f6f52afc02a5aa.yaml b/dd-trace-py/releasenotes/notes/asm_for_fast_api_chapter_1-e0f6f52afc02a5aa.yaml
similarity index 100%
rename from releasenotes/notes/asm_for_fast_api_chapter_1-e0f6f52afc02a5aa.yaml
rename to dd-trace-py/releasenotes/notes/asm_for_fast_api_chapter_1-e0f6f52afc02a5aa.yaml
diff --git a/releasenotes/notes/asm_trusted_ips-cd37d9c4cab70c24.yaml b/dd-trace-py/releasenotes/notes/asm_trusted_ips-cd37d9c4cab70c24.yaml
similarity index 100%
rename from releasenotes/notes/asm_trusted_ips-cd37d9c4cab70c24.yaml
rename to dd-trace-py/releasenotes/notes/asm_trusted_ips-cd37d9c4cab70c24.yaml
diff --git a/releasenotes/notes/asyncio-lock-14b10fa0f1e43ed3.yaml b/dd-trace-py/releasenotes/notes/asyncio-lock-14b10fa0f1e43ed3.yaml
similarity index 100%
rename from releasenotes/notes/asyncio-lock-14b10fa0f1e43ed3.yaml
rename to dd-trace-py/releasenotes/notes/asyncio-lock-14b10fa0f1e43ed3.yaml
diff --git a/releasenotes/notes/asyncio_fix-d279a20c05a2bf24.yaml b/dd-trace-py/releasenotes/notes/asyncio_fix-d279a20c05a2bf24.yaml
similarity index 100%
rename from releasenotes/notes/asyncio_fix-d279a20c05a2bf24.yaml
rename to dd-trace-py/releasenotes/notes/asyncio_fix-d279a20c05a2bf24.yaml
diff --git a/releasenotes/notes/asyncpg-45cdf83efdf9270d.yaml b/dd-trace-py/releasenotes/notes/asyncpg-45cdf83efdf9270d.yaml
similarity index 100%
rename from releasenotes/notes/asyncpg-45cdf83efdf9270d.yaml
rename to dd-trace-py/releasenotes/notes/asyncpg-45cdf83efdf9270d.yaml
diff --git a/releasenotes/notes/ato_fix__feature_flag_for_optional_user_info-28a1ce33eeb6a275.yaml b/dd-trace-py/releasenotes/notes/ato_fix__feature_flag_for_optional_user_info-28a1ce33eeb6a275.yaml
similarity index 100%
rename from releasenotes/notes/ato_fix__feature_flag_for_optional_user_info-28a1ce33eeb6a275.yaml
rename to dd-trace-py/releasenotes/notes/ato_fix__feature_flag_for_optional_user_info-28a1ce33eeb6a275.yaml
diff --git a/releasenotes/notes/ato_sdk2_track_user_fix_no_keep-b6b5206a81da6b36.yaml b/dd-trace-py/releasenotes/notes/ato_sdk2_track_user_fix_no_keep-b6b5206a81da6b36.yaml
similarity index 100%
rename from releasenotes/notes/ato_sdk2_track_user_fix_no_keep-b6b5206a81da6b36.yaml
rename to dd-trace-py/releasenotes/notes/ato_sdk2_track_user_fix_no_keep-b6b5206a81da6b36.yaml
diff --git a/releasenotes/notes/ato_sdk_v2-35c17dc258c5b690.yaml b/dd-trace-py/releasenotes/notes/ato_sdk_v2-35c17dc258c5b690.yaml
similarity index 100%
rename from releasenotes/notes/ato_sdk_v2-35c17dc258c5b690.yaml
rename to dd-trace-py/releasenotes/notes/ato_sdk_v2-35c17dc258c5b690.yaml
diff --git a/releasenotes/notes/attrs-libinject-ec10d2e8ad9ef34b.yaml b/dd-trace-py/releasenotes/notes/attrs-libinject-ec10d2e8ad9ef34b.yaml
similarity index 100%
rename from releasenotes/notes/attrs-libinject-ec10d2e8ad9ef34b.yaml
rename to dd-trace-py/releasenotes/notes/attrs-libinject-ec10d2e8ad9ef34b.yaml
diff --git a/releasenotes/notes/auto-adding-baggage-to-span-tags-0ec127de76ca97bf.yaml b/dd-trace-py/releasenotes/notes/auto-adding-baggage-to-span-tags-0ec127de76ca97bf.yaml
similarity index 100%
rename from releasenotes/notes/auto-adding-baggage-to-span-tags-0ec127de76ca97bf.yaml
rename to dd-trace-py/releasenotes/notes/auto-adding-baggage-to-span-tags-0ec127de76ca97bf.yaml
diff --git a/releasenotes/notes/automatic-user-login-events-ded104398ff85a1d.yaml b/dd-trace-py/releasenotes/notes/automatic-user-login-events-ded104398ff85a1d.yaml
similarity index 100%
rename from releasenotes/notes/automatic-user-login-events-ded104398ff85a1d.yaml
rename to dd-trace-py/releasenotes/notes/automatic-user-login-events-ded104398ff85a1d.yaml
diff --git a/releasenotes/notes/avoid-bad-bytecode-release-2c8cdb1fa0b20b77.yaml b/dd-trace-py/releasenotes/notes/avoid-bad-bytecode-release-2c8cdb1fa0b20b77.yaml
similarity index 100%
rename from releasenotes/notes/avoid-bad-bytecode-release-2c8cdb1fa0b20b77.yaml
rename to dd-trace-py/releasenotes/notes/avoid-bad-bytecode-release-2c8cdb1fa0b20b77.yaml
diff --git a/releasenotes/notes/avoid-overriding-couroutine-names-0852ea19200feb74.yaml b/dd-trace-py/releasenotes/notes/avoid-overriding-couroutine-names-0852ea19200feb74.yaml
similarity index 100%
rename from releasenotes/notes/avoid-overriding-couroutine-names-0852ea19200feb74.yaml
rename to dd-trace-py/releasenotes/notes/avoid-overriding-couroutine-names-0852ea19200feb74.yaml
diff --git a/releasenotes/notes/avoid-pickling-wrappers-3ec4681233ff9d32.yaml b/dd-trace-py/releasenotes/notes/avoid-pickling-wrappers-3ec4681233ff9d32.yaml
similarity index 100%
rename from releasenotes/notes/avoid-pickling-wrappers-3ec4681233ff9d32.yaml
rename to dd-trace-py/releasenotes/notes/avoid-pickling-wrappers-3ec4681233ff9d32.yaml
diff --git a/releasenotes/notes/avoid-using-deprecated-apis-internally-fd9c9ce9c52905af.yaml b/dd-trace-py/releasenotes/notes/avoid-using-deprecated-apis-internally-fd9c9ce9c52905af.yaml
similarity index 100%
rename from releasenotes/notes/avoid-using-deprecated-apis-internally-fd9c9ce9c52905af.yaml
rename to dd-trace-py/releasenotes/notes/avoid-using-deprecated-apis-internally-fd9c9ce9c52905af.yaml
diff --git a/releasenotes/notes/avoid-wrapt-two-fd3b8ad3057343ba.yaml b/dd-trace-py/releasenotes/notes/avoid-wrapt-two-fd3b8ad3057343ba.yaml
similarity index 100%
rename from releasenotes/notes/avoid-wrapt-two-fd3b8ad3057343ba.yaml
rename to dd-trace-py/releasenotes/notes/avoid-wrapt-two-fd3b8ad3057343ba.yaml
diff --git a/releasenotes/notes/avro-dsm-wrapper-fix-e5ec663d7cc7195f.yaml b/dd-trace-py/releasenotes/notes/avro-dsm-wrapper-fix-e5ec663d7cc7195f.yaml
similarity index 100%
rename from releasenotes/notes/avro-dsm-wrapper-fix-e5ec663d7cc7195f.yaml
rename to dd-trace-py/releasenotes/notes/avro-dsm-wrapper-fix-e5ec663d7cc7195f.yaml
diff --git a/releasenotes/notes/azure-cosmosdb-integration-5b87c89c6abf4c0f.yaml b/dd-trace-py/releasenotes/notes/azure-cosmosdb-integration-5b87c89c6abf4c0f.yaml
similarity index 100%
rename from releasenotes/notes/azure-cosmosdb-integration-5b87c89c6abf4c0f.yaml
rename to dd-trace-py/releasenotes/notes/azure-cosmosdb-integration-5b87c89c6abf4c0f.yaml
diff --git a/releasenotes/notes/azure-durable-functions-integration-80fc4c6c8745c541.yaml b/dd-trace-py/releasenotes/notes/azure-durable-functions-integration-80fc4c6c8745c541.yaml
similarity index 100%
rename from releasenotes/notes/azure-durable-functions-integration-80fc4c6c8745c541.yaml
rename to dd-trace-py/releasenotes/notes/azure-durable-functions-integration-80fc4c6c8745c541.yaml
diff --git a/releasenotes/notes/baggage-support-be7eed26293f1216.yaml b/dd-trace-py/releasenotes/notes/baggage-support-be7eed26293f1216.yaml
similarity index 100%
rename from releasenotes/notes/baggage-support-be7eed26293f1216.yaml
rename to dd-trace-py/releasenotes/notes/baggage-support-be7eed26293f1216.yaml
diff --git a/releasenotes/notes/baggage-support-with-http-propagation-e00d106eefff67f1.yaml b/dd-trace-py/releasenotes/notes/baggage-support-with-http-propagation-e00d106eefff67f1.yaml
similarity index 100%
rename from releasenotes/notes/baggage-support-with-http-propagation-e00d106eefff67f1.yaml
rename to dd-trace-py/releasenotes/notes/baggage-support-with-http-propagation-e00d106eefff67f1.yaml
diff --git a/releasenotes/notes/base64-encoding-for-DSM-context-propagation-efbfa76512224083.yaml b/dd-trace-py/releasenotes/notes/base64-encoding-for-DSM-context-propagation-efbfa76512224083.yaml
similarity index 100%
rename from releasenotes/notes/base64-encoding-for-DSM-context-propagation-efbfa76512224083.yaml
rename to dd-trace-py/releasenotes/notes/base64-encoding-for-DSM-context-propagation-efbfa76512224083.yaml
diff --git a/releasenotes/notes/batch-spans-1120505146330ff6.yaml b/dd-trace-py/releasenotes/notes/batch-spans-1120505146330ff6.yaml
similarity index 100%
rename from releasenotes/notes/batch-spans-1120505146330ff6.yaml
rename to dd-trace-py/releasenotes/notes/batch-spans-1120505146330ff6.yaml
diff --git a/releasenotes/notes/bedrock-converse-api-20dd255c1ee18cf4.yaml b/dd-trace-py/releasenotes/notes/bedrock-converse-api-20dd255c1ee18cf4.yaml
similarity index 100%
rename from releasenotes/notes/bedrock-converse-api-20dd255c1ee18cf4.yaml
rename to dd-trace-py/releasenotes/notes/bedrock-converse-api-20dd255c1ee18cf4.yaml
diff --git a/releasenotes/notes/bedrock-converse-tool-result-annotations-751872da3b0dd5bc.yaml b/dd-trace-py/releasenotes/notes/bedrock-converse-tool-result-annotations-751872da3b0dd5bc.yaml
similarity index 100%
rename from releasenotes/notes/bedrock-converse-tool-result-annotations-751872da3b0dd5bc.yaml
rename to dd-trace-py/releasenotes/notes/bedrock-converse-tool-result-annotations-751872da3b0dd5bc.yaml
diff --git a/releasenotes/notes/bedrock-p-cache-0b73a062953ecfcf.yaml b/dd-trace-py/releasenotes/notes/bedrock-p-cache-0b73a062953ecfcf.yaml
similarity index 100%
rename from releasenotes/notes/bedrock-p-cache-0b73a062953ecfcf.yaml
rename to dd-trace-py/releasenotes/notes/bedrock-p-cache-0b73a062953ecfcf.yaml
diff --git a/releasenotes/notes/bedrock-response-key-checking-845ef1f191fcc120.yaml b/dd-trace-py/releasenotes/notes/bedrock-response-key-checking-845ef1f191fcc120.yaml
similarity index 100%
rename from releasenotes/notes/bedrock-response-key-checking-845ef1f191fcc120.yaml
rename to dd-trace-py/releasenotes/notes/bedrock-response-key-checking-845ef1f191fcc120.yaml
diff --git a/releasenotes/notes/bedrock_tool_usage-de330efb849d7449.yaml b/dd-trace-py/releasenotes/notes/bedrock_tool_usage-de330efb849d7449.yaml
similarity index 100%
rename from releasenotes/notes/bedrock_tool_usage-de330efb849d7449.yaml
rename to dd-trace-py/releasenotes/notes/bedrock_tool_usage-de330efb849d7449.yaml
diff --git a/releasenotes/notes/beta-chat-completions-f583f4722a831b04.yaml b/dd-trace-py/releasenotes/notes/beta-chat-completions-f583f4722a831b04.yaml
similarity index 100%
rename from releasenotes/notes/beta-chat-completions-f583f4722a831b04.yaml
rename to dd-trace-py/releasenotes/notes/beta-chat-completions-f583f4722a831b04.yaml
diff --git a/releasenotes/notes/block_id-551e443afd917aa6.yaml b/dd-trace-py/releasenotes/notes/block_id-551e443afd917aa6.yaml
similarity index 100%
rename from releasenotes/notes/block_id-551e443afd917aa6.yaml
rename to dd-trace-py/releasenotes/notes/block_id-551e443afd917aa6.yaml
diff --git a/releasenotes/notes/blocking_behaviour_configuration-158d1ed1d85dd7d9.yaml b/dd-trace-py/releasenotes/notes/blocking_behaviour_configuration-158d1ed1d85dd7d9.yaml
similarity index 100%
rename from releasenotes/notes/blocking_behaviour_configuration-158d1ed1d85dd7d9.yaml
rename to dd-trace-py/releasenotes/notes/blocking_behaviour_configuration-158d1ed1d85dd7d9.yaml
diff --git a/releasenotes/notes/boto3-min-d282e4795f1f1631.yaml b/dd-trace-py/releasenotes/notes/boto3-min-d282e4795f1f1631.yaml
similarity index 100%
rename from releasenotes/notes/boto3-min-d282e4795f1f1631.yaml
rename to dd-trace-py/releasenotes/notes/boto3-min-d282e4795f1f1631.yaml
diff --git a/releasenotes/notes/botocore-46f5bf04f64777b4.yaml b/dd-trace-py/releasenotes/notes/botocore-46f5bf04f64777b4.yaml
similarity index 100%
rename from releasenotes/notes/botocore-46f5bf04f64777b4.yaml
rename to dd-trace-py/releasenotes/notes/botocore-46f5bf04f64777b4.yaml
diff --git a/releasenotes/notes/botocore-add-dsm-payload-size-stat-d04d13dbd8fcf1c3.yaml b/dd-trace-py/releasenotes/notes/botocore-add-dsm-payload-size-stat-d04d13dbd8fcf1c3.yaml
similarity index 100%
rename from releasenotes/notes/botocore-add-dsm-payload-size-stat-d04d13dbd8fcf1c3.yaml
rename to dd-trace-py/releasenotes/notes/botocore-add-dsm-payload-size-stat-d04d13dbd8fcf1c3.yaml
diff --git a/releasenotes/notes/botocore-bedrock-cross-region-inference-model-fix-179b7f1ddd6e8e02.yaml b/dd-trace-py/releasenotes/notes/botocore-bedrock-cross-region-inference-model-fix-179b7f1ddd6e8e02.yaml
similarity index 100%
rename from releasenotes/notes/botocore-bedrock-cross-region-inference-model-fix-179b7f1ddd6e8e02.yaml
rename to dd-trace-py/releasenotes/notes/botocore-bedrock-cross-region-inference-model-fix-179b7f1ddd6e8e02.yaml
diff --git a/releasenotes/notes/botocore-distributed-tracing-config-cd37b439d6d77dc6.yaml b/dd-trace-py/releasenotes/notes/botocore-distributed-tracing-config-cd37b439d6d77dc6.yaml
similarity index 100%
rename from releasenotes/notes/botocore-distributed-tracing-config-cd37b439d6d77dc6.yaml
rename to dd-trace-py/releasenotes/notes/botocore-distributed-tracing-config-cd37b439d6d77dc6.yaml
diff --git a/releasenotes/notes/botocore-error-statuses-fd69f83dfd2eac4e.yaml b/dd-trace-py/releasenotes/notes/botocore-error-statuses-fd69f83dfd2eac4e.yaml
similarity index 100%
rename from releasenotes/notes/botocore-error-statuses-fd69f83dfd2eac4e.yaml
rename to dd-trace-py/releasenotes/notes/botocore-error-statuses-fd69f83dfd2eac4e.yaml
diff --git a/releasenotes/notes/botocore-exclude-records--74ac3e5d4d4fdc95.yaml b/dd-trace-py/releasenotes/notes/botocore-exclude-records--74ac3e5d4d4fdc95.yaml
similarity index 100%
rename from releasenotes/notes/botocore-exclude-records--74ac3e5d4d4fdc95.yaml
rename to dd-trace-py/releasenotes/notes/botocore-exclude-records--74ac3e5d4d4fdc95.yaml
diff --git a/releasenotes/notes/botocore-internals-49885b5842d1ee80.yaml b/dd-trace-py/releasenotes/notes/botocore-internals-49885b5842d1ee80.yaml
similarity index 100%
rename from releasenotes/notes/botocore-internals-49885b5842d1ee80.yaml
rename to dd-trace-py/releasenotes/notes/botocore-internals-49885b5842d1ee80.yaml
diff --git a/releasenotes/notes/botocore-no-body-params-a440cd8b7fb9bd68.yaml b/dd-trace-py/releasenotes/notes/botocore-no-body-params-a440cd8b7fb9bd68.yaml
similarity index 100%
rename from releasenotes/notes/botocore-no-body-params-a440cd8b7fb9bd68.yaml
rename to dd-trace-py/releasenotes/notes/botocore-no-body-params-a440cd8b7fb9bd68.yaml
diff --git a/releasenotes/notes/botocore-sqs-queue-nonurl-b11745018c92ea1b.yaml b/dd-trace-py/releasenotes/notes/botocore-sqs-queue-nonurl-b11745018c92ea1b.yaml
similarity index 100%
rename from releasenotes/notes/botocore-sqs-queue-nonurl-b11745018c92ea1b.yaml
rename to dd-trace-py/releasenotes/notes/botocore-sqs-queue-nonurl-b11745018c92ea1b.yaml
diff --git a/releasenotes/notes/botocore_dsm_sqs-02df9afa4b4bb503.yaml b/dd-trace-py/releasenotes/notes/botocore_dsm_sqs-02df9afa4b4bb503.yaml
similarity index 100%
rename from releasenotes/notes/botocore_dsm_sqs-02df9afa4b4bb503.yaml
rename to dd-trace-py/releasenotes/notes/botocore_dsm_sqs-02df9afa4b4bb503.yaml
diff --git a/releasenotes/notes/bottle-int-config-6772ca40a3954399.yaml b/dd-trace-py/releasenotes/notes/bottle-int-config-6772ca40a3954399.yaml
similarity index 100%
rename from releasenotes/notes/bottle-int-config-6772ca40a3954399.yaml
rename to dd-trace-py/releasenotes/notes/bottle-int-config-6772ca40a3954399.yaml
diff --git a/releasenotes/notes/build-deploy-py39-wheels-6524f77277e3c788.yaml b/dd-trace-py/releasenotes/notes/build-deploy-py39-wheels-6524f77277e3c788.yaml
similarity index 100%
rename from releasenotes/notes/build-deploy-py39-wheels-6524f77277e3c788.yaml
rename to dd-trace-py/releasenotes/notes/build-deploy-py39-wheels-6524f77277e3c788.yaml
diff --git a/releasenotes/notes/bump-llmobs-5mb-617c24b81a2db2eg.yaml b/dd-trace-py/releasenotes/notes/bump-llmobs-5mb-617c24b81a2db2eg.yaml
similarity index 100%
rename from releasenotes/notes/bump-llmobs-5mb-617c24b81a2db2eg.yaml
rename to dd-trace-py/releasenotes/notes/bump-llmobs-5mb-617c24b81a2db2eg.yaml
diff --git a/releasenotes/notes/bump-traceback-limit-4b7702bc8f771d65.yaml b/dd-trace-py/releasenotes/notes/bump-traceback-limit-4b7702bc8f771d65.yaml
similarity index 100%
rename from releasenotes/notes/bump-traceback-limit-4b7702bc8f771d65.yaml
rename to dd-trace-py/releasenotes/notes/bump-traceback-limit-4b7702bc8f771d65.yaml
diff --git a/releasenotes/notes/call_extract_once_per_request-620e1680c6fa6a85.yaml b/dd-trace-py/releasenotes/notes/call_extract_once_per_request-620e1680c6fa6a85.yaml
similarity index 100%
rename from releasenotes/notes/call_extract_once_per_request-620e1680c6fa6a85.yaml
rename to dd-trace-py/releasenotes/notes/call_extract_once_per_request-620e1680c6fa6a85.yaml
diff --git a/releasenotes/notes/capture-xml-parsing-errors-e6c8c761ed026ce3.yaml b/dd-trace-py/releasenotes/notes/capture-xml-parsing-errors-e6c8c761ed026ce3.yaml
similarity index 100%
rename from releasenotes/notes/capture-xml-parsing-errors-e6c8c761ed026ce3.yaml
rename to dd-trace-py/releasenotes/notes/capture-xml-parsing-errors-e6c8c761ed026ce3.yaml
diff --git a/releasenotes/notes/case_insensitive_baggage_header_extraction-63167c492474da6f.yaml b/dd-trace-py/releasenotes/notes/case_insensitive_baggage_header_extraction-63167c492474da6f.yaml
similarity index 100%
rename from releasenotes/notes/case_insensitive_baggage_header_extraction-63167c492474da6f.yaml
rename to dd-trace-py/releasenotes/notes/case_insensitive_baggage_header_extraction-63167c492474da6f.yaml
diff --git a/releasenotes/notes/case_insensitive_matching-ee91217a6274e675.yaml b/dd-trace-py/releasenotes/notes/case_insensitive_matching-ee91217a6274e675.yaml
similarity index 100%
rename from releasenotes/notes/case_insensitive_matching-ee91217a6274e675.yaml
rename to dd-trace-py/releasenotes/notes/case_insensitive_matching-ee91217a6274e675.yaml
diff --git a/releasenotes/notes/cassandra-d3c8aaf478bddc56.yaml b/dd-trace-py/releasenotes/notes/cassandra-d3c8aaf478bddc56.yaml
similarity index 100%
rename from releasenotes/notes/cassandra-d3c8aaf478bddc56.yaml
rename to dd-trace-py/releasenotes/notes/cassandra-d3c8aaf478bddc56.yaml
diff --git a/releasenotes/notes/celery-broker-url-list-8998b5629fd2693d.yaml b/dd-trace-py/releasenotes/notes/celery-broker-url-list-8998b5629fd2693d.yaml
similarity index 100%
rename from releasenotes/notes/celery-broker-url-list-8998b5629fd2693d.yaml
rename to dd-trace-py/releasenotes/notes/celery-broker-url-list-8998b5629fd2693d.yaml
diff --git a/releasenotes/notes/celery-flatten-context-dicts-bc5c33b72bd72ac2.yaml b/dd-trace-py/releasenotes/notes/celery-flatten-context-dicts-bc5c33b72bd72ac2.yaml
similarity index 100%
rename from releasenotes/notes/celery-flatten-context-dicts-bc5c33b72bd72ac2.yaml
rename to dd-trace-py/releasenotes/notes/celery-flatten-context-dicts-bc5c33b72bd72ac2.yaml
diff --git a/releasenotes/notes/celery-precursor-peer.service-d3b1bc05f1ca59ab.yaml b/dd-trace-py/releasenotes/notes/celery-precursor-peer.service-d3b1bc05f1ca59ab.yaml
similarity index 100%
rename from releasenotes/notes/celery-precursor-peer.service-d3b1bc05f1ca59ab.yaml
rename to dd-trace-py/releasenotes/notes/celery-precursor-peer.service-d3b1bc05f1ca59ab.yaml
diff --git a/releasenotes/notes/celerybeat-64b7b984461c6d12.yaml b/dd-trace-py/releasenotes/notes/celerybeat-64b7b984461c6d12.yaml
similarity index 100%
rename from releasenotes/notes/celerybeat-64b7b984461c6d12.yaml
rename to dd-trace-py/releasenotes/notes/celerybeat-64b7b984461c6d12.yaml
diff --git a/releasenotes/notes/change-oai-error-e7b24f61c1cfdc83.yaml b/dd-trace-py/releasenotes/notes/change-oai-error-e7b24f61c1cfdc83.yaml
similarity index 100%
rename from releasenotes/notes/change-oai-error-e7b24f61c1cfdc83.yaml
rename to dd-trace-py/releasenotes/notes/change-oai-error-e7b24f61c1cfdc83.yaml
diff --git a/releasenotes/notes/change-tool-call-output-openai-anthropic-f59f6ef816589cf8.yaml b/dd-trace-py/releasenotes/notes/change-tool-call-output-openai-anthropic-f59f6ef816589cf8.yaml
similarity index 100%
rename from releasenotes/notes/change-tool-call-output-openai-anthropic-f59f6ef816589cf8.yaml
rename to dd-trace-py/releasenotes/notes/change-tool-call-output-openai-anthropic-f59f6ef816589cf8.yaml
diff --git a/releasenotes/notes/change_cattrs_install_requires-36be09a2fda5e639.yaml b/dd-trace-py/releasenotes/notes/change_cattrs_install_requires-36be09a2fda5e639.yaml
similarity index 100%
rename from releasenotes/notes/change_cattrs_install_requires-36be09a2fda5e639.yaml
rename to dd-trace-py/releasenotes/notes/change_cattrs_install_requires-36be09a2fda5e639.yaml
diff --git a/releasenotes/notes/check_metrics_for_matching-5606a86bf34b58e1.yaml b/dd-trace-py/releasenotes/notes/check_metrics_for_matching-5606a86bf34b58e1.yaml
similarity index 100%
rename from releasenotes/notes/check_metrics_for_matching-5606a86bf34b58e1.yaml
rename to dd-trace-py/releasenotes/notes/check_metrics_for_matching-5606a86bf34b58e1.yaml
diff --git a/releasenotes/notes/cherrypy-first-version-89893f512b2fa083.yaml b/dd-trace-py/releasenotes/notes/cherrypy-first-version-89893f512b2fa083.yaml
similarity index 100%
rename from releasenotes/notes/cherrypy-first-version-89893f512b2fa083.yaml
rename to dd-trace-py/releasenotes/notes/cherrypy-first-version-89893f512b2fa083.yaml
diff --git a/releasenotes/notes/chore-debugger-agent-check-uploader-5d644d20cf9b4af5.yaml b/dd-trace-py/releasenotes/notes/chore-debugger-agent-check-uploader-5d644d20cf9b4af5.yaml
similarity index 100%
rename from releasenotes/notes/chore-debugger-agent-check-uploader-5d644d20cf9b4af5.yaml
rename to dd-trace-py/releasenotes/notes/chore-debugger-agent-check-uploader-5d644d20cf9b4af5.yaml
diff --git a/releasenotes/notes/chore-di-support-decimal-e75525e282c50a2f.yaml b/dd-trace-py/releasenotes/notes/chore-di-support-decimal-e75525e282c50a2f.yaml
similarity index 100%
rename from releasenotes/notes/chore-di-support-decimal-e75525e282c50a2f.yaml
rename to dd-trace-py/releasenotes/notes/chore-di-support-decimal-e75525e282c50a2f.yaml
diff --git a/releasenotes/notes/chore-er-capture-exception-api-86a0a00e0b412567.yaml b/dd-trace-py/releasenotes/notes/chore-er-capture-exception-api-86a0a00e0b412567.yaml
similarity index 100%
rename from releasenotes/notes/chore-er-capture-exception-api-86a0a00e0b412567.yaml
rename to dd-trace-py/releasenotes/notes/chore-er-capture-exception-api-86a0a00e0b412567.yaml
diff --git a/releasenotes/notes/chore-reduce-oci-image-ce45f1868ee14415.yaml b/dd-trace-py/releasenotes/notes/chore-reduce-oci-image-ce45f1868ee14415.yaml
similarity index 100%
rename from releasenotes/notes/chore-reduce-oci-image-ce45f1868ee14415.yaml
rename to dd-trace-py/releasenotes/notes/chore-reduce-oci-image-ce45f1868ee14415.yaml
diff --git a/releasenotes/notes/ci-error-79b5f3fae44269bb.yaml b/dd-trace-py/releasenotes/notes/ci-error-79b5f3fae44269bb.yaml
similarity index 100%
rename from releasenotes/notes/ci-error-79b5f3fae44269bb.yaml
rename to dd-trace-py/releasenotes/notes/ci-error-79b5f3fae44269bb.yaml
diff --git a/releasenotes/notes/ci-mac-build-37f7e55c8289de61.yaml b/dd-trace-py/releasenotes/notes/ci-mac-build-37f7e55c8289de61.yaml
similarity index 100%
rename from releasenotes/notes/ci-mac-build-37f7e55c8289de61.yaml
rename to dd-trace-py/releasenotes/notes/ci-mac-build-37f7e55c8289de61.yaml
diff --git a/releasenotes/notes/ci-providers-git-metadata-6229ff3cf9a347d9.yaml b/dd-trace-py/releasenotes/notes/ci-providers-git-metadata-6229ff3cf9a347d9.yaml
similarity index 100%
rename from releasenotes/notes/ci-providers-git-metadata-6229ff3cf9a347d9.yaml
rename to dd-trace-py/releasenotes/notes/ci-providers-git-metadata-6229ff3cf9a347d9.yaml
diff --git a/releasenotes/notes/ci-vis-atr-xdist-b358a3f9039dd67d.yaml b/dd-trace-py/releasenotes/notes/ci-vis-atr-xdist-b358a3f9039dd67d.yaml
similarity index 100%
rename from releasenotes/notes/ci-vis-atr-xdist-b358a3f9039dd67d.yaml
rename to dd-trace-py/releasenotes/notes/ci-vis-atr-xdist-b358a3f9039dd67d.yaml
diff --git a/releasenotes/notes/ci-vis-gzip-payload-a93c4b5d4687f1c4.yaml b/dd-trace-py/releasenotes/notes/ci-vis-gzip-payload-a93c4b5d4687f1c4.yaml
similarity index 100%
rename from releasenotes/notes/ci-vis-gzip-payload-a93c4b5d4687f1c4.yaml
rename to dd-trace-py/releasenotes/notes/ci-vis-gzip-payload-a93c4b5d4687f1c4.yaml
diff --git a/releasenotes/notes/ci-vis-gzip-payload-evp-8269d43f2721afa1.yaml b/dd-trace-py/releasenotes/notes/ci-vis-gzip-payload-evp-8269d43f2721afa1.yaml
similarity index 100%
rename from releasenotes/notes/ci-vis-gzip-payload-evp-8269d43f2721afa1.yaml
rename to dd-trace-py/releasenotes/notes/ci-vis-gzip-payload-evp-8269d43f2721afa1.yaml
diff --git a/releasenotes/notes/ci-vis-itr-enabled-env-var-db5bf0cd6bbe8821.yaml b/dd-trace-py/releasenotes/notes/ci-vis-itr-enabled-env-var-db5bf0cd6bbe8821.yaml
similarity index 100%
rename from releasenotes/notes/ci-vis-itr-enabled-env-var-db5bf0cd6bbe8821.yaml
rename to dd-trace-py/releasenotes/notes/ci-vis-itr-enabled-env-var-db5bf0cd6bbe8821.yaml
diff --git a/releasenotes/notes/ci-vis-xdist-suite-failing-3a0c20b8379f10e4.yaml b/dd-trace-py/releasenotes/notes/ci-vis-xdist-suite-failing-3a0c20b8379f10e4.yaml
similarity index 100%
rename from releasenotes/notes/ci-vis-xdist-suite-failing-3a0c20b8379f10e4.yaml
rename to dd-trace-py/releasenotes/notes/ci-vis-xdist-suite-failing-3a0c20b8379f10e4.yaml
diff --git a/releasenotes/notes/ci-visibility-bazel-offline-762910380a4e3571.yaml b/dd-trace-py/releasenotes/notes/ci-visibility-bazel-offline-762910380a4e3571.yaml
similarity index 100%
rename from releasenotes/notes/ci-visibility-bazel-offline-762910380a4e3571.yaml
rename to dd-trace-py/releasenotes/notes/ci-visibility-bazel-offline-762910380a4e3571.yaml
diff --git a/releasenotes/notes/ci-visibility-handle-exception-in-tests-to-skip-675db3b857f8e232.yaml b/dd-trace-py/releasenotes/notes/ci-visibility-handle-exception-in-tests-to-skip-675db3b857f8e232.yaml
similarity index 100%
rename from releasenotes/notes/ci-visibility-handle-exception-in-tests-to-skip-675db3b857f8e232.yaml
rename to dd-trace-py/releasenotes/notes/ci-visibility-handle-exception-in-tests-to-skip-675db3b857f8e232.yaml
diff --git a/releasenotes/notes/ci-visibility-handle-rate-limiting-d7df3d047661bbd9.yaml b/dd-trace-py/releasenotes/notes/ci-visibility-handle-rate-limiting-d7df3d047661bbd9.yaml
similarity index 100%
rename from releasenotes/notes/ci-visibility-handle-rate-limiting-d7df3d047661bbd9.yaml
rename to dd-trace-py/releasenotes/notes/ci-visibility-handle-rate-limiting-d7df3d047661bbd9.yaml
diff --git a/releasenotes/notes/ci-visibility-provider-pr-metadata-5af55dd9e8a7cf50.yaml b/dd-trace-py/releasenotes/notes/ci-visibility-provider-pr-metadata-5af55dd9e8a7cf50.yaml
similarity index 100%
rename from releasenotes/notes/ci-visibility-provider-pr-metadata-5af55dd9e8a7cf50.yaml
rename to dd-trace-py/releasenotes/notes/ci-visibility-provider-pr-metadata-5af55dd9e8a7cf50.yaml
diff --git a/releasenotes/notes/ci_visibility-deprecate-freezegun-integration-ff99aa77e3907204.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-deprecate-freezegun-integration-ff99aa77e3907204.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-deprecate-freezegun-integration-ff99aa77e3907204.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-deprecate-freezegun-integration-ff99aa77e3907204.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-beta-writer-19223da89150c687.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-beta-writer-19223da89150c687.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-beta-writer-19223da89150c687.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-beta-writer-19223da89150c687.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-civisbility_specifci_logger-c3205b659f4ae6fd.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-civisbility_specifci_logger-c3205b659f4ae6fd.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-civisbility_specifci_logger-c3205b659f4ae6fd.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-civisbility_specifci_logger-c3205b659f4ae6fd.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-code-coverage-3-13-87be2f71bbfce72f.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-code-coverage-3-13-87be2f71bbfce72f.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-code-coverage-3-13-87be2f71bbfce72f.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-code-coverage-3-13-87be2f71bbfce72f.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-intelligent_test_runner_ga-29333edb3933a74b.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-intelligent_test_runner_ga-29333edb3933a74b.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-intelligent_test_runner_ga-29333edb3933a74b.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-intelligent_test_runner_ga-29333edb3933a74b.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-new-plugin-e8f756c65b1be2f0.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-new-plugin-e8f756c65b1be2f0.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-new-plugin-e8f756c65b1be2f0.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-new-plugin-e8f756c65b1be2f0.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-optionally_wait_for_git_metadata_upload-e418fc2f94e846ba.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-optionally_wait_for_git_metadata_upload-e418fc2f94e846ba.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-optionally_wait_for_git_metadata_upload-e418fc2f94e846ba.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-optionally_wait_for_git_metadata_upload-e418fc2f94e846ba.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-pytest-v2-default-db160906c0ba26dc.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-pytest-v2-default-db160906c0ba26dc.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-pytest-v2-default-db160906c0ba26dc.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-pytest-v2-default-db160906c0ba26dc.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-pytest-v3-default-3b64710d1bc86383.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-pytest-v3-default-3b64710d1bc86383.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-pytest-v3-default-3b64710d1bc86383.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-pytest-v3-default-3b64710d1bc86383.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-pytest_plugin_beta-f4a607d58d44055c.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-pytest_plugin_beta-f4a607d58d44055c.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-pytest_plugin_beta-f4a607d58d44055c.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-pytest_plugin_beta-f4a607d58d44055c.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-report-links-17156296dfc566a8.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-report-links-17156296dfc566a8.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-report-links-17156296dfc566a8.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-report-links-17156296dfc566a8.yaml
diff --git a/releasenotes/notes/ci_visibility-feat-selenium_rum_support-f1b81d0de8820aaa.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feat-selenium_rum_support-f1b81d0de8820aaa.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feat-selenium_rum_support-f1b81d0de8820aaa.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feat-selenium_rum_support-f1b81d0de8820aaa.yaml
diff --git a/releasenotes/notes/ci_visibility-feature-dd_test_session_name-d4ab1537577a1cb8.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feature-dd_test_session_name-d4ab1537577a1cb8.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feature-dd_test_session_name-d4ab1537577a1cb8.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feature-dd_test_session_name-d4ab1537577a1cb8.yaml
diff --git a/releasenotes/notes/ci_visibility-feature-pytest_naming_hooks-757f90c20b5b882b.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feature-pytest_naming_hooks-757f90c20b5b882b.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feature-pytest_naming_hooks-757f90c20b5b882b.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feature-pytest_naming_hooks-757f90c20b5b882b.yaml
diff --git a/releasenotes/notes/ci_visibility-feature-support-awscodepipeline-677c94e4a2185b6d.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-feature-support-awscodepipeline-677c94e4a2185b6d.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-feature-support-awscodepipeline-677c94e4a2185b6d.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-feature-support-awscodepipeline-677c94e4a2185b6d.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-clash-sys-monitoring-bd3ef705324f9f23.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-clash-sys-monitoring-bd3ef705324f9f23.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-clash-sys-monitoring-bd3ef705324f9f23.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-clash-sys-monitoring-bd3ef705324f9f23.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-codeowners-repo-root-0f424ef3a049354f.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-codeowners-repo-root-0f424ef3a049354f.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-codeowners-repo-root-0f424ef3a049354f.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-codeowners-repo-root-0f424ef3a049354f.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-comma_separation_issue_in_git_format-76bf32d68ba6c164.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-comma_separation_issue_in_git_format-76bf32d68ba6c164.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-comma_separation_issue_in_git_format-76bf32d68ba6c164.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-comma_separation_issue_in_git_format-76bf32d68ba6c164.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-coverage-py39-line-numbers-f93fe457098505cb.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-coverage-py39-line-numbers-f93fe457098505cb.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-coverage-py39-line-numbers-f93fe457098505cb.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-coverage-py39-line-numbers-f93fe457098505cb.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-distributed_tracing-733103ba3a19f3f7.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-distributed_tracing-733103ba3a19f3f7.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-distributed_tracing-733103ba3a19f3f7.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-distributed_tracing-733103ba3a19f3f7.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-dont_make_pytest_contrib_depend_on_git-d922e9326c981f38.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-dont_make_pytest_contrib_depend_on_git-d922e9326c981f38.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-dont_make_pytest_contrib_depend_on_git-d922e9326c981f38.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-dont_make_pytest_contrib_depend_on_git-d922e9326c981f38.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-ensure-test-finished-524a9bb93fd6b632.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-ensure-test-finished-524a9bb93fd6b632.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-ensure-test-finished-524a9bb93fd6b632.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-ensure-test-finished-524a9bb93fd6b632.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-exception-memory-usage-46bffde9569ff4df.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-exception-memory-usage-46bffde9569ff4df.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-exception-memory-usage-46bffde9569ff4df.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-exception-memory-usage-46bffde9569ff4df.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-flush-partial-traces-4c21167f7b4feb2a.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-flush-partial-traces-4c21167f7b4feb2a.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-flush-partial-traces-4c21167f7b4feb2a.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-flush-partial-traces-4c21167f7b4feb2a.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-io-operation-closed-file-1e1089eabd5296ce.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-io-operation-closed-file-1e1089eabd5296ce.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-io-operation-closed-file-1e1089eabd5296ce.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-io-operation-closed-file-1e1089eabd5296ce.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-itr-import-coverage-3d38f22fe43cf978.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-itr-import-coverage-3d38f22fe43cf978.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-itr-import-coverage-3d38f22fe43cf978.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-itr-import-coverage-3d38f22fe43cf978.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-itr-user-code-61c09671abe6df17.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-itr-user-code-61c09671abe6df17.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-itr-user-code-61c09671abe6df17.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-itr-user-code-61c09671abe6df17.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-junit-xml-retry-count-65de6ad6b9bb35d2.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-junit-xml-retry-count-65de6ad6b9bb35d2.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-junit-xml-retry-count-65de6ad6b9bb35d2.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-junit-xml-retry-count-65de6ad6b9bb35d2.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-pytest-8.0.0-support-88fcb7b5144d7efa.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-8.0.0-support-88fcb7b5144d7efa.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-pytest-8.0.0-support-88fcb7b5144d7efa.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-8.0.0-support-88fcb7b5144d7efa.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-pytest-addopts-early-init-74fb4e207dee18e4.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-addopts-early-init-74fb4e207dee18e4.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-pytest-addopts-early-init-74fb4e207dee18e4.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-addopts-early-init-74fb4e207dee18e4.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-pytest-class-names-option-8675b04e442425a4.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-class-names-option-8675b04e442425a4.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-pytest-class-names-option-8675b04e442425a4.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-class-names-option-8675b04e442425a4.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-pytest-classes-b54582b09727fdc1.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-classes-b54582b09727fdc1.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-pytest-classes-b54582b09727fdc1.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-classes-b54582b09727fdc1.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-pytest-log-capture-b135eb77a4fcd2b9.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-log-capture-b135eb77a4fcd2b9.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-pytest-log-capture-b135eb77a4fcd2b9.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-log-capture-b135eb77a4fcd2b9.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-pytest-retry-logging-error-c0eda4595b0d3fa6.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-retry-logging-error-c0eda4595b0d3fa6.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-pytest-retry-logging-error-c0eda4595b0d3fa6.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-retry-logging-error-c0eda4595b0d3fa6.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-pytest-retry-plugins-compat-7ae7c8dc81676195.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-retry-plugins-compat-7ae7c8dc81676195.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-pytest-retry-plugins-compat-7ae7c8dc81676195.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-retry-plugins-compat-7ae7c8dc81676195.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-pytest-xdist-retry-number-a6fee9bf3b14fd05.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-xdist-retry-number-a6fee9bf3b14fd05.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-pytest-xdist-retry-number-a6fee9bf3b14fd05.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-pytest-xdist-retry-number-a6fee9bf3b14fd05.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-sanitize-github-server-urls-8988b407b68afac7.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-sanitize-github-server-urls-8988b407b68afac7.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-sanitize-github-server-urls-8988b407b68afac7.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-sanitize-github-server-urls-8988b407b68afac7.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-skipif-non-positional-arguments-e7b6c593959ba1ee.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-skipif-non-positional-arguments-e7b6c593959ba1ee.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-skipif-non-positional-arguments-e7b6c593959ba1ee.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-skipif-non-positional-arguments-e7b6c593959ba1ee.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-socket-timeout-exception-fabf40a398249c26.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-socket-timeout-exception-fabf40a398249c26.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-socket-timeout-exception-fabf40a398249c26.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-socket-timeout-exception-fabf40a398249c26.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-teardown-exception-on-retries-03496295306399b3.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-teardown-exception-on-retries-03496295306399b3.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-teardown-exception-on-retries-03496295306399b3.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-teardown-exception-on-retries-03496295306399b3.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-test-management-enabled-env-var-cbf4a30f3bf9e60f.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-test-management-enabled-env-var-cbf4a30f3bf9e60f.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-test-management-enabled-env-var-cbf4a30f3bf9e60f.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-test-management-enabled-env-var-cbf4a30f3bf9e60f.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-unittest-only-enable-coverage-when-skipping-tests-1ea3d31a818277ae.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-unittest-only-enable-coverage-when-skipping-tests-1ea3d31a818277ae.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-unittest-only-enable-coverage-when-skipping-tests-1ea3d31a818277ae.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-unittest-only-enable-coverage-when-skipping-tests-1ea3d31a818277ae.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-unshallow-no-tags-bbe7e26aadcf250f.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-unshallow-no-tags-bbe7e26aadcf250f.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-unshallow-no-tags-bbe7e26aadcf250f.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-unshallow-no-tags-bbe7e26aadcf250f.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-update_eu_telemetry_url-0642a6f665c75a0f.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-update_eu_telemetry_url-0642a6f665c75a0f.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-update_eu_telemetry_url-0642a6f665c75a0f.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-update_eu_telemetry_url-0642a6f665c75a0f.yaml
diff --git a/releasenotes/notes/ci_visibility-fix-use-git-tag-as-branch-971227009e6496a6.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix-use-git-tag-as-branch-971227009e6496a6.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix-use-git-tag-as-branch-971227009e6496a6.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix-use-git-tag-as-branch-971227009e6496a6.yaml
diff --git a/releasenotes/notes/ci_visibility-fix_codeowners_including_comments-82d9cb733a2c7285.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix_codeowners_including_comments-82d9cb733a2c7285.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix_codeowners_including_comments-82d9cb733a2c7285.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix_codeowners_including_comments-82d9cb733a2c7285.yaml
diff --git a/releasenotes/notes/ci_visibility-fix_logged_errors_when_gitless-66a6cb3245314f3e.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix_logged_errors_when_gitless-66a6cb3245314f3e.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix_logged_errors_when_gitless-66a6cb3245314f3e.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix_logged_errors_when_gitless-66a6cb3245314f3e.yaml
diff --git a/releasenotes/notes/ci_visibility-fix_properly_strip_dotgit_from_repo_url-523a908075aea559.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-fix_properly_strip_dotgit_from_repo_url-523a908075aea559.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-fix_properly_strip_dotgit_from_repo_url-523a908075aea559.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-fix_properly_strip_dotgit_from_repo_url-523a908075aea559.yaml
diff --git a/releasenotes/notes/ci_visibility-get_agent_default_env-bf4a11283dccdf87.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-get_agent_default_env-bf4a11283dccdf87.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-get_agent_default_env-bf4a11283dccdf87.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-get_agent_default_env-bf4a11283dccdf87.yaml
diff --git a/releasenotes/notes/ci_visibility-update-remove-deprecated-pytest-entrypoints-5cb519a8a0858c9b.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-update-remove-deprecated-pytest-entrypoints-5cb519a8a0858c9b.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-update-remove-deprecated-pytest-entrypoints-5cb519a8a0858c9b.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-update-remove-deprecated-pytest-entrypoints-5cb519a8a0858c9b.yaml
diff --git a/releasenotes/notes/ci_visibility-upgrade-dont-enable-if-api-key-403-503d2316b75c78fd.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-upgrade-dont-enable-if-api-key-403-503d2316b75c78fd.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-upgrade-dont-enable-if-api-key-403-503d2316b75c78fd.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-upgrade-dont-enable-if-api-key-403-503d2316b75c78fd.yaml
diff --git a/releasenotes/notes/ci_visibility-upgrade-pytest-without-coverage-py-884beebdfd122661.yaml b/dd-trace-py/releasenotes/notes/ci_visibility-upgrade-pytest-without-coverage-py-884beebdfd122661.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility-upgrade-pytest-without-coverage-py-884beebdfd122661.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility-upgrade-pytest-without-coverage-py-884beebdfd122661.yaml
diff --git a/releasenotes/notes/ci_visibility_enable_env_var-a5b9f30dc95c66a6.yaml b/dd-trace-py/releasenotes/notes/ci_visibility_enable_env_var-a5b9f30dc95c66a6.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility_enable_env_var-a5b9f30dc95c66a6.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility_enable_env_var-a5b9f30dc95c66a6.yaml
diff --git a/releasenotes/notes/ci_visibility_fix_coverage_3.14-4a790b18606a235f.yaml b/dd-trace-py/releasenotes/notes/ci_visibility_fix_coverage_3.14-4a790b18606a235f.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility_fix_coverage_3.14-4a790b18606a235f.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility_fix_coverage_3.14-4a790b18606a235f.yaml
diff --git a/releasenotes/notes/ci_visibility_fix_itr_count-7f4c5da42df18aea.yaml b/dd-trace-py/releasenotes/notes/ci_visibility_fix_itr_count-7f4c5da42df18aea.yaml
similarity index 100%
rename from releasenotes/notes/ci_visibility_fix_itr_count-7f4c5da42df18aea.yaml
rename to dd-trace-py/releasenotes/notes/ci_visibility_fix_itr_count-7f4c5da42df18aea.yaml
diff --git a/releasenotes/notes/circular-psycopg3-import-c27df66875895fc7.yaml b/dd-trace-py/releasenotes/notes/circular-psycopg3-import-c27df66875895fc7.yaml
similarity index 100%
rename from releasenotes/notes/circular-psycopg3-import-c27df66875895fc7.yaml
rename to dd-trace-py/releasenotes/notes/circular-psycopg3-import-c27df66875895fc7.yaml
diff --git a/releasenotes/notes/civisibility-configure-62d5af67c49e75ad.yaml b/dd-trace-py/releasenotes/notes/civisibility-configure-62d5af67c49e75ad.yaml
similarity index 100%
rename from releasenotes/notes/civisibility-configure-62d5af67c49e75ad.yaml
rename to dd-trace-py/releasenotes/notes/civisibility-configure-62d5af67c49e75ad.yaml
diff --git a/releasenotes/notes/clarify-numeric-llmobs-metric-type-unsupported-9f3fb2caa0366b95.yaml b/dd-trace-py/releasenotes/notes/clarify-numeric-llmobs-metric-type-unsupported-9f3fb2caa0366b95.yaml
similarity index 100%
rename from releasenotes/notes/clarify-numeric-llmobs-metric-type-unsupported-9f3fb2caa0366b95.yaml
rename to dd-trace-py/releasenotes/notes/clarify-numeric-llmobs-metric-type-unsupported-9f3fb2caa0366b95.yaml
diff --git a/releasenotes/notes/claude-agent-sdk-support-bcbf7725c5bd7b1f.yaml b/dd-trace-py/releasenotes/notes/claude-agent-sdk-support-bcbf7725c5bd7b1f.yaml
similarity index 100%
rename from releasenotes/notes/claude-agent-sdk-support-bcbf7725c5bd7b1f.yaml
rename to dd-trace-py/releasenotes/notes/claude-agent-sdk-support-bcbf7725c5bd7b1f.yaml
diff --git a/releasenotes/notes/claude-llm-spans-e9275cdc8e00a7a5.yaml b/dd-trace-py/releasenotes/notes/claude-llm-spans-e9275cdc8e00a7a5.yaml
similarity index 100%
rename from releasenotes/notes/claude-llm-spans-e9275cdc8e00a7a5.yaml
rename to dd-trace-py/releasenotes/notes/claude-llm-spans-e9275cdc8e00a7a5.yaml
diff --git a/releasenotes/notes/claude-sdk-updates-79694e62d4d307f7.yaml b/dd-trace-py/releasenotes/notes/claude-sdk-updates-79694e62d4d307f7.yaml
similarity index 100%
rename from releasenotes/notes/claude-sdk-updates-79694e62d4d307f7.yaml
rename to dd-trace-py/releasenotes/notes/claude-sdk-updates-79694e62d4d307f7.yaml
diff --git a/releasenotes/notes/clean-path-inject-42eb97e670d9ee67.yaml b/dd-trace-py/releasenotes/notes/clean-path-inject-42eb97e670d9ee67.yaml
similarity index 100%
rename from releasenotes/notes/clean-path-inject-42eb97e670d9ee67.yaml
rename to dd-trace-py/releasenotes/notes/clean-path-inject-42eb97e670d9ee67.yaml
diff --git a/releasenotes/notes/clobber-dm-b494dc48a3217371.yaml b/dd-trace-py/releasenotes/notes/clobber-dm-b494dc48a3217371.yaml
similarity index 100%
rename from releasenotes/notes/clobber-dm-b494dc48a3217371.yaml
rename to dd-trace-py/releasenotes/notes/clobber-dm-b494dc48a3217371.yaml
diff --git a/releasenotes/notes/code-security-patch-dir-54cc85f18e31f45c.yaml b/dd-trace-py/releasenotes/notes/code-security-patch-dir-54cc85f18e31f45c.yaml
similarity index 100%
rename from releasenotes/notes/code-security-patch-dir-54cc85f18e31f45c.yaml
rename to dd-trace-py/releasenotes/notes/code-security-patch-dir-54cc85f18e31f45c.yaml
diff --git a/releasenotes/notes/collect-response-headers-8cfb734cc1e73cb1.yaml b/dd-trace-py/releasenotes/notes/collect-response-headers-8cfb734cc1e73cb1.yaml
similarity index 100%
rename from releasenotes/notes/collect-response-headers-8cfb734cc1e73cb1.yaml
rename to dd-trace-py/releasenotes/notes/collect-response-headers-8cfb734cc1e73cb1.yaml
diff --git a/releasenotes/notes/collect_extra_service_names-453190f684d62070.yaml b/dd-trace-py/releasenotes/notes/collect_extra_service_names-453190f684d62070.yaml
similarity index 100%
rename from releasenotes/notes/collect_extra_service_names-453190f684d62070.yaml
rename to dd-trace-py/releasenotes/notes/collect_extra_service_names-453190f684d62070.yaml
diff --git a/releasenotes/notes/config-to-not-double-wrap-django-dbs-bf43e41c6b5b9f29.yaml b/dd-trace-py/releasenotes/notes/config-to-not-double-wrap-django-dbs-bf43e41c6b5b9f29.yaml
similarity index 100%
rename from releasenotes/notes/config-to-not-double-wrap-django-dbs-bf43e41c6b5b9f29.yaml
rename to dd-trace-py/releasenotes/notes/config-to-not-double-wrap-django-dbs-bf43e41c6b5b9f29.yaml
diff --git a/releasenotes/notes/configure-6973c2ed2105a1c0.yaml b/dd-trace-py/releasenotes/notes/configure-6973c2ed2105a1c0.yaml
similarity index 100%
rename from releasenotes/notes/configure-6973c2ed2105a1c0.yaml
rename to dd-trace-py/releasenotes/notes/configure-6973c2ed2105a1c0.yaml
diff --git a/releasenotes/notes/configure-a39313ef4fed9028.yaml b/dd-trace-py/releasenotes/notes/configure-a39313ef4fed9028.yaml
similarity index 100%
rename from releasenotes/notes/configure-a39313ef4fed9028.yaml
rename to dd-trace-py/releasenotes/notes/configure-a39313ef4fed9028.yaml
diff --git a/releasenotes/notes/context-3467ab87a70c601e.yaml b/dd-trace-py/releasenotes/notes/context-3467ab87a70c601e.yaml
similarity index 100%
rename from releasenotes/notes/context-3467ab87a70c601e.yaml
rename to dd-trace-py/releasenotes/notes/context-3467ab87a70c601e.yaml
diff --git a/releasenotes/notes/context-d43f1c79c78cb923.yaml b/dd-trace-py/releasenotes/notes/context-d43f1c79c78cb923.yaml
similarity index 100%
rename from releasenotes/notes/context-d43f1c79c78cb923.yaml
rename to dd-trace-py/releasenotes/notes/context-d43f1c79c78cb923.yaml
diff --git a/releasenotes/notes/context-df929fc8dfe148ba.yaml b/dd-trace-py/releasenotes/notes/context-df929fc8dfe148ba.yaml
similarity index 100%
rename from releasenotes/notes/context-df929fc8dfe148ba.yaml
rename to dd-trace-py/releasenotes/notes/context-df929fc8dfe148ba.yaml
diff --git a/releasenotes/notes/converse-parsing-cd9ebb9506f8bbe1.yaml b/dd-trace-py/releasenotes/notes/converse-parsing-cd9ebb9506f8bbe1.yaml
similarity index 100%
rename from releasenotes/notes/converse-parsing-cd9ebb9506f8bbe1.yaml
rename to dd-trace-py/releasenotes/notes/converse-parsing-cd9ebb9506f8bbe1.yaml
diff --git a/releasenotes/notes/converse-stream-c0ac59a206aa16ad.yaml b/dd-trace-py/releasenotes/notes/converse-stream-c0ac59a206aa16ad.yaml
similarity index 100%
rename from releasenotes/notes/converse-stream-c0ac59a206aa16ad.yaml
rename to dd-trace-py/releasenotes/notes/converse-stream-c0ac59a206aa16ad.yaml
diff --git a/releasenotes/notes/core_context_span_failsafe-8b2f2f5344689c1d.yaml b/dd-trace-py/releasenotes/notes/core_context_span_failsafe-8b2f2f5344689c1d.yaml
similarity index 100%
rename from releasenotes/notes/core_context_span_failsafe-8b2f2f5344689c1d.yaml
rename to dd-trace-py/releasenotes/notes/core_context_span_failsafe-8b2f2f5344689c1d.yaml
diff --git a/releasenotes/notes/correct-type-annotations-2ee30779966960b6.yaml b/dd-trace-py/releasenotes/notes/correct-type-annotations-2ee30779966960b6.yaml
similarity index 100%
rename from releasenotes/notes/correct-type-annotations-2ee30779966960b6.yaml
rename to dd-trace-py/releasenotes/notes/correct-type-annotations-2ee30779966960b6.yaml
diff --git a/releasenotes/notes/correctly-parse-payload_tagging_services-794cdf0f340975e6.yaml b/dd-trace-py/releasenotes/notes/correctly-parse-payload_tagging_services-794cdf0f340975e6.yaml
similarity index 100%
rename from releasenotes/notes/correctly-parse-payload_tagging_services-794cdf0f340975e6.yaml
rename to dd-trace-py/releasenotes/notes/correctly-parse-payload_tagging_services-794cdf0f340975e6.yaml
diff --git a/releasenotes/notes/cov-crash-e1ab3aff6f8aa3e0.yaml b/dd-trace-py/releasenotes/notes/cov-crash-e1ab3aff6f8aa3e0.yaml
similarity index 100%
rename from releasenotes/notes/cov-crash-e1ab3aff6f8aa3e0.yaml
rename to dd-trace-py/releasenotes/notes/cov-crash-e1ab3aff6f8aa3e0.yaml
diff --git a/releasenotes/notes/crashtracker-env-54fe6510de2d6afc.yaml b/dd-trace-py/releasenotes/notes/crashtracker-env-54fe6510de2d6afc.yaml
similarity index 100%
rename from releasenotes/notes/crashtracker-env-54fe6510de2d6afc.yaml
rename to dd-trace-py/releasenotes/notes/crashtracker-env-54fe6510de2d6afc.yaml
diff --git a/releasenotes/notes/crashtracker-receiver-env-f54ab26496183a6b.yaml b/dd-trace-py/releasenotes/notes/crashtracker-receiver-env-f54ab26496183a6b.yaml
similarity index 100%
rename from releasenotes/notes/crashtracker-receiver-env-f54ab26496183a6b.yaml
rename to dd-trace-py/releasenotes/notes/crashtracker-receiver-env-f54ab26496183a6b.yaml
diff --git a/releasenotes/notes/crewai-fix-8d66e3489f87d046.yaml b/dd-trace-py/releasenotes/notes/crewai-fix-8d66e3489f87d046.yaml
similarity index 100%
rename from releasenotes/notes/crewai-fix-8d66e3489f87d046.yaml
rename to dd-trace-py/releasenotes/notes/crewai-fix-8d66e3489f87d046.yaml
diff --git a/releasenotes/notes/current-span-reset-a860bbbad3acda5c.yaml b/dd-trace-py/releasenotes/notes/current-span-reset-a860bbbad3acda5c.yaml
similarity index 100%
rename from releasenotes/notes/current-span-reset-a860bbbad3acda5c.yaml
rename to dd-trace-py/releasenotes/notes/current-span-reset-a860bbbad3acda5c.yaml
diff --git a/releasenotes/notes/custom_blocking_redirect_request-fcd032a01ed10894.yaml b/dd-trace-py/releasenotes/notes/custom_blocking_redirect_request-fcd032a01ed10894.yaml
similarity index 100%
rename from releasenotes/notes/custom_blocking_redirect_request-fcd032a01ed10894.yaml
rename to dd-trace-py/releasenotes/notes/custom_blocking_redirect_request-fcd032a01ed10894.yaml
diff --git a/releasenotes/notes/custom_scanners-56cead2502735f2b.yaml b/dd-trace-py/releasenotes/notes/custom_scanners-56cead2502735f2b.yaml
similarity index 100%
rename from releasenotes/notes/custom_scanners-56cead2502735f2b.yaml
rename to dd-trace-py/releasenotes/notes/custom_scanners-56cead2502735f2b.yaml
diff --git a/releasenotes/notes/cython-import-fix-a5b86512a7a59017.yaml b/dd-trace-py/releasenotes/notes/cython-import-fix-a5b86512a7a59017.yaml
similarity index 100%
rename from releasenotes/notes/cython-import-fix-a5b86512a7a59017.yaml
rename to dd-trace-py/releasenotes/notes/cython-import-fix-a5b86512a7a59017.yaml
diff --git a/releasenotes/notes/cythonize-lock-profiler-hot-paths-0a6d6a3e25128f2f.yaml b/dd-trace-py/releasenotes/notes/cythonize-lock-profiler-hot-paths-0a6d6a3e25128f2f.yaml
similarity index 100%
rename from releasenotes/notes/cythonize-lock-profiler-hot-paths-0a6d6a3e25128f2f.yaml
rename to dd-trace-py/releasenotes/notes/cythonize-lock-profiler-hot-paths-0a6d6a3e25128f2f.yaml
diff --git a/releasenotes/notes/data-streams-fix-produce-with-payload-b8ba597cbe4bc401.yaml b/dd-trace-py/releasenotes/notes/data-streams-fix-produce-with-payload-b8ba597cbe4bc401.yaml
similarity index 100%
rename from releasenotes/notes/data-streams-fix-produce-with-payload-b8ba597cbe4bc401.yaml
rename to dd-trace-py/releasenotes/notes/data-streams-fix-produce-with-payload-b8ba597cbe4bc401.yaml
diff --git a/releasenotes/notes/data-streams-integration-bb8077b6d8a5daad.yaml b/dd-trace-py/releasenotes/notes/data-streams-integration-bb8077b6d8a5daad.yaml
similarity index 100%
rename from releasenotes/notes/data-streams-integration-bb8077b6d8a5daad.yaml
rename to dd-trace-py/releasenotes/notes/data-streams-integration-bb8077b6d8a5daad.yaml
diff --git a/releasenotes/notes/data-streams-public-api-9655d5b0c7f6f26e.yaml b/dd-trace-py/releasenotes/notes/data-streams-public-api-9655d5b0c7f6f26e.yaml
similarity index 100%
rename from releasenotes/notes/data-streams-public-api-9655d5b0c7f6f26e.yaml
rename to dd-trace-py/releasenotes/notes/data-streams-public-api-9655d5b0c7f6f26e.yaml
diff --git a/releasenotes/notes/datadog-lambda-extension-6ae77025f24a82cc.yaml b/dd-trace-py/releasenotes/notes/datadog-lambda-extension-6ae77025f24a82cc.yaml
similarity index 100%
rename from releasenotes/notes/datadog-lambda-extension-6ae77025f24a82cc.yaml
rename to dd-trace-py/releasenotes/notes/datadog-lambda-extension-6ae77025f24a82cc.yaml
diff --git a/releasenotes/notes/dataset-record-canonical-id-dc7595992db03cef.yaml b/dd-trace-py/releasenotes/notes/dataset-record-canonical-id-dc7595992db03cef.yaml
similarity index 100%
rename from releasenotes/notes/dataset-record-canonical-id-dc7595992db03cef.yaml
rename to dd-trace-py/releasenotes/notes/dataset-record-canonical-id-dc7595992db03cef.yaml
diff --git a/releasenotes/notes/datastreams-add-payload-size-for-kafka-fd115cd2b8ef3365.yaml b/dd-trace-py/releasenotes/notes/datastreams-add-payload-size-for-kafka-fd115cd2b8ef3365.yaml
similarity index 100%
rename from releasenotes/notes/datastreams-add-payload-size-for-kafka-fd115cd2b8ef3365.yaml
rename to dd-trace-py/releasenotes/notes/datastreams-add-payload-size-for-kafka-fd115cd2b8ef3365.yaml
diff --git a/releasenotes/notes/datastreams-fix-sns-raw-delivery-044e514a84e132be.yaml b/dd-trace-py/releasenotes/notes/datastreams-fix-sns-raw-delivery-044e514a84e132be.yaml
similarity index 100%
rename from releasenotes/notes/datastreams-fix-sns-raw-delivery-044e514a84e132be.yaml
rename to dd-trace-py/releasenotes/notes/datastreams-fix-sns-raw-delivery-044e514a84e132be.yaml
diff --git a/releasenotes/notes/dbapi-ctx-manager-008915d487d9f50d.yaml b/dd-trace-py/releasenotes/notes/dbapi-ctx-manager-008915d487d9f50d.yaml
similarity index 100%
rename from releasenotes/notes/dbapi-ctx-manager-008915d487d9f50d.yaml
rename to dd-trace-py/releasenotes/notes/dbapi-ctx-manager-008915d487d9f50d.yaml
diff --git a/releasenotes/notes/dbapi-rowcount-3cf18b68114a6cad.yaml b/dd-trace-py/releasenotes/notes/dbapi-rowcount-3cf18b68114a6cad.yaml
similarity index 100%
rename from releasenotes/notes/dbapi-rowcount-3cf18b68114a6cad.yaml
rename to dd-trace-py/releasenotes/notes/dbapi-rowcount-3cf18b68114a6cad.yaml
diff --git a/releasenotes/notes/dbapi2-deprecate-analytics-config-ececae6e9274f852.yaml b/dd-trace-py/releasenotes/notes/dbapi2-deprecate-analytics-config-ececae6e9274f852.yaml
similarity index 100%
rename from releasenotes/notes/dbapi2-deprecate-analytics-config-ececae6e9274f852.yaml
rename to dd-trace-py/releasenotes/notes/dbapi2-deprecate-analytics-config-ececae6e9274f852.yaml
diff --git a/releasenotes/notes/dbm-add-peer-entity-comment-attributes-6acca7a4f3d888cb.yaml b/dd-trace-py/releasenotes/notes/dbm-add-peer-entity-comment-attributes-6acca7a4f3d888cb.yaml
similarity index 100%
rename from releasenotes/notes/dbm-add-peer-entity-comment-attributes-6acca7a4f3d888cb.yaml
rename to dd-trace-py/releasenotes/notes/dbm-add-peer-entity-comment-attributes-6acca7a4f3d888cb.yaml
diff --git a/releasenotes/notes/dbm-fix-for-peer-service-ea46572a0daa08ec.yaml b/dd-trace-py/releasenotes/notes/dbm-fix-for-peer-service-ea46572a0daa08ec.yaml
similarity index 100%
rename from releasenotes/notes/dbm-fix-for-peer-service-ea46572a0daa08ec.yaml
rename to dd-trace-py/releasenotes/notes/dbm-fix-for-peer-service-ea46572a0daa08ec.yaml
diff --git a/releasenotes/notes/dbm-support-sql-queries-with-the-type-bytes-30fb4b75ea2f8cf8.yaml b/dd-trace-py/releasenotes/notes/dbm-support-sql-queries-with-the-type-bytes-30fb4b75ea2f8cf8.yaml
similarity index 100%
rename from releasenotes/notes/dbm-support-sql-queries-with-the-type-bytes-30fb4b75ea2f8cf8.yaml
rename to dd-trace-py/releasenotes/notes/dbm-support-sql-queries-with-the-type-bytes-30fb4b75ea2f8cf8.yaml
diff --git a/releasenotes/notes/dd-trace-methods-wrapping-async-functions-efa8599ac82c45f2.yaml b/dd-trace-py/releasenotes/notes/dd-trace-methods-wrapping-async-functions-efa8599ac82c45f2.yaml
similarity index 100%
rename from releasenotes/notes/dd-trace-methods-wrapping-async-functions-efa8599ac82c45f2.yaml
rename to dd-trace-py/releasenotes/notes/dd-trace-methods-wrapping-async-functions-efa8599ac82c45f2.yaml
diff --git a/releasenotes/notes/ddtags-space-82407d0d3f0426cd.yaml b/dd-trace-py/releasenotes/notes/ddtags-space-82407d0d3f0426cd.yaml
similarity index 100%
rename from releasenotes/notes/ddtags-space-82407d0d3f0426cd.yaml
rename to dd-trace-py/releasenotes/notes/ddtags-space-82407d0d3f0426cd.yaml
diff --git a/releasenotes/notes/ddtrace-1.0-disable-basic-config-call-by-default-b677844e4a13a794.yaml b/dd-trace-py/releasenotes/notes/ddtrace-1.0-disable-basic-config-call-by-default-b677844e4a13a794.yaml
similarity index 100%
rename from releasenotes/notes/ddtrace-1.0-disable-basic-config-call-by-default-b677844e4a13a794.yaml
rename to dd-trace-py/releasenotes/notes/ddtrace-1.0-disable-basic-config-call-by-default-b677844e4a13a794.yaml
diff --git a/releasenotes/notes/ddtrace-resourcefilter-deprecated-52b1c92d388b0518.yaml b/dd-trace-py/releasenotes/notes/ddtrace-resourcefilter-deprecated-52b1c92d388b0518.yaml
similarity index 100%
rename from releasenotes/notes/ddtrace-resourcefilter-deprecated-52b1c92d388b0518.yaml
rename to dd-trace-py/releasenotes/notes/ddtrace-resourcefilter-deprecated-52b1c92d388b0518.yaml
diff --git a/releasenotes/notes/ddtrace-run-enhancements-eb156e6722164894.yaml b/dd-trace-py/releasenotes/notes/ddtrace-run-enhancements-eb156e6722164894.yaml
similarity index 100%
rename from releasenotes/notes/ddtrace-run-enhancements-eb156e6722164894.yaml
rename to dd-trace-py/releasenotes/notes/ddtrace-run-enhancements-eb156e6722164894.yaml
diff --git a/releasenotes/notes/ddtraceapi-clobber-809a4d88df9a29dc.yaml b/dd-trace-py/releasenotes/notes/ddtraceapi-clobber-809a4d88df9a29dc.yaml
similarity index 100%
rename from releasenotes/notes/ddtraceapi-clobber-809a4d88df9a29dc.yaml
rename to dd-trace-py/releasenotes/notes/ddtraceapi-clobber-809a4d88df9a29dc.yaml
diff --git a/releasenotes/notes/ddtracemethods-56cbda5e38a8e15c.yaml b/dd-trace-py/releasenotes/notes/ddtracemethods-56cbda5e38a8e15c.yaml
similarity index 100%
rename from releasenotes/notes/ddtracemethods-56cbda5e38a8e15c.yaml
rename to dd-trace-py/releasenotes/notes/ddtracemethods-56cbda5e38a8e15c.yaml
diff --git a/releasenotes/notes/ddtracerun-gevent-928b4050fd96f142.yaml b/dd-trace-py/releasenotes/notes/ddtracerun-gevent-928b4050fd96f142.yaml
similarity index 100%
rename from releasenotes/notes/ddtracerun-gevent-928b4050fd96f142.yaml
rename to dd-trace-py/releasenotes/notes/ddtracerun-gevent-928b4050fd96f142.yaml
diff --git a/releasenotes/notes/ddup-check-spanid-10133c60787ba30c.yaml b/dd-trace-py/releasenotes/notes/ddup-check-spanid-10133c60787ba30c.yaml
similarity index 100%
rename from releasenotes/notes/ddup-check-spanid-10133c60787ba30c.yaml
rename to dd-trace-py/releasenotes/notes/ddup-check-spanid-10133c60787ba30c.yaml
diff --git a/releasenotes/notes/debugging-probe-source-file-resolution-bd73a5fd172c3711.yaml b/dd-trace-py/releasenotes/notes/debugging-probe-source-file-resolution-bd73a5fd172c3711.yaml
similarity index 100%
rename from releasenotes/notes/debugging-probe-source-file-resolution-bd73a5fd172c3711.yaml
rename to dd-trace-py/releasenotes/notes/debugging-probe-source-file-resolution-bd73a5fd172c3711.yaml
diff --git a/releasenotes/notes/decrease_max_string_size-6a2802b4ce6a90af.yaml b/dd-trace-py/releasenotes/notes/decrease_max_string_size-6a2802b4ce6a90af.yaml
similarity index 100%
rename from releasenotes/notes/decrease_max_string_size-6a2802b4ce6a90af.yaml
rename to dd-trace-py/releasenotes/notes/decrease_max_string_size-6a2802b4ce6a90af.yaml
diff --git a/releasenotes/notes/deep-eval-evaluator-support-experiments-db17355fcc63d3c4.yaml b/dd-trace-py/releasenotes/notes/deep-eval-evaluator-support-experiments-db17355fcc63d3c4.yaml
similarity index 100%
rename from releasenotes/notes/deep-eval-evaluator-support-experiments-db17355fcc63d3c4.yaml
rename to dd-trace-py/releasenotes/notes/deep-eval-evaluator-support-experiments-db17355fcc63d3c4.yaml
diff --git a/releasenotes/notes/deepseek-openai-39564ebad1b6f98d.yaml b/dd-trace-py/releasenotes/notes/deepseek-openai-39564ebad1b6f98d.yaml
similarity index 100%
rename from releasenotes/notes/deepseek-openai-39564ebad1b6f98d.yaml
rename to dd-trace-py/releasenotes/notes/deepseek-openai-39564ebad1b6f98d.yaml
diff --git a/releasenotes/notes/default-processor-structlog-35daae1f7c2df4e4.yaml b/dd-trace-py/releasenotes/notes/default-processor-structlog-35daae1f7c2df4e4.yaml
similarity index 100%
rename from releasenotes/notes/default-processor-structlog-35daae1f7c2df4e4.yaml
rename to dd-trace-py/releasenotes/notes/default-processor-structlog-35daae1f7c2df4e4.yaml
diff --git a/releasenotes/notes/denylist-extend-more-f0d96917c50d43cf.yaml b/dd-trace-py/releasenotes/notes/denylist-extend-more-f0d96917c50d43cf.yaml
similarity index 100%
rename from releasenotes/notes/denylist-extend-more-f0d96917c50d43cf.yaml
rename to dd-trace-py/releasenotes/notes/denylist-extend-more-f0d96917c50d43cf.yaml
diff --git a/releasenotes/notes/depends-on-attrs-19687d5b7a597744.yaml b/dd-trace-py/releasenotes/notes/depends-on-attrs-19687d5b7a597744.yaml
similarity index 100%
rename from releasenotes/notes/depends-on-attrs-19687d5b7a597744.yaml
rename to dd-trace-py/releasenotes/notes/depends-on-attrs-19687d5b7a597744.yaml
diff --git a/releasenotes/notes/depends-on-six-e9b79edbf0d169a2.yaml b/dd-trace-py/releasenotes/notes/depends-on-six-e9b79edbf0d169a2.yaml
similarity index 100%
rename from releasenotes/notes/depends-on-six-e9b79edbf0d169a2.yaml
rename to dd-trace-py/releasenotes/notes/depends-on-six-e9b79edbf0d169a2.yaml
diff --git a/releasenotes/notes/deprecate-128-bit-traceid-logging-enabled-config-37ae453f866726aa.yaml b/dd-trace-py/releasenotes/notes/deprecate-128-bit-traceid-logging-enabled-config-37ae453f866726aa.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-128-bit-traceid-logging-enabled-config-37ae453f866726aa.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-128-bit-traceid-logging-enabled-config-37ae453f866726aa.yaml
diff --git a/releasenotes/notes/deprecate-DD_TRACE_SPAN_AGGREGATOR_RLOCK-eb1ca91f7c1dd2b0.yaml b/dd-trace-py/releasenotes/notes/deprecate-DD_TRACE_SPAN_AGGREGATOR_RLOCK-eb1ca91f7c1dd2b0.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-DD_TRACE_SPAN_AGGREGATOR_RLOCK-eb1ca91f7c1dd2b0.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-DD_TRACE_SPAN_AGGREGATOR_RLOCK-eb1ca91f7c1dd2b0.yaml
diff --git a/releasenotes/notes/deprecate-additional-datadog-env-4077d12f08f91bed.yaml b/dd-trace-py/releasenotes/notes/deprecate-additional-datadog-env-4077d12f08f91bed.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-additional-datadog-env-4077d12f08f91bed.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-additional-datadog-env-4077d12f08f91bed.yaml
diff --git a/releasenotes/notes/deprecate-aiohttp_jinja2-patching-from-aiohttp-be87600f308ca87a.yaml b/dd-trace-py/releasenotes/notes/deprecate-aiohttp_jinja2-patching-from-aiohttp-be87600f308ca87a.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-aiohttp_jinja2-patching-from-aiohttp-be87600f308ca87a.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-aiohttp_jinja2-patching-from-aiohttp-be87600f308ca87a.yaml
diff --git a/releasenotes/notes/deprecate-aioredis-e4a356f920de2cfe.yaml b/dd-trace-py/releasenotes/notes/deprecate-aioredis-e4a356f920de2cfe.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-aioredis-e4a356f920de2cfe.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-aioredis-e4a356f920de2cfe.yaml
diff --git a/releasenotes/notes/deprecate-app-analytics-9718797d7a788275.yaml b/dd-trace-py/releasenotes/notes/deprecate-app-analytics-9718797d7a788275.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-app-analytics-9718797d7a788275.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-app-analytics-9718797d7a788275.yaml
diff --git a/releasenotes/notes/deprecate-asyncontext-provider-f72ea7035a630063.yaml b/dd-trace-py/releasenotes/notes/deprecate-asyncontext-provider-f72ea7035a630063.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-asyncontext-provider-f72ea7035a630063.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-asyncontext-provider-f72ea7035a630063.yaml
diff --git a/releasenotes/notes/deprecate-call-basic-config-2.0-104f1de6e4b3e317.yaml b/dd-trace-py/releasenotes/notes/deprecate-call-basic-config-2.0-104f1de6e4b3e317.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-call-basic-config-2.0-104f1de6e4b3e317.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-call-basic-config-2.0-104f1de6e4b3e317.yaml
diff --git a/releasenotes/notes/deprecate-compat-c70f99dc038bc947.yaml b/dd-trace-py/releasenotes/notes/deprecate-compat-c70f99dc038bc947.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-compat-c70f99dc038bc947.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-compat-c70f99dc038bc947.yaml
diff --git a/releasenotes/notes/deprecate-constant-9bc432d6647766f3.yaml b/dd-trace-py/releasenotes/notes/deprecate-constant-9bc432d6647766f3.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-constant-9bc432d6647766f3.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-constant-9bc432d6647766f3.yaml
diff --git a/releasenotes/notes/deprecate-constants-5e6e2cfdb76662ba.yaml b/dd-trace-py/releasenotes/notes/deprecate-constants-5e6e2cfdb76662ba.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-constants-5e6e2cfdb76662ba.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-constants-5e6e2cfdb76662ba.yaml
diff --git a/releasenotes/notes/deprecate-constants-e6ea6706d38b186f.yaml b/dd-trace-py/releasenotes/notes/deprecate-constants-e6ea6706d38b186f.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-constants-e6ea6706d38b186f.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-constants-e6ea6706d38b186f.yaml
diff --git a/releasenotes/notes/deprecate-datadog-env-3011aafe83b66e37.yaml b/dd-trace-py/releasenotes/notes/deprecate-datadog-env-3011aafe83b66e37.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-datadog-env-3011aafe83b66e37.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-datadog-env-3011aafe83b66e37.yaml
diff --git a/releasenotes/notes/deprecate-datadogsampler-default_sampler-7f4a8f9923cd3c7b.yaml b/dd-trace-py/releasenotes/notes/deprecate-datadogsampler-default_sampler-7f4a8f9923cd3c7b.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-datadogsampler-default_sampler-7f4a8f9923cd3c7b.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-datadogsampler-default_sampler-7f4a8f9923cd3c7b.yaml
diff --git a/releasenotes/notes/deprecate-dbapi-config-0fc5b1acfc4aded2.yaml b/dd-trace-py/releasenotes/notes/deprecate-dbapi-config-0fc5b1acfc4aded2.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-dbapi-config-0fc5b1acfc4aded2.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-dbapi-config-0fc5b1acfc4aded2.yaml
diff --git a/releasenotes/notes/deprecate-dd-trace-inferred-proxy-services-enabled-b4cfa348530638ee.yaml b/dd-trace-py/releasenotes/notes/deprecate-dd-trace-inferred-proxy-services-enabled-b4cfa348530638ee.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-dd-trace-inferred-proxy-services-enabled-b4cfa348530638ee.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-dd-trace-inferred-proxy-services-enabled-b4cfa348530638ee.yaml
diff --git a/releasenotes/notes/deprecate-dd-tracer-configs-b05936f5ab56d128.yaml b/dd-trace-py/releasenotes/notes/deprecate-dd-tracer-configs-b05936f5ab56d128.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-dd-tracer-configs-b05936f5ab56d128.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-dd-tracer-configs-b05936f5ab56d128.yaml
diff --git a/releasenotes/notes/deprecate-dd_trace_global_tags-b3d29bddc3dffe0c.yaml b/dd-trace-py/releasenotes/notes/deprecate-dd_trace_global_tags-b3d29bddc3dffe0c.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-dd_trace_global_tags-b3d29bddc3dffe0c.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-dd_trace_global_tags-b3d29bddc3dffe0c.yaml
diff --git a/releasenotes/notes/deprecate-ddtrace-encoding-84ffb8a36694161f.yaml b/dd-trace-py/releasenotes/notes/deprecate-ddtrace-encoding-84ffb8a36694161f.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-ddtrace-encoding-84ffb8a36694161f.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-ddtrace-encoding-84ffb8a36694161f.yaml
diff --git a/releasenotes/notes/deprecate-ddtrace-http-ce198e779de69237.yaml b/dd-trace-py/releasenotes/notes/deprecate-ddtrace-http-ce198e779de69237.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-ddtrace-http-ce198e779de69237.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-ddtrace-http-ce198e779de69237.yaml
diff --git a/releasenotes/notes/deprecate-ddtrace-trace-Pin-7c8daacc505dc5cb.yaml b/dd-trace-py/releasenotes/notes/deprecate-ddtrace-trace-Pin-7c8daacc505dc5cb.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-ddtrace-trace-Pin-7c8daacc505dc5cb.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-ddtrace-trace-Pin-7c8daacc505dc5cb.yaml
diff --git a/releasenotes/notes/deprecate-env-var-7e85262ddf9bd989.yaml b/dd-trace-py/releasenotes/notes/deprecate-env-var-7e85262ddf9bd989.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-env-var-7e85262ddf9bd989.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-env-var-7e85262ddf9bd989.yaml
diff --git a/releasenotes/notes/deprecate-hooks-class-38cf5f31b8344384.yaml b/dd-trace-py/releasenotes/notes/deprecate-hooks-class-38cf5f31b8344384.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-hooks-class-38cf5f31b8344384.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-hooks-class-38cf5f31b8344384.yaml
diff --git a/releasenotes/notes/deprecate-http-server-config-82e5e9b9c7ac0024.yaml b/dd-trace-py/releasenotes/notes/deprecate-http-server-config-82e5e9b9c7ac0024.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-http-server-config-82e5e9b9c7ac0024.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-http-server-config-82e5e9b9c7ac0024.yaml
diff --git a/releasenotes/notes/deprecate-import-ddtrace-settings-208007d3b71de8a8.yaml b/dd-trace-py/releasenotes/notes/deprecate-import-ddtrace-settings-208007d3b71de8a8.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-import-ddtrace-settings-208007d3b71de8a8.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-import-ddtrace-settings-208007d3b71de8a8.yaml
diff --git a/releasenotes/notes/deprecate-langchain-openai-cost-042f3a04cda9d23b.yaml b/dd-trace-py/releasenotes/notes/deprecate-langchain-openai-cost-042f3a04cda9d23b.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-langchain-openai-cost-042f3a04cda9d23b.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-langchain-openai-cost-042f3a04cda9d23b.yaml
diff --git a/releasenotes/notes/deprecate-mongodb-rows-constant-16e2c043bfdbca9b.yaml b/dd-trace-py/releasenotes/notes/deprecate-mongodb-rows-constant-16e2c043bfdbca9b.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-mongodb-rows-constant-16e2c043bfdbca9b.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-mongodb-rows-constant-16e2c043bfdbca9b.yaml
diff --git a/releasenotes/notes/deprecate-monkey-functions-01f8080ab711ae74.yaml b/dd-trace-py/releasenotes/notes/deprecate-monkey-functions-01f8080ab711ae74.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-monkey-functions-01f8080ab711ae74.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-monkey-functions-01f8080ab711ae74.yaml
diff --git a/releasenotes/notes/deprecate-multiple-tracer-instances-078b920081ba4a36.yaml b/dd-trace-py/releasenotes/notes/deprecate-multiple-tracer-instances-078b920081ba4a36.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-multiple-tracer-instances-078b920081ba4a36.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-multiple-tracer-instances-078b920081ba4a36.yaml
diff --git a/releasenotes/notes/deprecate-non_active_span-http-prop-dc0cf2cd7a033e08.yaml b/dd-trace-py/releasenotes/notes/deprecate-non_active_span-http-prop-dc0cf2cd7a033e08.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-non_active_span-http-prop-dc0cf2cd7a033e08.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-non_active_span-http-prop-dc0cf2cd7a033e08.yaml
diff --git a/releasenotes/notes/deprecate-older-tornado-versions-381d2f4e6c4c8288.yaml b/dd-trace-py/releasenotes/notes/deprecate-older-tornado-versions-381d2f4e6c4c8288.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-older-tornado-versions-381d2f4e6c4c8288.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-older-tornado-versions-381d2f4e6c4c8288.yaml
diff --git a/releasenotes/notes/deprecate-opentracing-6d3e10a0581717a6.yaml b/dd-trace-py/releasenotes/notes/deprecate-opentracing-6d3e10a0581717a6.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-opentracing-6d3e10a0581717a6.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-opentracing-6d3e10a0581717a6.yaml
diff --git a/releasenotes/notes/deprecate-patch-py-methods-consul-botocore-da36c9501c7fc279.yaml b/dd-trace-py/releasenotes/notes/deprecate-patch-py-methods-consul-botocore-da36c9501c7fc279.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-patch-py-methods-consul-botocore-da36c9501c7fc279.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-patch-py-methods-consul-botocore-da36c9501c7fc279.yaml
diff --git a/releasenotes/notes/deprecate-patch-py-methods-psycopg-pylibmc-pymemcache-pymongo-pymysql-pynamodb-pyodbc-pyramid-df1d8182d30d1950.yaml b/dd-trace-py/releasenotes/notes/deprecate-patch-py-methods-psycopg-pylibmc-pymemcache-pymongo-pymysql-pynamodb-pyodbc-pyramid-df1d8182d30d1950.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-patch-py-methods-psycopg-pylibmc-pymemcache-pymongo-pymysql-pynamodb-pyodbc-pyramid-df1d8182d30d1950.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-patch-py-methods-psycopg-pylibmc-pymemcache-pymongo-pymysql-pynamodb-pyodbc-pyramid-df1d8182d30d1950.yaml
diff --git a/releasenotes/notes/deprecate-pin-app-de153348b61a9905.yaml b/dd-trace-py/releasenotes/notes/deprecate-pin-app-de153348b61a9905.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-pin-app-de153348b61a9905.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-pin-app-de153348b61a9905.yaml
diff --git a/releasenotes/notes/deprecate-pin-from-dbapi-2f313fcd6fbe8818.yaml b/dd-trace-py/releasenotes/notes/deprecate-pin-from-dbapi-2f313fcd6fbe8818.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-pin-from-dbapi-2f313fcd6fbe8818.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-pin-from-dbapi-2f313fcd6fbe8818.yaml
diff --git a/releasenotes/notes/deprecate-public-config-attrs-744b806a66d96da4.yaml b/dd-trace-py/releasenotes/notes/deprecate-public-config-attrs-744b806a66d96da4.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-public-config-attrs-744b806a66d96da4.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-public-config-attrs-744b806a66d96da4.yaml
diff --git a/releasenotes/notes/deprecate-public-patch-modules-108e06143646a735.yaml b/dd-trace-py/releasenotes/notes/deprecate-public-patch-modules-108e06143646a735.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-public-patch-modules-108e06143646a735.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-public-patch-modules-108e06143646a735.yaml
diff --git a/releasenotes/notes/deprecate-pyddprofile-41de3d099775ee0c.yaml b/dd-trace-py/releasenotes/notes/deprecate-pyddprofile-41de3d099775ee0c.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-pyddprofile-41de3d099775ee0c.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-pyddprofile-41de3d099775ee0c.yaml
diff --git a/releasenotes/notes/deprecate-runtime-interval-5e3b3f19d4d53b25.yaml b/dd-trace-py/releasenotes/notes/deprecate-runtime-interval-5e3b3f19d4d53b25.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-runtime-interval-5e3b3f19d4d53b25.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-runtime-interval-5e3b3f19d4d53b25.yaml
diff --git a/releasenotes/notes/deprecate-sampling-rate-config-5af8f797b05ff5b5.yaml b/dd-trace-py/releasenotes/notes/deprecate-sampling-rate-config-5af8f797b05ff5b5.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-sampling-rate-config-5af8f797b05ff5b5.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-sampling-rate-config-5af8f797b05ff5b5.yaml
diff --git a/releasenotes/notes/deprecate-serverless-mini-agent-4ca8a43e16b8b660.yaml b/dd-trace-py/releasenotes/notes/deprecate-serverless-mini-agent-4ca8a43e16b8b660.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-serverless-mini-agent-4ca8a43e16b8b660.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-serverless-mini-agent-4ca8a43e16b8b660.yaml
diff --git a/releasenotes/notes/deprecate-span-finished-finish-with-ancestors-c75633a9baaa9463.yaml b/dd-trace-py/releasenotes/notes/deprecate-span-finished-finish-with-ancestors-c75633a9baaa9463.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-span-finished-finish-with-ancestors-c75633a9baaa9463.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-span-finished-finish-with-ancestors-c75633a9baaa9463.yaml
diff --git a/releasenotes/notes/deprecate-span-get-set-meta-c6fb2528d198414c.yaml b/dd-trace-py/releasenotes/notes/deprecate-span-get-set-meta-c6fb2528d198414c.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-span-get-set-meta-c6fb2528d198414c.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-span-get-set-meta-c6fb2528d198414c.yaml
diff --git a/releasenotes/notes/deprecate-span-meta-ad1c96ba55acaac9.yaml b/dd-trace-py/releasenotes/notes/deprecate-span-meta-ad1c96ba55acaac9.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-span-meta-ad1c96ba55acaac9.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-span-meta-ad1c96ba55acaac9.yaml
diff --git a/releasenotes/notes/deprecate-span-metrics-89e72fb008a567d6.yaml b/dd-trace-py/releasenotes/notes/deprecate-span-metrics-89e72fb008a567d6.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-span-metrics-89e72fb008a567d6.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-span-metrics-89e72fb008a567d6.yaml
diff --git a/releasenotes/notes/deprecate-span-pprint-master-101afa039a6bbaee.yaml b/dd-trace-py/releasenotes/notes/deprecate-span-pprint-master-101afa039a6bbaee.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-span-pprint-master-101afa039a6bbaee.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-span-pprint-master-101afa039a6bbaee.yaml
diff --git a/releasenotes/notes/deprecate-span-set-struct-tag-892a4009bb4b2307.yaml b/dd-trace-py/releasenotes/notes/deprecate-span-set-struct-tag-892a4009bb4b2307.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-span-set-struct-tag-892a4009bb4b2307.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-span-set-struct-tag-892a4009bb4b2307.yaml
diff --git a/releasenotes/notes/deprecate-span-set-tag-str-451bf8951a998dfc.yaml b/dd-trace-py/releasenotes/notes/deprecate-span-set-tag-str-451bf8951a998dfc.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-span-set-tag-str-451bf8951a998dfc.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-span-set-tag-str-451bf8951a998dfc.yaml
diff --git a/releasenotes/notes/deprecate-span-tracer-master-6c8666cf49ee4f4a.yaml b/dd-trace-py/releasenotes/notes/deprecate-span-tracer-master-6c8666cf49ee4f4a.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-span-tracer-master-6c8666cf49ee4f4a.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-span-tracer-master-6c8666cf49ee4f4a.yaml
diff --git a/releasenotes/notes/deprecate-submit-evaluation-for-b38590814c634d95.yaml b/dd-trace-py/releasenotes/notes/deprecate-submit-evaluation-for-b38590814c634d95.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-submit-evaluation-for-b38590814c634d95.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-submit-evaluation-for-b38590814c634d95.yaml
diff --git a/releasenotes/notes/deprecate-tornado-programmatic-api-5f7a8b9c1d2e3f4a.yaml b/dd-trace-py/releasenotes/notes/deprecate-tornado-programmatic-api-5f7a8b9c1d2e3f4a.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-tornado-programmatic-api-5f7a8b9c1d2e3f4a.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-tornado-programmatic-api-5f7a8b9c1d2e3f4a.yaml
diff --git a/releasenotes/notes/deprecate-tracer-data-streams-processor-ae92aab393928aba.yaml b/dd-trace-py/releasenotes/notes/deprecate-tracer-data-streams-processor-ae92aab393928aba.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-tracer-data-streams-processor-ae92aab393928aba.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-tracer-data-streams-processor-ae92aab393928aba.yaml
diff --git a/releasenotes/notes/deprecate-tracer-log-attribute-a7fb4c9c23d5b7b4.yaml b/dd-trace-py/releasenotes/notes/deprecate-tracer-log-attribute-a7fb4c9c23d5b7b4.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-tracer-log-attribute-a7fb4c9c23d5b7b4.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-tracer-log-attribute-a7fb4c9c23d5b7b4.yaml
diff --git a/releasenotes/notes/deprecate-tracer-on-start-span-d0f61f34cfd1169b.yaml b/dd-trace-py/releasenotes/notes/deprecate-tracer-on-start-span-d0f61f34cfd1169b.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-tracer-on-start-span-d0f61f34cfd1169b.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-tracer-on-start-span-d0f61f34cfd1169b.yaml
diff --git a/releasenotes/notes/deprecate-tracer-sampler-attribute-c7c9d0523a8162a7.yaml b/dd-trace-py/releasenotes/notes/deprecate-tracer-sampler-attribute-c7c9d0523a8162a7.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-tracer-sampler-attribute-c7c9d0523a8162a7.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-tracer-sampler-attribute-c7c9d0523a8162a7.yaml
diff --git a/releasenotes/notes/deprecate-tracer-tags-attribute-e1b3706820110a09.yaml b/dd-trace-py/releasenotes/notes/deprecate-tracer-tags-attribute-e1b3706820110a09.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-tracer-tags-attribute-e1b3706820110a09.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-tracer-tags-attribute-e1b3706820110a09.yaml
diff --git a/releasenotes/notes/deprecate-tracer-writer-b4921987ad47a832.yaml b/dd-trace-py/releasenotes/notes/deprecate-tracer-writer-b4921987ad47a832.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-tracer-writer-b4921987ad47a832.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-tracer-writer-b4921987ad47a832.yaml
diff --git a/releasenotes/notes/deprecate-yaaredis-fe7ec032b017778d.yaml b/dd-trace-py/releasenotes/notes/deprecate-yaaredis-fe7ec032b017778d.yaml
similarity index 100%
rename from releasenotes/notes/deprecate-yaaredis-fe7ec032b017778d.yaml
rename to dd-trace-py/releasenotes/notes/deprecate-yaaredis-fe7ec032b017778d.yaml
diff --git a/releasenotes/notes/deprecate_DD_HTTP_CLIENT_TAG_QUERY_STRING-67f6580ba582e042.yaml b/dd-trace-py/releasenotes/notes/deprecate_DD_HTTP_CLIENT_TAG_QUERY_STRING-67f6580ba582e042.yaml
similarity index 100%
rename from releasenotes/notes/deprecate_DD_HTTP_CLIENT_TAG_QUERY_STRING-67f6580ba582e042.yaml
rename to dd-trace-py/releasenotes/notes/deprecate_DD_HTTP_CLIENT_TAG_QUERY_STRING-67f6580ba582e042.yaml
diff --git a/releasenotes/notes/deprecate_b3_propagation_style_for_b3multi-d8c31144253a1b39.yaml b/dd-trace-py/releasenotes/notes/deprecate_b3_propagation_style_for_b3multi-d8c31144253a1b39.yaml
similarity index 100%
rename from releasenotes/notes/deprecate_b3_propagation_style_for_b3multi-d8c31144253a1b39.yaml
rename to dd-trace-py/releasenotes/notes/deprecate_b3_propagation_style_for_b3multi-d8c31144253a1b39.yaml
diff --git a/releasenotes/notes/deprecate_dd_log_format-bce67441fe2c92cb.yaml b/dd-trace-py/releasenotes/notes/deprecate_dd_log_format-bce67441fe2c92cb.yaml
similarity index 100%
rename from releasenotes/notes/deprecate_dd_log_format-bce67441fe2c92cb.yaml
rename to dd-trace-py/releasenotes/notes/deprecate_dd_log_format-bce67441fe2c92cb.yaml
diff --git a/releasenotes/notes/deprecate_external_ddtrace.propagation.utils-e5106df5b4723310.yaml b/dd-trace-py/releasenotes/notes/deprecate_external_ddtrace.propagation.utils-e5106df5b4723310.yaml
similarity index 100%
rename from releasenotes/notes/deprecate_external_ddtrace.propagation.utils-e5106df5b4723310.yaml
rename to dd-trace-py/releasenotes/notes/deprecate_external_ddtrace.propagation.utils-e5106df5b4723310.yaml
diff --git a/releasenotes/notes/deprecate_patch_all-244eddcfacb1da14.yaml b/dd-trace-py/releasenotes/notes/deprecate_patch_all-244eddcfacb1da14.yaml
similarity index 100%
rename from releasenotes/notes/deprecate_patch_all-244eddcfacb1da14.yaml
rename to dd-trace-py/releasenotes/notes/deprecate_patch_all-244eddcfacb1da14.yaml
diff --git a/releasenotes/notes/deprecate_tracer_sampler-69c81b7ccf8fb6f9.yaml b/dd-trace-py/releasenotes/notes/deprecate_tracer_sampler-69c81b7ccf8fb6f9.yaml
similarity index 100%
rename from releasenotes/notes/deprecate_tracer_sampler-69c81b7ccf8fb6f9.yaml
rename to dd-trace-py/releasenotes/notes/deprecate_tracer_sampler-69c81b7ccf8fb6f9.yaml
diff --git a/releasenotes/notes/deps-pin-5d4111479a0cc33b.yaml b/dd-trace-py/releasenotes/notes/deps-pin-5d4111479a0cc33b.yaml
similarity index 100%
rename from releasenotes/notes/deps-pin-5d4111479a0cc33b.yaml
rename to dd-trace-py/releasenotes/notes/deps-pin-5d4111479a0cc33b.yaml
diff --git a/releasenotes/notes/detect-attack-on-flask-body-9305779e1c804b24.yaml b/dd-trace-py/releasenotes/notes/detect-attack-on-flask-body-9305779e1c804b24.yaml
similarity index 100%
rename from releasenotes/notes/detect-attack-on-flask-body-9305779e1c804b24.yaml
rename to dd-trace-py/releasenotes/notes/detect-attack-on-flask-body-9305779e1c804b24.yaml
diff --git a/releasenotes/notes/detect-attacks-on-path-params-d6d06c22573d22e8.yaml b/dd-trace-py/releasenotes/notes/detect-attacks-on-path-params-d6d06c22573d22e8.yaml
similarity index 100%
rename from releasenotes/notes/detect-attacks-on-path-params-d6d06c22573d22e8.yaml
rename to dd-trace-py/releasenotes/notes/detect-attacks-on-path-params-d6d06c22573d22e8.yaml
diff --git a/releasenotes/notes/di-remove-deprecated-var-d61cf16b8608c7bd.yaml b/dd-trace-py/releasenotes/notes/di-remove-deprecated-var-d61cf16b8608c7bd.yaml
similarity index 100%
rename from releasenotes/notes/di-remove-deprecated-var-d61cf16b8608c7bd.yaml
rename to dd-trace-py/releasenotes/notes/di-remove-deprecated-var-d61cf16b8608c7bd.yaml
diff --git a/releasenotes/notes/disable-76545e225ff1b3f4.yaml b/dd-trace-py/releasenotes/notes/disable-76545e225ff1b3f4.yaml
similarity index 100%
rename from releasenotes/notes/disable-76545e225ff1b3f4.yaml
rename to dd-trace-py/releasenotes/notes/disable-76545e225ff1b3f4.yaml
diff --git a/releasenotes/notes/disable-code-origin-exit-spans-86a0cb0d1619753f.yaml b/dd-trace-py/releasenotes/notes/disable-code-origin-exit-spans-86a0cb0d1619753f.yaml
similarity index 100%
rename from releasenotes/notes/disable-code-origin-exit-spans-86a0cb0d1619753f.yaml
rename to dd-trace-py/releasenotes/notes/disable-code-origin-exit-spans-86a0cb0d1619753f.yaml
diff --git a/releasenotes/notes/disable-internal-tag-propagation-dff3e799fb056584.yaml b/dd-trace-py/releasenotes/notes/disable-internal-tag-propagation-dff3e799fb056584.yaml
similarity index 100%
rename from releasenotes/notes/disable-internal-tag-propagation-dff3e799fb056584.yaml
rename to dd-trace-py/releasenotes/notes/disable-internal-tag-propagation-dff3e799fb056584.yaml
diff --git a/releasenotes/notes/disable-log-injection-on-otlp-logs-deefa7c4d68c08de.yaml b/dd-trace-py/releasenotes/notes/disable-log-injection-on-otlp-logs-deefa7c4d68c08de.yaml
similarity index 100%
rename from releasenotes/notes/disable-log-injection-on-otlp-logs-deefa7c4d68c08de.yaml
rename to dd-trace-py/releasenotes/notes/disable-log-injection-on-otlp-logs-deefa7c4d68c08de.yaml
diff --git a/releasenotes/notes/disable-multiple-assign-02565491d5d74083.yaml b/dd-trace-py/releasenotes/notes/disable-multiple-assign-02565491d5d74083.yaml
similarity index 100%
rename from releasenotes/notes/disable-multiple-assign-02565491d5d74083.yaml
rename to dd-trace-py/releasenotes/notes/disable-multiple-assign-02565491d5d74083.yaml
diff --git a/releasenotes/notes/disable-native-logger-8eb3bd7b50afd33f.yaml b/dd-trace-py/releasenotes/notes/disable-native-logger-8eb3bd7b50afd33f.yaml
similarity index 100%
rename from releasenotes/notes/disable-native-logger-8eb3bd7b50afd33f.yaml
rename to dd-trace-py/releasenotes/notes/disable-native-logger-8eb3bd7b50afd33f.yaml
diff --git a/releasenotes/notes/disable_threats_grpc-f33dde76ef815787.yaml b/dd-trace-py/releasenotes/notes/disable_threats_grpc-f33dde76ef815787.yaml
similarity index 100%
rename from releasenotes/notes/disable_threats_grpc-f33dde76ef815787.yaml
rename to dd-trace-py/releasenotes/notes/disable_threats_grpc-f33dde76ef815787.yaml
diff --git a/releasenotes/notes/django-2ebd5565ee27d4d1.yaml b/dd-trace-py/releasenotes/notes/django-2ebd5565ee27d4d1.yaml
similarity index 100%
rename from releasenotes/notes/django-2ebd5565ee27d4d1.yaml
rename to dd-trace-py/releasenotes/notes/django-2ebd5565ee27d4d1.yaml
diff --git a/releasenotes/notes/django-4-support-eadd627959b9344e.yaml b/dd-trace-py/releasenotes/notes/django-4-support-eadd627959b9344e.yaml
similarity index 100%
rename from releasenotes/notes/django-4-support-eadd627959b9344e.yaml
rename to dd-trace-py/releasenotes/notes/django-4-support-eadd627959b9344e.yaml
diff --git a/releasenotes/notes/django-404-214280e31b72571c.yaml b/dd-trace-py/releasenotes/notes/django-404-214280e31b72571c.yaml
similarity index 100%
rename from releasenotes/notes/django-404-214280e31b72571c.yaml
rename to dd-trace-py/releasenotes/notes/django-404-214280e31b72571c.yaml
diff --git a/releasenotes/notes/django-9ce233836fca5d93.yaml b/dd-trace-py/releasenotes/notes/django-9ce233836fca5d93.yaml
similarity index 100%
rename from releasenotes/notes/django-9ce233836fca5d93.yaml
rename to dd-trace-py/releasenotes/notes/django-9ce233836fca5d93.yaml
diff --git a/releasenotes/notes/django-asgi-69a53398d9596679.yaml b/dd-trace-py/releasenotes/notes/django-asgi-69a53398d9596679.yaml
similarity index 100%
rename from releasenotes/notes/django-asgi-69a53398d9596679.yaml
rename to dd-trace-py/releasenotes/notes/django-asgi-69a53398d9596679.yaml
diff --git a/releasenotes/notes/django-bug-fix-5cc969608b325c66.yaml b/dd-trace-py/releasenotes/notes/django-bug-fix-5cc969608b325c66.yaml
similarity index 100%
rename from releasenotes/notes/django-bug-fix-5cc969608b325c66.yaml
rename to dd-trace-py/releasenotes/notes/django-bug-fix-5cc969608b325c66.yaml
diff --git a/releasenotes/notes/django-cache-service-name-schematization-bef19b44b7414016.yaml b/dd-trace-py/releasenotes/notes/django-cache-service-name-schematization-bef19b44b7414016.yaml
similarity index 100%
rename from releasenotes/notes/django-cache-service-name-schematization-bef19b44b7414016.yaml
rename to dd-trace-py/releasenotes/notes/django-cache-service-name-schematization-bef19b44b7414016.yaml
diff --git a/releasenotes/notes/django-fix-view-names-55a357e1ac903ea5.yaml b/dd-trace-py/releasenotes/notes/django-fix-view-names-55a357e1ac903ea5.yaml
similarity index 100%
rename from releasenotes/notes/django-fix-view-names-55a357e1ac903ea5.yaml
rename to dd-trace-py/releasenotes/notes/django-fix-view-names-55a357e1ac903ea5.yaml
diff --git a/releasenotes/notes/django-http-route-fix-913850f0d53a74b7.yaml b/dd-trace-py/releasenotes/notes/django-http-route-fix-913850f0d53a74b7.yaml
similarity index 100%
rename from releasenotes/notes/django-http-route-fix-913850f0d53a74b7.yaml
rename to dd-trace-py/releasenotes/notes/django-http-route-fix-913850f0d53a74b7.yaml
diff --git a/releasenotes/notes/django-key-error-be8812133f0ef920.yaml b/dd-trace-py/releasenotes/notes/django-key-error-be8812133f0ef920.yaml
similarity index 100%
rename from releasenotes/notes/django-key-error-be8812133f0ef920.yaml
rename to dd-trace-py/releasenotes/notes/django-key-error-be8812133f0ef920.yaml
diff --git a/releasenotes/notes/django-multiple-function-middleware-54999c787cf003a0.yaml b/dd-trace-py/releasenotes/notes/django-multiple-function-middleware-54999c787cf003a0.yaml
similarity index 100%
rename from releasenotes/notes/django-multiple-function-middleware-54999c787cf003a0.yaml
rename to dd-trace-py/releasenotes/notes/django-multiple-function-middleware-54999c787cf003a0.yaml
diff --git a/releasenotes/notes/django-request-uri-safe-guards-fdd8bd664374ded1.yaml b/dd-trace-py/releasenotes/notes/django-request-uri-safe-guards-fdd8bd664374ded1.yaml
similarity index 100%
rename from releasenotes/notes/django-request-uri-safe-guards-fdd8bd664374ded1.yaml
rename to dd-trace-py/releasenotes/notes/django-request-uri-safe-guards-fdd8bd664374ded1.yaml
diff --git a/releasenotes/notes/django-set-usr-id-by-default-b99c0f3e6cf530a2.yaml b/dd-trace-py/releasenotes/notes/django-set-usr-id-by-default-b99c0f3e6cf530a2.yaml
similarity index 100%
rename from releasenotes/notes/django-set-usr-id-by-default-b99c0f3e6cf530a2.yaml
rename to dd-trace-py/releasenotes/notes/django-set-usr-id-by-default-b99c0f3e6cf530a2.yaml
diff --git a/releasenotes/notes/django-tracing-minimal-default-81e1531ed01a1980.yaml b/dd-trace-py/releasenotes/notes/django-tracing-minimal-default-81e1531ed01a1980.yaml
similarity index 100%
rename from releasenotes/notes/django-tracing-minimal-default-81e1531ed01a1980.yaml
rename to dd-trace-py/releasenotes/notes/django-tracing-minimal-default-81e1531ed01a1980.yaml
diff --git a/releasenotes/notes/django-view-mro-check-782374fb9c427305.yaml b/dd-trace-py/releasenotes/notes/django-view-mro-check-782374fb9c427305.yaml
similarity index 100%
rename from releasenotes/notes/django-view-mro-check-782374fb9c427305.yaml
rename to dd-trace-py/releasenotes/notes/django-view-mro-check-782374fb9c427305.yaml
diff --git a/releasenotes/notes/django_signup_instrumentation-c7f7db227105c851.yaml b/dd-trace-py/releasenotes/notes/django_signup_instrumentation-c7f7db227105c851.yaml
similarity index 100%
rename from releasenotes/notes/django_signup_instrumentation-c7f7db227105c851.yaml
rename to dd-trace-py/releasenotes/notes/django_signup_instrumentation-c7f7db227105c851.yaml
diff --git a/releasenotes/notes/do-not-patch-bytesio-b16ccc16f36e8b67.yaml b/dd-trace-py/releasenotes/notes/do-not-patch-bytesio-b16ccc16f36e8b67.yaml
similarity index 100%
rename from releasenotes/notes/do-not-patch-bytesio-b16ccc16f36e8b67.yaml
rename to dd-trace-py/releasenotes/notes/do-not-patch-bytesio-b16ccc16f36e8b67.yaml
diff --git a/releasenotes/notes/do-not-use-multiprocessing-queue-in-aws-lambda-99fd75820125906f.yaml b/dd-trace-py/releasenotes/notes/do-not-use-multiprocessing-queue-in-aws-lambda-99fd75820125906f.yaml
similarity index 100%
rename from releasenotes/notes/do-not-use-multiprocessing-queue-in-aws-lambda-99fd75820125906f.yaml
rename to dd-trace-py/releasenotes/notes/do-not-use-multiprocessing-queue-in-aws-lambda-99fd75820125906f.yaml
diff --git a/releasenotes/notes/doc-remove-sqlparse-9afa8b0ab3e510b3.yaml b/dd-trace-py/releasenotes/notes/doc-remove-sqlparse-9afa8b0ab3e510b3.yaml
similarity index 100%
rename from releasenotes/notes/doc-remove-sqlparse-9afa8b0ab3e510b3.yaml
rename to dd-trace-py/releasenotes/notes/doc-remove-sqlparse-9afa8b0ab3e510b3.yaml
diff --git a/releasenotes/notes/docs-gunicorn-bd0db8c3c25c7deb.yaml b/dd-trace-py/releasenotes/notes/docs-gunicorn-bd0db8c3c25c7deb.yaml
similarity index 100%
rename from releasenotes/notes/docs-gunicorn-bd0db8c3c25c7deb.yaml
rename to dd-trace-py/releasenotes/notes/docs-gunicorn-bd0db8c3c25c7deb.yaml
diff --git a/releasenotes/notes/document-deprecations-of-tracer-arg-4bab066d68f4f36a.yaml b/dd-trace-py/releasenotes/notes/document-deprecations-of-tracer-arg-4bab066d68f4f36a.yaml
similarity index 100%
rename from releasenotes/notes/document-deprecations-of-tracer-arg-4bab066d68f4f36a.yaml
rename to dd-trace-py/releasenotes/notes/document-deprecations-of-tracer-arg-4bab066d68f4f36a.yaml
diff --git a/releasenotes/notes/dogpile-cc205f8abf149360.yaml b/dd-trace-py/releasenotes/notes/dogpile-cc205f8abf149360.yaml
similarity index 100%
rename from releasenotes/notes/dogpile-cc205f8abf149360.yaml
rename to dd-trace-py/releasenotes/notes/dogpile-cc205f8abf149360.yaml
diff --git a/releasenotes/notes/dogpile.cache-1d03e088872ca747.yaml b/dd-trace-py/releasenotes/notes/dogpile.cache-1d03e088872ca747.yaml
similarity index 100%
rename from releasenotes/notes/dogpile.cache-1d03e088872ca747.yaml
rename to dd-trace-py/releasenotes/notes/dogpile.cache-1d03e088872ca747.yaml
diff --git a/releasenotes/notes/dont-skip-fork-heartbeats-23040d3ddc072298.yaml b/dd-trace-py/releasenotes/notes/dont-skip-fork-heartbeats-23040d3ddc072298.yaml
similarity index 100%
rename from releasenotes/notes/dont-skip-fork-heartbeats-23040d3ddc072298.yaml
rename to dd-trace-py/releasenotes/notes/dont-skip-fork-heartbeats-23040d3ddc072298.yaml
diff --git a/releasenotes/notes/downgrade-encoding-to-v05-96458e1942295721.yaml b/dd-trace-py/releasenotes/notes/downgrade-encoding-to-v05-96458e1942295721.yaml
similarity index 100%
rename from releasenotes/notes/downgrade-encoding-to-v05-96458e1942295721.yaml
rename to dd-trace-py/releasenotes/notes/downgrade-encoding-to-v05-96458e1942295721.yaml
diff --git a/releasenotes/notes/drop-gevent-10-438387fecc241e60.yaml b/dd-trace-py/releasenotes/notes/drop-gevent-10-438387fecc241e60.yaml
similarity index 100%
rename from releasenotes/notes/drop-gevent-10-438387fecc241e60.yaml
rename to dd-trace-py/releasenotes/notes/drop-gevent-10-438387fecc241e60.yaml
diff --git a/releasenotes/notes/drop-gevent-support-3da5ffc8e94f73ea.yaml b/dd-trace-py/releasenotes/notes/drop-gevent-support-3da5ffc8e94f73ea.yaml
similarity index 100%
rename from releasenotes/notes/drop-gevent-support-3da5ffc8e94f73ea.yaml
rename to dd-trace-py/releasenotes/notes/drop-gevent-support-3da5ffc8e94f73ea.yaml
diff --git a/releasenotes/notes/drop-multitracer-support-ec109486f71c9c62.yaml b/dd-trace-py/releasenotes/notes/drop-multitracer-support-ec109486f71c9c62.yaml
similarity index 100%
rename from releasenotes/notes/drop-multitracer-support-ec109486f71c9c62.yaml
rename to dd-trace-py/releasenotes/notes/drop-multitracer-support-ec109486f71c9c62.yaml
diff --git a/releasenotes/notes/drop-openai-v0-1a317eafbc7fcb00.yaml b/dd-trace-py/releasenotes/notes/drop-openai-v0-1a317eafbc7fcb00.yaml
similarity index 100%
rename from releasenotes/notes/drop-openai-v0-1a317eafbc7fcb00.yaml
rename to dd-trace-py/releasenotes/notes/drop-openai-v0-1a317eafbc7fcb00.yaml
diff --git a/releasenotes/notes/drop-sql-query-2712bef7dc5fa11a.yaml b/dd-trace-py/releasenotes/notes/drop-sql-query-2712bef7dc5fa11a.yaml
similarity index 100%
rename from releasenotes/notes/drop-sql-query-2712bef7dc5fa11a.yaml
rename to dd-trace-py/releasenotes/notes/drop-sql-query-2712bef7dc5fa11a.yaml
diff --git a/releasenotes/notes/dsm-error-logs-to-debug-1b3322c4a8790b72.yaml b/dd-trace-py/releasenotes/notes/dsm-error-logs-to-debug-1b3322c4a8790b72.yaml
similarity index 100%
rename from releasenotes/notes/dsm-error-logs-to-debug-1b3322c4a8790b72.yaml
rename to dd-trace-py/releasenotes/notes/dsm-error-logs-to-debug-1b3322c4a8790b72.yaml
diff --git a/releasenotes/notes/dsm-fix-offsets-and-metrics-7e34b2734667e986.yaml b/dd-trace-py/releasenotes/notes/dsm-fix-offsets-and-metrics-7e34b2734667e986.yaml
similarity index 100%
rename from releasenotes/notes/dsm-fix-offsets-and-metrics-7e34b2734667e986.yaml
rename to dd-trace-py/releasenotes/notes/dsm-fix-offsets-and-metrics-7e34b2734667e986.yaml
diff --git a/releasenotes/notes/elastic-integration-service-name-fix-72f7bfffb835cc5d.yaml b/dd-trace-py/releasenotes/notes/elastic-integration-service-name-fix-72f7bfffb835cc5d.yaml
similarity index 100%
rename from releasenotes/notes/elastic-integration-service-name-fix-72f7bfffb835cc5d.yaml
rename to dd-trace-py/releasenotes/notes/elastic-integration-service-name-fix-72f7bfffb835cc5d.yaml
diff --git a/releasenotes/notes/elasticsearch-0a97722c93d66016.yaml b/dd-trace-py/releasenotes/notes/elasticsearch-0a97722c93d66016.yaml
similarity index 100%
rename from releasenotes/notes/elasticsearch-0a97722c93d66016.yaml
rename to dd-trace-py/releasenotes/notes/elasticsearch-0a97722c93d66016.yaml
diff --git a/releasenotes/notes/elasticsearch-body-75bfd855099e9e5a.yaml b/dd-trace-py/releasenotes/notes/elasticsearch-body-75bfd855099e9e5a.yaml
similarity index 100%
rename from releasenotes/notes/elasticsearch-body-75bfd855099e9e5a.yaml
rename to dd-trace-py/releasenotes/notes/elasticsearch-body-75bfd855099e9e5a.yaml
diff --git a/releasenotes/notes/elemetry-always-send-heartbeats-a133f02ba2f5bb6e.yaml b/dd-trace-py/releasenotes/notes/elemetry-always-send-heartbeats-a133f02ba2f5bb6e.yaml
similarity index 100%
rename from releasenotes/notes/elemetry-always-send-heartbeats-a133f02ba2f5bb6e.yaml
rename to dd-trace-py/releasenotes/notes/elemetry-always-send-heartbeats-a133f02ba2f5bb6e.yaml
diff --git a/releasenotes/notes/empty-embeddings-4c81da3384362475.yaml b/dd-trace-py/releasenotes/notes/empty-embeddings-4c81da3384362475.yaml
similarity index 100%
rename from releasenotes/notes/empty-embeddings-4c81da3384362475.yaml
rename to dd-trace-py/releasenotes/notes/empty-embeddings-4c81da3384362475.yaml
diff --git a/releasenotes/notes/enable-aredis-default-ec2280b4681392b8.yaml b/dd-trace-py/releasenotes/notes/enable-aredis-default-ec2280b4681392b8.yaml
similarity index 100%
rename from releasenotes/notes/enable-aredis-default-ec2280b4681392b8.yaml
rename to dd-trace-py/releasenotes/notes/enable-aredis-default-ec2280b4681392b8.yaml
diff --git a/releasenotes/notes/enable-data-stream-monitoring-for-kinesis-d5685ec1ac504cc3.yaml b/dd-trace-py/releasenotes/notes/enable-data-stream-monitoring-for-kinesis-d5685ec1ac504cc3.yaml
similarity index 100%
rename from releasenotes/notes/enable-data-stream-monitoring-for-kinesis-d5685ec1ac504cc3.yaml
rename to dd-trace-py/releasenotes/notes/enable-data-stream-monitoring-for-kinesis-d5685ec1ac504cc3.yaml
diff --git a/releasenotes/notes/enable-distributed-tracing-rq-4aaa0d4ae84381ee.yaml b/dd-trace-py/releasenotes/notes/enable-distributed-tracing-rq-4aaa0d4ae84381ee.yaml
similarity index 100%
rename from releasenotes/notes/enable-distributed-tracing-rq-4aaa0d4ae84381ee.yaml
rename to dd-trace-py/releasenotes/notes/enable-distributed-tracing-rq-4aaa0d4ae84381ee.yaml
diff --git a/releasenotes/notes/enable-langgraph-by-default-917c24b82a2db2ef.yaml b/dd-trace-py/releasenotes/notes/enable-langgraph-by-default-917c24b82a2db2ef.yaml
similarity index 100%
rename from releasenotes/notes/enable-langgraph-by-default-917c24b82a2db2ef.yaml
rename to dd-trace-py/releasenotes/notes/enable-langgraph-by-default-917c24b82a2db2ef.yaml
diff --git a/releasenotes/notes/enable-structored-logging-by-default-b6ad86e55b3582be.yaml b/dd-trace-py/releasenotes/notes/enable-structored-logging-by-default-b6ad86e55b3582be.yaml
similarity index 100%
rename from releasenotes/notes/enable-structored-logging-by-default-b6ad86e55b3582be.yaml
rename to dd-trace-py/releasenotes/notes/enable-structored-logging-by-default-b6ad86e55b3582be.yaml
diff --git a/releasenotes/notes/enable_tracecontext_by_default-03cc948a3a466803.yaml b/dd-trace-py/releasenotes/notes/enable_tracecontext_by_default-03cc948a3a466803.yaml
similarity index 100%
rename from releasenotes/notes/enable_tracecontext_by_default-03cc948a3a466803.yaml
rename to dd-trace-py/releasenotes/notes/enable_tracecontext_by_default-03cc948a3a466803.yaml
diff --git a/releasenotes/notes/encode-bytes-974d93cec3725455.yaml b/dd-trace-py/releasenotes/notes/encode-bytes-974d93cec3725455.yaml
similarity index 100%
rename from releasenotes/notes/encode-bytes-974d93cec3725455.yaml
rename to dd-trace-py/releasenotes/notes/encode-bytes-974d93cec3725455.yaml
diff --git a/releasenotes/notes/encode-sns-msg-attributes-as-b64-7818aec10f533534.yaml b/dd-trace-py/releasenotes/notes/encode-sns-msg-attributes-as-b64-7818aec10f533534.yaml
similarity index 100%
rename from releasenotes/notes/encode-sns-msg-attributes-as-b64-7818aec10f533534.yaml
rename to dd-trace-py/releasenotes/notes/encode-sns-msg-attributes-as-b64-7818aec10f533534.yaml
diff --git a/releasenotes/notes/encoder-truncate-2e3b63db1b960561.yaml b/dd-trace-py/releasenotes/notes/encoder-truncate-2e3b63db1b960561.yaml
similarity index 100%
rename from releasenotes/notes/encoder-truncate-2e3b63db1b960561.yaml
rename to dd-trace-py/releasenotes/notes/encoder-truncate-2e3b63db1b960561.yaml
diff --git a/releasenotes/notes/encoding-strict-types-b2bbd0844b28168a.yaml b/dd-trace-py/releasenotes/notes/encoding-strict-types-b2bbd0844b28168a.yaml
similarity index 100%
rename from releasenotes/notes/encoding-strict-types-b2bbd0844b28168a.yaml
rename to dd-trace-py/releasenotes/notes/encoding-strict-types-b2bbd0844b28168a.yaml
diff --git a/releasenotes/notes/endpoint-counts-6fa40e642b44b78c.yaml b/dd-trace-py/releasenotes/notes/endpoint-counts-6fa40e642b44b78c.yaml
similarity index 100%
rename from releasenotes/notes/endpoint-counts-6fa40e642b44b78c.yaml
rename to dd-trace-py/releasenotes/notes/endpoint-counts-6fa40e642b44b78c.yaml
diff --git a/releasenotes/notes/endpoint_collection_fix-12c863b2c81d920a.yaml b/dd-trace-py/releasenotes/notes/endpoint_collection_fix-12c863b2c81d920a.yaml
similarity index 100%
rename from releasenotes/notes/endpoint_collection_fix-12c863b2c81d920a.yaml
rename to dd-trace-py/releasenotes/notes/endpoint_collection_fix-12c863b2c81d920a.yaml
diff --git a/releasenotes/notes/endpoint_discover_for_flask-1db49525d1c90ac0.yaml b/dd-trace-py/releasenotes/notes/endpoint_discover_for_flask-1db49525d1c90ac0.yaml
similarity index 100%
rename from releasenotes/notes/endpoint_discover_for_flask-1db49525d1c90ac0.yaml
rename to dd-trace-py/releasenotes/notes/endpoint_discover_for_flask-1db49525d1c90ac0.yaml
diff --git a/releasenotes/notes/endpoint_discovery_for_django-2fe69e19b4ab3ce0.yaml b/dd-trace-py/releasenotes/notes/endpoint_discovery_for_django-2fe69e19b4ab3ce0.yaml
similarity index 100%
rename from releasenotes/notes/endpoint_discovery_for_django-2fe69e19b4ab3ce0.yaml
rename to dd-trace-py/releasenotes/notes/endpoint_discovery_for_django-2fe69e19b4ab3ce0.yaml
diff --git a/releasenotes/notes/enpoint_discovery_for_fastapi-efc329d66ba45139.yaml b/dd-trace-py/releasenotes/notes/enpoint_discovery_for_fastapi-efc329d66ba45139.yaml
similarity index 100%
rename from releasenotes/notes/enpoint_discovery_for_fastapi-efc329d66ba45139.yaml
rename to dd-trace-py/releasenotes/notes/enpoint_discovery_for_fastapi-efc329d66ba45139.yaml
diff --git a/releasenotes/notes/ensure-all-integrations-have-patch-module-ef2ced613d1f777a.yaml b/dd-trace-py/releasenotes/notes/ensure-all-integrations-have-patch-module-ef2ced613d1f777a.yaml
similarity index 100%
rename from releasenotes/notes/ensure-all-integrations-have-patch-module-ef2ced613d1f777a.yaml
rename to dd-trace-py/releasenotes/notes/ensure-all-integrations-have-patch-module-ef2ced613d1f777a.yaml
diff --git a/releasenotes/notes/ensure-ddtracerun-respects-disabled-integrations-ea1952a79a353bf0.yaml b/dd-trace-py/releasenotes/notes/ensure-ddtracerun-respects-disabled-integrations-ea1952a79a353bf0.yaml
similarity index 100%
rename from releasenotes/notes/ensure-ddtracerun-respects-disabled-integrations-ea1952a79a353bf0.yaml
rename to dd-trace-py/releasenotes/notes/ensure-ddtracerun-respects-disabled-integrations-ea1952a79a353bf0.yaml
diff --git a/releasenotes/notes/ensure_no_appsec_loading-8ce46c58d6ecf81f.yaml b/dd-trace-py/releasenotes/notes/ensure_no_appsec_loading-8ce46c58d6ecf81f.yaml
similarity index 100%
rename from releasenotes/notes/ensure_no_appsec_loading-8ce46c58d6ecf81f.yaml
rename to dd-trace-py/releasenotes/notes/ensure_no_appsec_loading-8ce46c58d6ecf81f.yaml
diff --git a/releasenotes/notes/entry-spans-di-79eb3b63aab0ecbe.yaml b/dd-trace-py/releasenotes/notes/entry-spans-di-79eb3b63aab0ecbe.yaml
similarity index 100%
rename from releasenotes/notes/entry-spans-di-79eb3b63aab0ecbe.yaml
rename to dd-trace-py/releasenotes/notes/entry-spans-di-79eb3b63aab0ecbe.yaml
diff --git a/releasenotes/notes/er-deprecate-env-var-58386e5884e0de10.yaml b/dd-trace-py/releasenotes/notes/er-deprecate-env-var-58386e5884e0de10.yaml
similarity index 100%
rename from releasenotes/notes/er-deprecate-env-var-58386e5884e0de10.yaml
rename to dd-trace-py/releasenotes/notes/er-deprecate-env-var-58386e5884e0de10.yaml
diff --git a/releasenotes/notes/errortracking-handled-errors-reporting-61b00ad205406718.yaml b/dd-trace-py/releasenotes/notes/errortracking-handled-errors-reporting-61b00ad205406718.yaml
similarity index 100%
rename from releasenotes/notes/errortracking-handled-errors-reporting-61b00ad205406718.yaml
rename to dd-trace-py/releasenotes/notes/errortracking-handled-errors-reporting-61b00ad205406718.yaml
diff --git a/releasenotes/notes/es-92a00e4a03a65da6.yaml b/dd-trace-py/releasenotes/notes/es-92a00e4a03a65da6.yaml
similarity index 100%
rename from releasenotes/notes/es-92a00e4a03a65da6.yaml
rename to dd-trace-py/releasenotes/notes/es-92a00e4a03a65da6.yaml
diff --git a/releasenotes/notes/es-pin-tags-7f1d5d312a91ef0d.yaml b/dd-trace-py/releasenotes/notes/es-pin-tags-7f1d5d312a91ef0d.yaml
similarity index 100%
rename from releasenotes/notes/es-pin-tags-7f1d5d312a91ef0d.yaml
rename to dd-trace-py/releasenotes/notes/es-pin-tags-7f1d5d312a91ef0d.yaml
diff --git a/releasenotes/notes/evaluators-sequence-type-bc125bf97c51a65b.yaml b/dd-trace-py/releasenotes/notes/evaluators-sequence-type-bc125bf97c51a65b.yaml
similarity index 100%
rename from releasenotes/notes/evaluators-sequence-type-bc125bf97c51a65b.yaml
rename to dd-trace-py/releasenotes/notes/evaluators-sequence-type-bc125bf97c51a65b.yaml
diff --git a/releasenotes/notes/evp-proxy-configurable-size-limits-a3f7c2d1e8b94506.yaml b/dd-trace-py/releasenotes/notes/evp-proxy-configurable-size-limits-a3f7c2d1e8b94506.yaml
similarity index 100%
rename from releasenotes/notes/evp-proxy-configurable-size-limits-a3f7c2d1e8b94506.yaml
rename to dd-trace-py/releasenotes/notes/evp-proxy-configurable-size-limits-a3f7c2d1e8b94506.yaml
diff --git a/releasenotes/notes/exit-ve-658d5c5d255002ec.yaml b/dd-trace-py/releasenotes/notes/exit-ve-658d5c5d255002ec.yaml
similarity index 100%
rename from releasenotes/notes/exit-ve-658d5c5d255002ec.yaml
rename to dd-trace-py/releasenotes/notes/exit-ve-658d5c5d255002ec.yaml
diff --git a/releasenotes/notes/explicit-span-tag-typing-99abb4d3ec065a55.yaml b/dd-trace-py/releasenotes/notes/explicit-span-tag-typing-99abb4d3ec065a55.yaml
similarity index 100%
rename from releasenotes/notes/explicit-span-tag-typing-99abb4d3ec065a55.yaml
rename to dd-trace-py/releasenotes/notes/explicit-span-tag-typing-99abb4d3ec065a55.yaml
diff --git a/releasenotes/notes/exploit_prevention_enabled-ae26036621f6140c.yaml b/dd-trace-py/releasenotes/notes/exploit_prevention_enabled-ae26036621f6140c.yaml
similarity index 100%
rename from releasenotes/notes/exploit_prevention_enabled-ae26036621f6140c.yaml
rename to dd-trace-py/releasenotes/notes/exploit_prevention_enabled-ae26036621f6140c.yaml
diff --git a/releasenotes/notes/exploit_prevention_feature_LFI_SSRF-5be3b699341eadb1.yaml b/dd-trace-py/releasenotes/notes/exploit_prevention_feature_LFI_SSRF-5be3b699341eadb1.yaml
similarity index 100%
rename from releasenotes/notes/exploit_prevention_feature_LFI_SSRF-5be3b699341eadb1.yaml
rename to dd-trace-py/releasenotes/notes/exploit_prevention_feature_LFI_SSRF-5be3b699341eadb1.yaml
diff --git a/releasenotes/notes/exploit_prevention_patch_fix-1bdd7540e1d085d8.yaml b/dd-trace-py/releasenotes/notes/exploit_prevention_patch_fix-1bdd7540e1d085d8.yaml
similarity index 100%
rename from releasenotes/notes/exploit_prevention_patch_fix-1bdd7540e1d085d8.yaml
rename to dd-trace-py/releasenotes/notes/exploit_prevention_patch_fix-1bdd7540e1d085d8.yaml
diff --git a/releasenotes/notes/exploit_prevention_sqli-c34e1047af3c08f2.yaml b/dd-trace-py/releasenotes/notes/exploit_prevention_sqli-c34e1047af3c08f2.yaml
similarity index 100%
rename from releasenotes/notes/exploit_prevention_sqli-c34e1047af3c08f2.yaml
rename to dd-trace-py/releasenotes/notes/exploit_prevention_sqli-c34e1047af3c08f2.yaml
diff --git a/releasenotes/notes/extended-heartbeat-acc361de5bdbb872.yaml b/dd-trace-py/releasenotes/notes/extended-heartbeat-acc361de5bdbb872.yaml
similarity index 100%
rename from releasenotes/notes/extended-heartbeat-acc361de5bdbb872.yaml
rename to dd-trace-py/releasenotes/notes/extended-heartbeat-acc361de5bdbb872.yaml
diff --git a/releasenotes/notes/falcon-int-config-a85b605cac4a7dbc.yaml b/dd-trace-py/releasenotes/notes/falcon-int-config-a85b605cac4a7dbc.yaml
similarity index 100%
rename from releasenotes/notes/falcon-int-config-a85b605cac4a7dbc.yaml
rename to dd-trace-py/releasenotes/notes/falcon-int-config-a85b605cac4a7dbc.yaml
diff --git a/releasenotes/notes/falcon-service-naming-428326721766bd77.yaml b/dd-trace-py/releasenotes/notes/falcon-service-naming-428326721766bd77.yaml
similarity index 100%
rename from releasenotes/notes/falcon-service-naming-428326721766bd77.yaml
rename to dd-trace-py/releasenotes/notes/falcon-service-naming-428326721766bd77.yaml
diff --git a/releasenotes/notes/fastapi-fix-middlewares-705975a535daaea8.yaml b/dd-trace-py/releasenotes/notes/fastapi-fix-middlewares-705975a535daaea8.yaml
similarity index 100%
rename from releasenotes/notes/fastapi-fix-middlewares-705975a535daaea8.yaml
rename to dd-trace-py/releasenotes/notes/fastapi-fix-middlewares-705975a535daaea8.yaml
diff --git a/releasenotes/notes/fastapi-set-error-tags-before-finishing-span-8fc48f94909251c1.yaml b/dd-trace-py/releasenotes/notes/fastapi-set-error-tags-before-finishing-span-8fc48f94909251c1.yaml
similarity index 100%
rename from releasenotes/notes/fastapi-set-error-tags-before-finishing-span-8fc48f94909251c1.yaml
rename to dd-trace-py/releasenotes/notes/fastapi-set-error-tags-before-finishing-span-8fc48f94909251c1.yaml
diff --git a/releasenotes/notes/fastapi-starlette-subapp-support-78e7acbf358bafc3.yaml b/dd-trace-py/releasenotes/notes/fastapi-starlette-subapp-support-78e7acbf358bafc3.yaml
similarity index 100%
rename from releasenotes/notes/fastapi-starlette-subapp-support-78e7acbf358bafc3.yaml
rename to dd-trace-py/releasenotes/notes/fastapi-starlette-subapp-support-78e7acbf358bafc3.yaml
diff --git a/releasenotes/notes/fastapi-trace-serialize-response-7aa66e459cceb26c.yaml b/dd-trace-py/releasenotes/notes/fastapi-trace-serialize-response-7aa66e459cceb26c.yaml
similarity index 100%
rename from releasenotes/notes/fastapi-trace-serialize-response-7aa66e459cceb26c.yaml
rename to dd-trace-py/releasenotes/notes/fastapi-trace-serialize-response-7aa66e459cceb26c.yaml
diff --git a/releasenotes/notes/fastapi_block_too_early-f46b1dfa2d3565b5.yaml b/dd-trace-py/releasenotes/notes/fastapi_block_too_early-f46b1dfa2d3565b5.yaml
similarity index 100%
rename from releasenotes/notes/fastapi_block_too_early-f46b1dfa2d3565b5.yaml
rename to dd-trace-py/releasenotes/notes/fastapi_block_too_early-f46b1dfa2d3565b5.yaml
diff --git a/releasenotes/notes/fastapi_body_extraction_for_aap-b6f53b4f03015319.yaml b/dd-trace-py/releasenotes/notes/fastapi_body_extraction_for_aap-b6f53b4f03015319.yaml
similarity index 100%
rename from releasenotes/notes/fastapi_body_extraction_for_aap-b6f53b4f03015319.yaml
rename to dd-trace-py/releasenotes/notes/fastapi_body_extraction_for_aap-b6f53b4f03015319.yaml
diff --git a/releasenotes/notes/fastapi_fix_redirect_actions-862691cea6074678.yaml b/dd-trace-py/releasenotes/notes/fastapi_fix_redirect_actions-862691cea6074678.yaml
similarity index 100%
rename from releasenotes/notes/fastapi_fix_redirect_actions-862691cea6074678.yaml
rename to dd-trace-py/releasenotes/notes/fastapi_fix_redirect_actions-862691cea6074678.yaml
diff --git a/releasenotes/notes/feat-add-azure-functions-integration-108911bfe1e5f081.yaml b/dd-trace-py/releasenotes/notes/feat-add-azure-functions-integration-108911bfe1e5f081.yaml
similarity index 100%
rename from releasenotes/notes/feat-add-azure-functions-integration-108911bfe1e5f081.yaml
rename to dd-trace-py/releasenotes/notes/feat-add-azure-functions-integration-108911bfe1e5f081.yaml
diff --git a/releasenotes/notes/feat-add-azure-servicebus-integration-4034143c46abe1c6.yaml b/dd-trace-py/releasenotes/notes/feat-add-azure-servicebus-integration-4034143c46abe1c6.yaml
similarity index 100%
rename from releasenotes/notes/feat-add-azure-servicebus-integration-4034143c46abe1c6.yaml
rename to dd-trace-py/releasenotes/notes/feat-add-azure-servicebus-integration-4034143c46abe1c6.yaml
diff --git a/releasenotes/notes/feat-add-dd-record-exception-033fd0436dfd2723.yaml b/dd-trace-py/releasenotes/notes/feat-add-dd-record-exception-033fd0436dfd2723.yaml
similarity index 100%
rename from releasenotes/notes/feat-add-dd-record-exception-033fd0436dfd2723.yaml
rename to dd-trace-py/releasenotes/notes/feat-add-dd-record-exception-033fd0436dfd2723.yaml
diff --git a/releasenotes/notes/feat-aiokafka-support-d292e199c2a6e72c.yaml b/dd-trace-py/releasenotes/notes/feat-aiokafka-support-d292e199c2a6e72c.yaml
similarity index 100%
rename from releasenotes/notes/feat-aiokafka-support-d292e199c2a6e72c.yaml
rename to dd-trace-py/releasenotes/notes/feat-aiokafka-support-d292e199c2a6e72c.yaml
diff --git a/releasenotes/notes/feat-anthropic-04a880a26ff44d9c.yaml b/dd-trace-py/releasenotes/notes/feat-anthropic-04a880a26ff44d9c.yaml
similarity index 100%
rename from releasenotes/notes/feat-anthropic-04a880a26ff44d9c.yaml
rename to dd-trace-py/releasenotes/notes/feat-anthropic-04a880a26ff44d9c.yaml
diff --git a/releasenotes/notes/feat-asm-standalone-07279cdb3e0fa9e0.yaml b/dd-trace-py/releasenotes/notes/feat-asm-standalone-07279cdb3e0fa9e0.yaml
similarity index 100%
rename from releasenotes/notes/feat-asm-standalone-07279cdb3e0fa9e0.yaml
rename to dd-trace-py/releasenotes/notes/feat-asm-standalone-07279cdb3e0fa9e0.yaml
diff --git a/releasenotes/notes/feat-azure-api-management-inferred-proxy-89034dc463058d01.yaml b/dd-trace-py/releasenotes/notes/feat-azure-api-management-inferred-proxy-89034dc463058d01.yaml
similarity index 100%
rename from releasenotes/notes/feat-azure-api-management-inferred-proxy-89034dc463058d01.yaml
rename to dd-trace-py/releasenotes/notes/feat-azure-api-management-inferred-proxy-89034dc463058d01.yaml
diff --git a/releasenotes/notes/feat-azure-eventhubs-integration-b58bea33b0f6576b.yaml b/dd-trace-py/releasenotes/notes/feat-azure-eventhubs-integration-b58bea33b0f6576b.yaml
similarity index 100%
rename from releasenotes/notes/feat-azure-eventhubs-integration-b58bea33b0f6576b.yaml
rename to dd-trace-py/releasenotes/notes/feat-azure-eventhubs-integration-b58bea33b0f6576b.yaml
diff --git a/releasenotes/notes/feat-azure-functions-http-distributed-tracing-79a15a88e1a1993a.yaml b/dd-trace-py/releasenotes/notes/feat-azure-functions-http-distributed-tracing-79a15a88e1a1993a.yaml
similarity index 100%
rename from releasenotes/notes/feat-azure-functions-http-distributed-tracing-79a15a88e1a1993a.yaml
rename to dd-trace-py/releasenotes/notes/feat-azure-functions-http-distributed-tracing-79a15a88e1a1993a.yaml
diff --git a/releasenotes/notes/feat-azure-functions-service-bus-trigger-cf816fdbb710f970.yaml b/dd-trace-py/releasenotes/notes/feat-azure-functions-service-bus-trigger-cf816fdbb710f970.yaml
similarity index 100%
rename from releasenotes/notes/feat-azure-functions-service-bus-trigger-cf816fdbb710f970.yaml
rename to dd-trace-py/releasenotes/notes/feat-azure-functions-service-bus-trigger-cf816fdbb710f970.yaml
diff --git a/releasenotes/notes/feat-azure-functions-service-bus-trigger-span-attributes-6de4b04663074cdb.yaml b/dd-trace-py/releasenotes/notes/feat-azure-functions-service-bus-trigger-span-attributes-6de4b04663074cdb.yaml
similarity index 100%
rename from releasenotes/notes/feat-azure-functions-service-bus-trigger-span-attributes-6de4b04663074cdb.yaml
rename to dd-trace-py/releasenotes/notes/feat-azure-functions-service-bus-trigger-span-attributes-6de4b04663074cdb.yaml
diff --git a/releasenotes/notes/feat-azure-functions-timer-trigger-f47914ec46fc30ca.yaml b/dd-trace-py/releasenotes/notes/feat-azure-functions-timer-trigger-f47914ec46fc30ca.yaml
similarity index 100%
rename from releasenotes/notes/feat-azure-functions-timer-trigger-f47914ec46fc30ca.yaml
rename to dd-trace-py/releasenotes/notes/feat-azure-functions-timer-trigger-f47914ec46fc30ca.yaml
diff --git a/releasenotes/notes/feat-azure-openai-6e6bf0a04193ff5b.yaml b/dd-trace-py/releasenotes/notes/feat-azure-openai-6e6bf0a04193ff5b.yaml
similarity index 100%
rename from releasenotes/notes/feat-azure-openai-6e6bf0a04193ff5b.yaml
rename to dd-trace-py/releasenotes/notes/feat-azure-openai-6e6bf0a04193ff5b.yaml
diff --git a/releasenotes/notes/feat-azure-servicebus-batch-distributed-tracing-83d382edd4927104.yaml b/dd-trace-py/releasenotes/notes/feat-azure-servicebus-batch-distributed-tracing-83d382edd4927104.yaml
similarity index 100%
rename from releasenotes/notes/feat-azure-servicebus-batch-distributed-tracing-83d382edd4927104.yaml
rename to dd-trace-py/releasenotes/notes/feat-azure-servicebus-batch-distributed-tracing-83d382edd4927104.yaml
diff --git a/releasenotes/notes/feat-bedrock-8cf3f9460a529ac6.yaml b/dd-trace-py/releasenotes/notes/feat-bedrock-8cf3f9460a529ac6.yaml
similarity index 100%
rename from releasenotes/notes/feat-bedrock-8cf3f9460a529ac6.yaml
rename to dd-trace-py/releasenotes/notes/feat-bedrock-8cf3f9460a529ac6.yaml
diff --git a/releasenotes/notes/feat-bedrock-agents-efb725a0860eae87.yaml b/dd-trace-py/releasenotes/notes/feat-bedrock-agents-efb725a0860eae87.yaml
similarity index 100%
rename from releasenotes/notes/feat-bedrock-agents-efb725a0860eae87.yaml
rename to dd-trace-py/releasenotes/notes/feat-bedrock-agents-efb725a0860eae87.yaml
diff --git a/releasenotes/notes/feat-bedrock-embedding-d44ac603bdb83a7b.yaml b/dd-trace-py/releasenotes/notes/feat-bedrock-embedding-d44ac603bdb83a7b.yaml
similarity index 100%
rename from releasenotes/notes/feat-bedrock-embedding-d44ac603bdb83a7b.yaml
rename to dd-trace-py/releasenotes/notes/feat-bedrock-embedding-d44ac603bdb83a7b.yaml
diff --git a/releasenotes/notes/feat-bedrock-message-api-673e527cb1b0befd.yaml b/dd-trace-py/releasenotes/notes/feat-bedrock-message-api-673e527cb1b0befd.yaml
similarity index 100%
rename from releasenotes/notes/feat-bedrock-message-api-673e527cb1b0befd.yaml
rename to dd-trace-py/releasenotes/notes/feat-bedrock-message-api-673e527cb1b0befd.yaml
diff --git a/releasenotes/notes/feat-ci-vis-xdist-distributed-tracing-support-4f0f59e315c9059e.yaml b/dd-trace-py/releasenotes/notes/feat-ci-vis-xdist-distributed-tracing-support-4f0f59e315c9059e.yaml
similarity index 100%
rename from releasenotes/notes/feat-ci-vis-xdist-distributed-tracing-support-4f0f59e315c9059e.yaml
rename to dd-trace-py/releasenotes/notes/feat-ci-vis-xdist-distributed-tracing-support-4f0f59e315c9059e.yaml
diff --git a/releasenotes/notes/feat-co-default-on-c5db08604c577a85.yaml b/dd-trace-py/releasenotes/notes/feat-co-default-on-c5db08604c577a85.yaml
similarity index 100%
rename from releasenotes/notes/feat-co-default-on-c5db08604c577a85.yaml
rename to dd-trace-py/releasenotes/notes/feat-co-default-on-c5db08604c577a85.yaml
diff --git a/releasenotes/notes/feat-co-in-product-enablement-6b70fc52d62721fa.yaml b/dd-trace-py/releasenotes/notes/feat-co-in-product-enablement-6b70fc52d62721fa.yaml
similarity index 100%
rename from releasenotes/notes/feat-co-in-product-enablement-6b70fc52d62721fa.yaml
rename to dd-trace-py/releasenotes/notes/feat-co-in-product-enablement-6b70fc52d62721fa.yaml
diff --git a/releasenotes/notes/feat-co-tracer-wrap-entry-25db9af48e494719.yaml b/dd-trace-py/releasenotes/notes/feat-co-tracer-wrap-entry-25db9af48e494719.yaml
similarity index 100%
rename from releasenotes/notes/feat-co-tracer-wrap-entry-25db9af48e494719.yaml
rename to dd-trace-py/releasenotes/notes/feat-co-tracer-wrap-entry-25db9af48e494719.yaml
diff --git a/releasenotes/notes/feat-code-security-standalone-0fc5993ded38e83e.yaml b/dd-trace-py/releasenotes/notes/feat-code-security-standalone-0fc5993ded38e83e.yaml
similarity index 100%
rename from releasenotes/notes/feat-code-security-standalone-0fc5993ded38e83e.yaml
rename to dd-trace-py/releasenotes/notes/feat-code-security-standalone-0fc5993ded38e83e.yaml
diff --git a/releasenotes/notes/feat-collect-user-agent-630b2c10f83ac063.yaml b/dd-trace-py/releasenotes/notes/feat-collect-user-agent-630b2c10f83ac063.yaml
similarity index 100%
rename from releasenotes/notes/feat-collect-user-agent-630b2c10f83ac063.yaml
rename to dd-trace-py/releasenotes/notes/feat-collect-user-agent-630b2c10f83ac063.yaml
diff --git a/releasenotes/notes/feat-confluent-kafka-support-3715cd9476e03c7f.yaml b/dd-trace-py/releasenotes/notes/feat-confluent-kafka-support-3715cd9476e03c7f.yaml
similarity index 100%
rename from releasenotes/notes/feat-confluent-kafka-support-3715cd9476e03c7f.yaml
rename to dd-trace-py/releasenotes/notes/feat-confluent-kafka-support-3715cd9476e03c7f.yaml
diff --git a/releasenotes/notes/feat-crewai-62606b5387118f6b.yaml b/dd-trace-py/releasenotes/notes/feat-crewai-62606b5387118f6b.yaml
similarity index 100%
rename from releasenotes/notes/feat-crewai-62606b5387118f6b.yaml
rename to dd-trace-py/releasenotes/notes/feat-crewai-62606b5387118f6b.yaml
diff --git a/releasenotes/notes/feat-crewai-flow-d5cb250484f1d3c1.yaml b/dd-trace-py/releasenotes/notes/feat-crewai-flow-d5cb250484f1d3c1.yaml
similarity index 100%
rename from releasenotes/notes/feat-crewai-flow-d5cb250484f1d3c1.yaml
rename to dd-trace-py/releasenotes/notes/feat-crewai-flow-d5cb250484f1d3c1.yaml
diff --git a/releasenotes/notes/feat-debugging-py311-support-2160a5590048c7c3.yaml b/dd-trace-py/releasenotes/notes/feat-debugging-py311-support-2160a5590048c7c3.yaml
similarity index 100%
rename from releasenotes/notes/feat-debugging-py311-support-2160a5590048c7c3.yaml
rename to dd-trace-py/releasenotes/notes/feat-debugging-py311-support-2160a5590048c7c3.yaml
diff --git a/releasenotes/notes/feat-debugging-span-probes-c441d7eb186f5f20.yaml b/dd-trace-py/releasenotes/notes/feat-debugging-span-probes-c441d7eb186f5f20.yaml
similarity index 100%
rename from releasenotes/notes/feat-debugging-span-probes-c441d7eb186f5f20.yaml
rename to dd-trace-py/releasenotes/notes/feat-debugging-span-probes-c441d7eb186f5f20.yaml
diff --git a/releasenotes/notes/feat-debugging-support-more-container-types-ccc6a944d00d407e.yaml b/dd-trace-py/releasenotes/notes/feat-debugging-support-more-container-types-ccc6a944d00d407e.yaml
similarity index 100%
rename from releasenotes/notes/feat-debugging-support-more-container-types-ccc6a944d00d407e.yaml
rename to dd-trace-py/releasenotes/notes/feat-debugging-support-more-container-types-ccc6a944d00d407e.yaml
diff --git a/releasenotes/notes/feat-detect-attack-on-xml-body-878215f0d3d1a64d.yaml b/dd-trace-py/releasenotes/notes/feat-detect-attack-on-xml-body-878215f0d3d1a64d.yaml
similarity index 100%
rename from releasenotes/notes/feat-detect-attack-on-xml-body-878215f0d3d1a64d.yaml
rename to dd-trace-py/releasenotes/notes/feat-detect-attack-on-xml-body-878215f0d3d1a64d.yaml
diff --git a/releasenotes/notes/feat-di-capture-expressions-cc9d1973a6119888.yaml b/dd-trace-py/releasenotes/notes/feat-di-capture-expressions-cc9d1973a6119888.yaml
similarity index 100%
rename from releasenotes/notes/feat-di-capture-expressions-cc9d1973a6119888.yaml
rename to dd-trace-py/releasenotes/notes/feat-di-capture-expressions-cc9d1973a6119888.yaml
diff --git a/releasenotes/notes/feat-di-logs-v2-endpoint-DEBUG-5016.yaml b/dd-trace-py/releasenotes/notes/feat-di-logs-v2-endpoint-DEBUG-5016.yaml
similarity index 100%
rename from releasenotes/notes/feat-di-logs-v2-endpoint-DEBUG-5016.yaml
rename to dd-trace-py/releasenotes/notes/feat-di-logs-v2-endpoint-DEBUG-5016.yaml
diff --git a/releasenotes/notes/feat-dynamic-instrumentation-4c46bb86482438c1.yaml b/dd-trace-py/releasenotes/notes/feat-dynamic-instrumentation-4c46bb86482438c1.yaml
similarity index 100%
rename from releasenotes/notes/feat-dynamic-instrumentation-4c46bb86482438c1.yaml
rename to dd-trace-py/releasenotes/notes/feat-dynamic-instrumentation-4c46bb86482438c1.yaml
diff --git a/releasenotes/notes/feat-elasticsearch-async-1907c207f5e435ca.yaml b/dd-trace-py/releasenotes/notes/feat-elasticsearch-async-1907c207f5e435ca.yaml
similarity index 100%
rename from releasenotes/notes/feat-elasticsearch-async-1907c207f5e435ca.yaml
rename to dd-trace-py/releasenotes/notes/feat-elasticsearch-async-1907c207f5e435ca.yaml
diff --git a/releasenotes/notes/feat-enable-css-by-default-b939586834949d32.yaml b/dd-trace-py/releasenotes/notes/feat-enable-css-by-default-b939586834949d32.yaml
similarity index 100%
rename from releasenotes/notes/feat-enable-css-by-default-b939586834949d32.yaml
rename to dd-trace-py/releasenotes/notes/feat-enable-css-by-default-b939586834949d32.yaml
diff --git a/releasenotes/notes/feat-er-in-product-enablement-253418007f82a19b.yaml b/dd-trace-py/releasenotes/notes/feat-er-in-product-enablement-253418007f82a19b.yaml
similarity index 100%
rename from releasenotes/notes/feat-er-in-product-enablement-253418007f82a19b.yaml
rename to dd-trace-py/releasenotes/notes/feat-er-in-product-enablement-253418007f82a19b.yaml
diff --git a/releasenotes/notes/feat-exception-debugging-d4d73e95d37f914a.yaml b/dd-trace-py/releasenotes/notes/feat-exception-debugging-d4d73e95d37f914a.yaml
similarity index 100%
rename from releasenotes/notes/feat-exception-debugging-d4d73e95d37f914a.yaml
rename to dd-trace-py/releasenotes/notes/feat-exception-debugging-d4d73e95d37f914a.yaml
diff --git a/releasenotes/notes/feat-expose-base-context-provider-530ebec2225f6c8d.yaml b/dd-trace-py/releasenotes/notes/feat-expose-base-context-provider-530ebec2225f6c8d.yaml
similarity index 100%
rename from releasenotes/notes/feat-expose-base-context-provider-530ebec2225f6c8d.yaml
rename to dd-trace-py/releasenotes/notes/feat-expose-base-context-provider-530ebec2225f6c8d.yaml
diff --git a/releasenotes/notes/feat-google-gemini-d5ee30b1d711bc08.yaml b/dd-trace-py/releasenotes/notes/feat-google-gemini-d5ee30b1d711bc08.yaml
similarity index 100%
rename from releasenotes/notes/feat-google-gemini-d5ee30b1d711bc08.yaml
rename to dd-trace-py/releasenotes/notes/feat-google-gemini-d5ee30b1d711bc08.yaml
diff --git a/releasenotes/notes/feat-graphql-graphene-py-3-11-c7706304dfe18cd4.yaml b/dd-trace-py/releasenotes/notes/feat-graphql-graphene-py-3-11-c7706304dfe18cd4.yaml
similarity index 100%
rename from releasenotes/notes/feat-graphql-graphene-py-3-11-c7706304dfe18cd4.yaml
rename to dd-trace-py/releasenotes/notes/feat-graphql-graphene-py-3-11-c7706304dfe18cd4.yaml
diff --git a/releasenotes/notes/feat-iast-pymysql-support-d7f79f0355bb85d1.yaml b/dd-trace-py/releasenotes/notes/feat-iast-pymysql-support-d7f79f0355bb85d1.yaml
similarity index 100%
rename from releasenotes/notes/feat-iast-pymysql-support-d7f79f0355bb85d1.yaml
rename to dd-trace-py/releasenotes/notes/feat-iast-pymysql-support-d7f79f0355bb85d1.yaml
diff --git a/releasenotes/notes/feat-inferred-proxy-httpapi-headers-33a0d4d4c1d6c5a1.yaml b/dd-trace-py/releasenotes/notes/feat-inferred-proxy-httpapi-headers-33a0d4d4c1d6c5a1.yaml
similarity index 100%
rename from releasenotes/notes/feat-inferred-proxy-httpapi-headers-33a0d4d4c1d6c5a1.yaml
rename to dd-trace-py/releasenotes/notes/feat-inferred-proxy-httpapi-headers-33a0d4d4c1d6c5a1.yaml
diff --git a/releasenotes/notes/feat-llmobs-8526354f2b311511.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-8526354f2b311511.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-8526354f2b311511.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-8526354f2b311511.yaml
diff --git a/releasenotes/notes/feat-llmobs-agentless-mode-config-6e6df043086e1a43.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-agentless-mode-config-6e6df043086e1a43.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-agentless-mode-config-6e6df043086e1a43.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-agentless-mode-config-6e6df043086e1a43.yaml
diff --git a/releasenotes/notes/feat-llmobs-anthropic-cache-ttl-e34b66848d471cd2.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-anthropic-cache-ttl-e34b66848d471cd2.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-anthropic-cache-ttl-e34b66848d471cd2.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-anthropic-cache-ttl-e34b66848d471cd2.yaml
diff --git a/releasenotes/notes/feat-llmobs-async-decorators-dae899a4e2744c57.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-async-decorators-dae899a4e2744c57.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-async-decorators-dae899a4e2744c57.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-async-decorators-dae899a4e2744c57.yaml
diff --git a/releasenotes/notes/feat-llmobs-asyncio-e8247cfdc720a1a9.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-asyncio-e8247cfdc720a1a9.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-asyncio-e8247cfdc720a1a9.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-asyncio-e8247cfdc720a1a9.yaml
diff --git a/releasenotes/notes/feat-llmobs-context-e4adabcb6894e4d8.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-context-e4adabcb6894e4d8.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-context-e4adabcb6894e4d8.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-context-e4adabcb6894e4d8.yaml
diff --git a/releasenotes/notes/feat-llmobs-decorator-tag-5bfecc5c53f562f6.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-decorator-tag-5bfecc5c53f562f6.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-decorator-tag-5bfecc5c53f562f6.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-decorator-tag-5bfecc5c53f562f6.yaml
diff --git a/releasenotes/notes/feat-llmobs-evals-agent-proxy-55e35060f1aa2555.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-evals-agent-proxy-55e35060f1aa2555.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-evals-agent-proxy-55e35060f1aa2555.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-evals-agent-proxy-55e35060f1aa2555.yaml
diff --git a/releasenotes/notes/feat-llmobs-function-decorator-automatic-io-annotation-acf41b686e39d20c.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-function-decorator-automatic-io-annotation-acf41b686e39d20c.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-function-decorator-automatic-io-annotation-acf41b686e39d20c.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-function-decorator-automatic-io-annotation-acf41b686e39d20c.yaml
diff --git a/releasenotes/notes/feat-llmobs-gemini-b65c714ceef9eb12.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-gemini-b65c714ceef9eb12.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-gemini-b65c714ceef9eb12.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-gemini-b65c714ceef9eb12.yaml
diff --git a/releasenotes/notes/feat-llmobs-integration-tag-db96e4f4bd811e49.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-integration-tag-db96e4f4bd811e49.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-integration-tag-db96e4f4bd811e49.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-integration-tag-db96e4f4bd811e49.yaml
diff --git a/releasenotes/notes/feat-llmobs-litellm-7fc73fd28ab88fac.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-litellm-7fc73fd28ab88fac.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-litellm-7fc73fd28ab88fac.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-litellm-7fc73fd28ab88fac.yaml
diff --git a/releasenotes/notes/feat-llmobs-model-name-optional-d916c96c7ace9375.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-model-name-optional-d916c96c7ace9375.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-model-name-optional-d916c96c7ace9375.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-model-name-optional-d916c96c7ace9375.yaml
diff --git a/releasenotes/notes/feat-llmobs-multithreading-783f29a684256b86.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-multithreading-783f29a684256b86.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-multithreading-783f29a684256b86.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-multithreading-783f29a684256b86.yaml
diff --git a/releasenotes/notes/feat-llmobs-openai-embeddings-57884b2bd273fbb2.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-openai-embeddings-57884b2bd273fbb2.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-openai-embeddings-57884b2bd273fbb2.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-openai-embeddings-57884b2bd273fbb2.yaml
diff --git a/releasenotes/notes/feat-llmobs-openai-model-params-950cb55892ecd2f7.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-openai-model-params-950cb55892ecd2f7.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-openai-model-params-950cb55892ecd2f7.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-openai-model-params-950cb55892ecd2f7.yaml
diff --git a/releasenotes/notes/feat-llmobs-openai-span-names-7b648c736180b648.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-openai-span-names-7b648c736180b648.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-openai-span-names-7b648c736180b648.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-openai-span-names-7b648c736180b648.yaml
diff --git a/releasenotes/notes/feat-llmobs-openai-streamed-tool-calls-305c9514aadf7684.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-openai-streamed-tool-calls-305c9514aadf7684.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-openai-streamed-tool-calls-305c9514aadf7684.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-openai-streamed-tool-calls-305c9514aadf7684.yaml
diff --git a/releasenotes/notes/feat-llmobs-span-writer-via-agent-evp-proxy-d8ea55491a1db2be.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-span-writer-via-agent-evp-proxy-d8ea55491a1db2be.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-span-writer-via-agent-evp-proxy-d8ea55491a1db2be.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-span-writer-via-agent-evp-proxy-d8ea55491a1db2be.yaml
diff --git a/releasenotes/notes/feat-llmobs-submit-eval-reasoning-3f825d5dd257d4f8.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-submit-eval-reasoning-3f825d5dd257d4f8.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-submit-eval-reasoning-3f825d5dd257d4f8.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-submit-eval-reasoning-3f825d5dd257d4f8.yaml
diff --git a/releasenotes/notes/feat-llmobs-submit-eval-success-assessment-11b93921832c54b4.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-submit-eval-success-assessment-11b93921832c54b4.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-submit-eval-success-assessment-11b93921832c54b4.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-submit-eval-success-assessment-11b93921832c54b4.yaml
diff --git a/releasenotes/notes/feat-llmobs-submit-langchain-embedding-spans-89c8704ef41cfee3.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-submit-langchain-embedding-spans-89c8704ef41cfee3.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-submit-langchain-embedding-spans-89c8704ef41cfee3.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-submit-langchain-embedding-spans-89c8704ef41cfee3.yaml
diff --git a/releasenotes/notes/feat-llmobs-submit-langchain-similarity-search-spans-c5581deda8b6878e.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-submit-langchain-similarity-search-spans-c5581deda8b6878e.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-submit-langchain-similarity-search-spans-c5581deda8b6878e.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-submit-langchain-similarity-search-spans-c5581deda8b6878e.yaml
diff --git a/releasenotes/notes/feat-llmobs-submit-langchain-tool-spans-cb11250335857e75.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-submit-langchain-tool-spans-cb11250335857e75.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-submit-langchain-tool-spans-cb11250335857e75.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-submit-langchain-tool-spans-cb11250335857e75.yaml
diff --git a/releasenotes/notes/feat-llmobs-unserializable-placeholders-8a59090a09995de3.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-unserializable-placeholders-8a59090a09995de3.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-unserializable-placeholders-8a59090a09995de3.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-unserializable-placeholders-8a59090a09995de3.yaml
diff --git a/releasenotes/notes/feat-llmobs-vertexai-f58488859472c7b5.yaml b/dd-trace-py/releasenotes/notes/feat-llmobs-vertexai-f58488859472c7b5.yaml
similarity index 100%
rename from releasenotes/notes/feat-llmobs-vertexai-f58488859472c7b5.yaml
rename to dd-trace-py/releasenotes/notes/feat-llmobs-vertexai-f58488859472c7b5.yaml
diff --git a/releasenotes/notes/feat-log-injection-enabled-by-default-395259b0419c7a5f.yaml b/dd-trace-py/releasenotes/notes/feat-log-injection-enabled-by-default-395259b0419c7a5f.yaml
similarity index 100%
rename from releasenotes/notes/feat-log-injection-enabled-by-default-395259b0419c7a5f.yaml
rename to dd-trace-py/releasenotes/notes/feat-log-injection-enabled-by-default-395259b0419c7a5f.yaml
diff --git a/releasenotes/notes/feat-mlflow-support.yaml b/dd-trace-py/releasenotes/notes/feat-mlflow-support.yaml
similarity index 100%
rename from releasenotes/notes/feat-mlflow-support.yaml
rename to dd-trace-py/releasenotes/notes/feat-mlflow-support.yaml
diff --git a/releasenotes/notes/feat-openai-azure-23cf45cfa854a5e5.yaml b/dd-trace-py/releasenotes/notes/feat-openai-azure-23cf45cfa854a5e5.yaml
similarity index 100%
rename from releasenotes/notes/feat-openai-azure-23cf45cfa854a5e5.yaml
rename to dd-trace-py/releasenotes/notes/feat-openai-azure-23cf45cfa854a5e5.yaml
diff --git a/releasenotes/notes/feat-openai-extra-endpoints-000fe24c40b5544d.yaml b/dd-trace-py/releasenotes/notes/feat-openai-extra-endpoints-000fe24c40b5544d.yaml
similarity index 100%
rename from releasenotes/notes/feat-openai-extra-endpoints-000fe24c40b5544d.yaml
rename to dd-trace-py/releasenotes/notes/feat-openai-extra-endpoints-000fe24c40b5544d.yaml
diff --git a/releasenotes/notes/feat-openai-parse-support-da6620e4bdf2ad6b.yaml b/dd-trace-py/releasenotes/notes/feat-openai-parse-support-da6620e4bdf2ad6b.yaml
similarity index 100%
rename from releasenotes/notes/feat-openai-parse-support-da6620e4bdf2ad6b.yaml
rename to dd-trace-py/releasenotes/notes/feat-openai-parse-support-da6620e4bdf2ad6b.yaml
diff --git a/releasenotes/notes/feat-openai-streamed-chunk-auto-extract-4cbaea8870b1df13.yaml b/dd-trace-py/releasenotes/notes/feat-openai-streamed-chunk-auto-extract-4cbaea8870b1df13.yaml
similarity index 100%
rename from releasenotes/notes/feat-openai-streamed-chunk-auto-extract-4cbaea8870b1df13.yaml
rename to dd-trace-py/releasenotes/notes/feat-openai-streamed-chunk-auto-extract-4cbaea8870b1df13.yaml
diff --git a/releasenotes/notes/feat-openai-streamed-tokens-ed7f5c6a779006a9.yaml b/dd-trace-py/releasenotes/notes/feat-openai-streamed-tokens-ed7f5c6a779006a9.yaml
similarity index 100%
rename from releasenotes/notes/feat-openai-streamed-tokens-ed7f5c6a779006a9.yaml
rename to dd-trace-py/releasenotes/notes/feat-openai-streamed-tokens-ed7f5c6a779006a9.yaml
diff --git a/releasenotes/notes/feat-openai-v1-support-cec20e0157462b53.yaml b/dd-trace-py/releasenotes/notes/feat-openai-v1-support-cec20e0157462b53.yaml
similarity index 100%
rename from releasenotes/notes/feat-openai-v1-support-cec20e0157462b53.yaml
rename to dd-trace-py/releasenotes/notes/feat-openai-v1-support-cec20e0157462b53.yaml
diff --git a/releasenotes/notes/feat-process-tags-support-273fea66418e7419.yaml b/dd-trace-py/releasenotes/notes/feat-process-tags-support-273fea66418e7419.yaml
similarity index 100%
rename from releasenotes/notes/feat-process-tags-support-273fea66418e7419.yaml
rename to dd-trace-py/releasenotes/notes/feat-process-tags-support-273fea66418e7419.yaml
diff --git a/releasenotes/notes/feat-profiling-rlock-support-e8607e68252647.yaml b/dd-trace-py/releasenotes/notes/feat-profiling-rlock-support-e8607e68252647.yaml
similarity index 100%
rename from releasenotes/notes/feat-profiling-rlock-support-e8607e68252647.yaml
rename to dd-trace-py/releasenotes/notes/feat-profiling-rlock-support-e8607e68252647.yaml
diff --git a/releasenotes/notes/feat-pylibmc-support-add-command-8c3545bfd7ac7c9b.yaml b/dd-trace-py/releasenotes/notes/feat-pylibmc-support-add-command-8c3545bfd7ac7c9b.yaml
similarity index 100%
rename from releasenotes/notes/feat-pylibmc-support-add-command-8c3545bfd7ac7c9b.yaml
rename to dd-trace-py/releasenotes/notes/feat-pylibmc-support-add-command-8c3545bfd7ac7c9b.yaml
diff --git a/releasenotes/notes/feat-pytest-add-no-ddtrace-option-fcbda62fe37723f9.yaml b/dd-trace-py/releasenotes/notes/feat-pytest-add-no-ddtrace-option-fcbda62fe37723f9.yaml
similarity index 100%
rename from releasenotes/notes/feat-pytest-add-no-ddtrace-option-fcbda62fe37723f9.yaml
rename to dd-trace-py/releasenotes/notes/feat-pytest-add-no-ddtrace-option-fcbda62fe37723f9.yaml
diff --git a/releasenotes/notes/feat-pytest-changes-in-modules-and-suites-bbdda83c3c40bfee.yaml b/dd-trace-py/releasenotes/notes/feat-pytest-changes-in-modules-and-suites-bbdda83c3c40bfee.yaml
similarity index 100%
rename from releasenotes/notes/feat-pytest-changes-in-modules-and-suites-bbdda83c3c40bfee.yaml
rename to dd-trace-py/releasenotes/notes/feat-pytest-changes-in-modules-and-suites-bbdda83c3c40bfee.yaml
diff --git a/releasenotes/notes/feat-pytest-test-suite-level-visibility-f910f94b71842212.yaml b/dd-trace-py/releasenotes/notes/feat-pytest-test-suite-level-visibility-f910f94b71842212.yaml
similarity index 100%
rename from releasenotes/notes/feat-pytest-test-suite-level-visibility-f910f94b71842212.yaml
rename to dd-trace-py/releasenotes/notes/feat-pytest-test-suite-level-visibility-f910f94b71842212.yaml
diff --git a/releasenotes/notes/feat-ray-instrument-actor-config-e072a42b63425d28.yaml b/dd-trace-py/releasenotes/notes/feat-ray-instrument-actor-config-e072a42b63425d28.yaml
similarity index 100%
rename from releasenotes/notes/feat-ray-instrument-actor-config-e072a42b63425d28.yaml
rename to dd-trace-py/releasenotes/notes/feat-ray-instrument-actor-config-e072a42b63425d28.yaml
diff --git a/releasenotes/notes/feat-ray-submission-configuration-c6ea82780b340b45.yaml b/dd-trace-py/releasenotes/notes/feat-ray-submission-configuration-c6ea82780b340b45.yaml
similarity index 100%
rename from releasenotes/notes/feat-ray-submission-configuration-c6ea82780b340b45.yaml
rename to dd-trace-py/releasenotes/notes/feat-ray-submission-configuration-c6ea82780b340b45.yaml
diff --git a/releasenotes/notes/feat-rc-support-llmo-08745314854b5764.yaml b/dd-trace-py/releasenotes/notes/feat-rc-support-llmo-08745314854b5764.yaml
similarity index 100%
rename from releasenotes/notes/feat-rc-support-llmo-08745314854b5764.yaml
rename to dd-trace-py/releasenotes/notes/feat-rc-support-llmo-08745314854b5764.yaml
diff --git a/releasenotes/notes/feat-redis-add-cmd-max-length-config-0ec3bc9effe67244.yaml b/dd-trace-py/releasenotes/notes/feat-redis-add-cmd-max-length-config-0ec3bc9effe67244.yaml
similarity index 100%
rename from releasenotes/notes/feat-redis-add-cmd-max-length-config-0ec3bc9effe67244.yaml
rename to dd-trace-py/releasenotes/notes/feat-redis-add-cmd-max-length-config-0ec3bc9effe67244.yaml
diff --git a/releasenotes/notes/feat-reenable-code-provenance-dde07285a9cd5863.yaml b/dd-trace-py/releasenotes/notes/feat-reenable-code-provenance-dde07285a9cd5863.yaml
similarity index 100%
rename from releasenotes/notes/feat-reenable-code-provenance-dde07285a9cd5863.yaml
rename to dd-trace-py/releasenotes/notes/feat-reenable-code-provenance-dde07285a9cd5863.yaml
diff --git a/releasenotes/notes/feat-resource-renaming-e5911d3975c220e3.yaml b/dd-trace-py/releasenotes/notes/feat-resource-renaming-e5911d3975c220e3.yaml
similarity index 100%
rename from releasenotes/notes/feat-resource-renaming-e5911d3975c220e3.yaml
rename to dd-trace-py/releasenotes/notes/feat-resource-renaming-e5911d3975c220e3.yaml
diff --git a/releasenotes/notes/feat-runtime-distribution-e27687432f7ee4a5.yaml b/dd-trace-py/releasenotes/notes/feat-runtime-distribution-e27687432f7ee4a5.yaml
similarity index 100%
rename from releasenotes/notes/feat-runtime-distribution-e27687432f7ee4a5.yaml
rename to dd-trace-py/releasenotes/notes/feat-runtime-distribution-e27687432f7ee4a5.yaml
diff --git a/releasenotes/notes/feat-server-address-db-client-4e6af4ec4c4ce8ed.yaml b/dd-trace-py/releasenotes/notes/feat-server-address-db-client-4e6af4ec4c4ce8ed.yaml
similarity index 100%
rename from releasenotes/notes/feat-server-address-db-client-4e6af4ec4c4ce8ed.yaml
rename to dd-trace-py/releasenotes/notes/feat-server-address-db-client-4e6af4ec4c4ce8ed.yaml
diff --git a/releasenotes/notes/feat-serverless-scheduler-31a819bc9eb4f332.yaml b/dd-trace-py/releasenotes/notes/feat-serverless-scheduler-31a819bc9eb4f332.yaml
similarity index 100%
rename from releasenotes/notes/feat-serverless-scheduler-31a819bc9eb4f332.yaml
rename to dd-trace-py/releasenotes/notes/feat-serverless-scheduler-31a819bc9eb4f332.yaml
diff --git a/releasenotes/notes/feat-span-decoration-c04a7aa0c98d52f6.yaml b/dd-trace-py/releasenotes/notes/feat-span-decoration-c04a7aa0c98d52f6.yaml
similarity index 100%
rename from releasenotes/notes/feat-span-decoration-c04a7aa0c98d52f6.yaml
rename to dd-trace-py/releasenotes/notes/feat-span-decoration-c04a7aa0c98d52f6.yaml
diff --git a/releasenotes/notes/feat-span-origin-e6ba3542e97cfd12.yaml b/dd-trace-py/releasenotes/notes/feat-span-origin-e6ba3542e97cfd12.yaml
similarity index 100%
rename from releasenotes/notes/feat-span-origin-e6ba3542e97cfd12.yaml
rename to dd-trace-py/releasenotes/notes/feat-span-origin-e6ba3542e97cfd12.yaml
diff --git a/releasenotes/notes/feat-standalone-sca-billing-925c84d69fe061ce.yaml b/dd-trace-py/releasenotes/notes/feat-standalone-sca-billing-925c84d69fe061ce.yaml
similarity index 100%
rename from releasenotes/notes/feat-standalone-sca-billing-925c84d69fe061ce.yaml
rename to dd-trace-py/releasenotes/notes/feat-standalone-sca-billing-925c84d69fe061ce.yaml
diff --git a/releasenotes/notes/feat-submit-langchain-tool-spans-e7f76291dfa1efe5.yaml b/dd-trace-py/releasenotes/notes/feat-submit-langchain-tool-spans-e7f76291dfa1efe5.yaml
similarity index 100%
rename from releasenotes/notes/feat-submit-langchain-tool-spans-e7f76291dfa1efe5.yaml
rename to dd-trace-py/releasenotes/notes/feat-submit-langchain-tool-spans-e7f76291dfa1efe5.yaml
diff --git a/releasenotes/notes/feat-support-global-tags-in-runtime-metrics-58fe01b78b7f9cbe.yaml b/dd-trace-py/releasenotes/notes/feat-support-global-tags-in-runtime-metrics-58fe01b78b7f9cbe.yaml
similarity index 100%
rename from releasenotes/notes/feat-support-global-tags-in-runtime-metrics-58fe01b78b7f9cbe.yaml
rename to dd-trace-py/releasenotes/notes/feat-support-global-tags-in-runtime-metrics-58fe01b78b7f9cbe.yaml
diff --git a/releasenotes/notes/feat-support-langchain-0-1-0d8e0ddd6248c4ed.yaml b/dd-trace-py/releasenotes/notes/feat-support-langchain-0-1-0d8e0ddd6248c4ed.yaml
similarity index 100%
rename from releasenotes/notes/feat-support-langchain-0-1-0d8e0ddd6248c4ed.yaml
rename to dd-trace-py/releasenotes/notes/feat-support-langchain-0-1-0d8e0ddd6248c4ed.yaml
diff --git a/releasenotes/notes/feat-support-server-address-tags-32d212c39eb6845e.yaml b/dd-trace-py/releasenotes/notes/feat-support-server-address-tags-32d212c39eb6845e.yaml
similarity index 100%
rename from releasenotes/notes/feat-support-server-address-tags-32d212c39eb6845e.yaml
rename to dd-trace-py/releasenotes/notes/feat-support-server-address-tags-32d212c39eb6845e.yaml
diff --git a/releasenotes/notes/feat-symdb-enabled-by-default-25eebb43fc8c5a0d.yaml b/dd-trace-py/releasenotes/notes/feat-symdb-enabled-by-default-25eebb43fc8c5a0d.yaml
similarity index 100%
rename from releasenotes/notes/feat-symdb-enabled-by-default-25eebb43fc8c5a0d.yaml
rename to dd-trace-py/releasenotes/notes/feat-symdb-enabled-by-default-25eebb43fc8c5a0d.yaml
diff --git a/releasenotes/notes/feat-uwsgi-gevent-thread-support-fc17ff672135dc02.yaml b/dd-trace-py/releasenotes/notes/feat-uwsgi-gevent-thread-support-fc17ff672135dc02.yaml
similarity index 100%
rename from releasenotes/notes/feat-uwsgi-gevent-thread-support-fc17ff672135dc02.yaml
rename to dd-trace-py/releasenotes/notes/feat-uwsgi-gevent-thread-support-fc17ff672135dc02.yaml
diff --git a/releasenotes/notes/feat-vertexai-e4a6dbe95d19eee0.yaml b/dd-trace-py/releasenotes/notes/feat-vertexai-e4a6dbe95d19eee0.yaml
similarity index 100%
rename from releasenotes/notes/feat-vertexai-e4a6dbe95d19eee0.yaml
rename to dd-trace-py/releasenotes/notes/feat-vertexai-e4a6dbe95d19eee0.yaml
diff --git a/releasenotes/notes/feature-aiohttp-23084fcf8e34ad0a.yaml b/dd-trace-py/releasenotes/notes/feature-aiohttp-23084fcf8e34ad0a.yaml
similarity index 100%
rename from releasenotes/notes/feature-aiohttp-23084fcf8e34ad0a.yaml
rename to dd-trace-py/releasenotes/notes/feature-aiohttp-23084fcf8e34ad0a.yaml
diff --git a/releasenotes/notes/feature-bottle-44cadc4aabaa750d.yaml b/dd-trace-py/releasenotes/notes/feature-bottle-44cadc4aabaa750d.yaml
similarity index 100%
rename from releasenotes/notes/feature-bottle-44cadc4aabaa750d.yaml
rename to dd-trace-py/releasenotes/notes/feature-bottle-44cadc4aabaa750d.yaml
diff --git a/releasenotes/notes/feature-ciapp-detect-code-owners-for-PyTest-tests-f8f66db2dc02ae91.yaml b/dd-trace-py/releasenotes/notes/feature-ciapp-detect-code-owners-for-PyTest-tests-f8f66db2dc02ae91.yaml
similarity index 100%
rename from releasenotes/notes/feature-ciapp-detect-code-owners-for-PyTest-tests-f8f66db2dc02ae91.yaml
rename to dd-trace-py/releasenotes/notes/feature-ciapp-detect-code-owners-for-PyTest-tests-f8f66db2dc02ae91.yaml
diff --git a/releasenotes/notes/feature-datastreams-kombu-bee9eba98bd1f750.yaml b/dd-trace-py/releasenotes/notes/feature-datastreams-kombu-bee9eba98bd1f750.yaml
similarity index 100%
rename from releasenotes/notes/feature-datastreams-kombu-bee9eba98bd1f750.yaml
rename to dd-trace-py/releasenotes/notes/feature-datastreams-kombu-bee9eba98bd1f750.yaml
diff --git a/releasenotes/notes/feature-fastapi-ccce6171c5e1ccde.yaml b/dd-trace-py/releasenotes/notes/feature-fastapi-ccce6171c5e1ccde.yaml
similarity index 100%
rename from releasenotes/notes/feature-fastapi-ccce6171c5e1ccde.yaml
rename to dd-trace-py/releasenotes/notes/feature-fastapi-ccce6171c5e1ccde.yaml
diff --git a/releasenotes/notes/feature-flask-4bdb2b839fada0fb.yaml b/dd-trace-py/releasenotes/notes/feature-flask-4bdb2b839fada0fb.yaml
similarity index 100%
rename from releasenotes/notes/feature-flask-4bdb2b839fada0fb.yaml
rename to dd-trace-py/releasenotes/notes/feature-flask-4bdb2b839fada0fb.yaml
diff --git a/releasenotes/notes/feature-flask-6744ed2003376d74.yaml b/dd-trace-py/releasenotes/notes/feature-flask-6744ed2003376d74.yaml
similarity index 100%
rename from releasenotes/notes/feature-flask-6744ed2003376d74.yaml
rename to dd-trace-py/releasenotes/notes/feature-flask-6744ed2003376d74.yaml
diff --git a/releasenotes/notes/feature-inject-trace-lambda-invoke-818866a5de2015a9.yaml b/dd-trace-py/releasenotes/notes/feature-inject-trace-lambda-invoke-818866a5de2015a9.yaml
similarity index 100%
rename from releasenotes/notes/feature-inject-trace-lambda-invoke-818866a5de2015a9.yaml
rename to dd-trace-py/releasenotes/notes/feature-inject-trace-lambda-invoke-818866a5de2015a9.yaml
diff --git a/releasenotes/notes/feature-injectr-trace-sqs-send-message-035dc3300db0cad0.yaml b/dd-trace-py/releasenotes/notes/feature-injectr-trace-sqs-send-message-035dc3300db0cad0.yaml
similarity index 100%
rename from releasenotes/notes/feature-injectr-trace-sqs-send-message-035dc3300db0cad0.yaml
rename to dd-trace-py/releasenotes/notes/feature-injectr-trace-sqs-send-message-035dc3300db0cad0.yaml
diff --git a/releasenotes/notes/feature-molten-041abc52f37eed37.yaml b/dd-trace-py/releasenotes/notes/feature-molten-041abc52f37eed37.yaml
similarity index 100%
rename from releasenotes/notes/feature-molten-041abc52f37eed37.yaml
rename to dd-trace-py/releasenotes/notes/feature-molten-041abc52f37eed37.yaml
diff --git a/releasenotes/notes/feature-pyodbc-52e513ccf4c6a03c.yaml b/dd-trace-py/releasenotes/notes/feature-pyodbc-52e513ccf4c6a03c.yaml
similarity index 100%
rename from releasenotes/notes/feature-pyodbc-52e513ccf4c6a03c.yaml
rename to dd-trace-py/releasenotes/notes/feature-pyodbc-52e513ccf4c6a03c.yaml
diff --git a/releasenotes/notes/feature-pyramid-aa3d4c3361861753.yaml b/dd-trace-py/releasenotes/notes/feature-pyramid-aa3d4c3361861753.yaml
similarity index 100%
rename from releasenotes/notes/feature-pyramid-aa3d4c3361861753.yaml
rename to dd-trace-py/releasenotes/notes/feature-pyramid-aa3d4c3361861753.yaml
diff --git a/releasenotes/notes/feature-sci-git-metadata-0b418d0a3529d11f.yaml b/dd-trace-py/releasenotes/notes/feature-sci-git-metadata-0b418d0a3529d11f.yaml
similarity index 100%
rename from releasenotes/notes/feature-sci-git-metadata-0b418d0a3529d11f.yaml
rename to dd-trace-py/releasenotes/notes/feature-sci-git-metadata-0b418d0a3529d11f.yaml
diff --git a/releasenotes/notes/feature-service-mapping-b1c6cf37a5ad6417.yaml b/dd-trace-py/releasenotes/notes/feature-service-mapping-b1c6cf37a5ad6417.yaml
similarity index 100%
rename from releasenotes/notes/feature-service-mapping-b1c6cf37a5ad6417.yaml
rename to dd-trace-py/releasenotes/notes/feature-service-mapping-b1c6cf37a5ad6417.yaml
diff --git a/releasenotes/notes/feature-starlette-e5171e4b2b2646c3.yaml b/dd-trace-py/releasenotes/notes/feature-starlette-e5171e4b2b2646c3.yaml
similarity index 100%
rename from releasenotes/notes/feature-starlette-e5171e4b2b2646c3.yaml
rename to dd-trace-py/releasenotes/notes/feature-starlette-e5171e4b2b2646c3.yaml
diff --git a/releasenotes/notes/feature-urllib3-integration-ab30709c8a39934c.yaml b/dd-trace-py/releasenotes/notes/feature-urllib3-integration-ab30709c8a39934c.yaml
similarity index 100%
rename from releasenotes/notes/feature-urllib3-integration-ab30709c8a39934c.yaml
rename to dd-trace-py/releasenotes/notes/feature-urllib3-integration-ab30709c8a39934c.yaml
diff --git a/releasenotes/notes/ffl-1623-register-ffe-product-f0e7309c3ef22d75.yaml b/dd-trace-py/releasenotes/notes/ffl-1623-register-ffe-product-f0e7309c3ef22d75.yaml
similarity index 100%
rename from releasenotes/notes/ffl-1623-register-ffe-product-f0e7309c3ef22d75.yaml
rename to dd-trace-py/releasenotes/notes/ffl-1623-register-ffe-product-f0e7309c3ef22d75.yaml
diff --git a/releasenotes/notes/filter-git-url-source-code-12722a027a6fa071.yaml b/dd-trace-py/releasenotes/notes/filter-git-url-source-code-12722a027a6fa071.yaml
similarity index 100%
rename from releasenotes/notes/filter-git-url-source-code-12722a027a6fa071.yaml
rename to dd-trace-py/releasenotes/notes/filter-git-url-source-code-12722a027a6fa071.yaml
diff --git a/releasenotes/notes/filter-sensititive-ssh-git-repo-url-cc4ca37227b4e602.yaml b/dd-trace-py/releasenotes/notes/filter-sensititive-ssh-git-repo-url-cc4ca37227b4e602.yaml
similarity index 100%
rename from releasenotes/notes/filter-sensititive-ssh-git-repo-url-cc4ca37227b4e602.yaml
rename to dd-trace-py/releasenotes/notes/filter-sensititive-ssh-git-repo-url-cc4ca37227b4e602.yaml
diff --git a/releasenotes/notes/fingerprinting-f285687dd35085ed.yaml b/dd-trace-py/releasenotes/notes/fingerprinting-f285687dd35085ed.yaml
similarity index 100%
rename from releasenotes/notes/fingerprinting-f285687dd35085ed.yaml
rename to dd-trace-py/releasenotes/notes/fingerprinting-f285687dd35085ed.yaml
diff --git a/releasenotes/notes/fix-128bit-trace-id-propagation-b0e262f0fdf45044.yaml b/dd-trace-py/releasenotes/notes/fix-128bit-trace-id-propagation-b0e262f0fdf45044.yaml
similarity index 100%
rename from releasenotes/notes/fix-128bit-trace-id-propagation-b0e262f0fdf45044.yaml
rename to dd-trace-py/releasenotes/notes/fix-128bit-trace-id-propagation-b0e262f0fdf45044.yaml
diff --git a/releasenotes/notes/fix-add-b3-traceid-and-spanid-padding-919b698c8008346d.yaml b/dd-trace-py/releasenotes/notes/fix-add-b3-traceid-and-spanid-padding-919b698c8008346d.yaml
similarity index 100%
rename from releasenotes/notes/fix-add-b3-traceid-and-spanid-padding-919b698c8008346d.yaml
rename to dd-trace-py/releasenotes/notes/fix-add-b3-traceid-and-spanid-padding-919b698c8008346d.yaml
diff --git a/releasenotes/notes/fix-agent-based-sampling-8877694a37053e51.yaml b/dd-trace-py/releasenotes/notes/fix-agent-based-sampling-8877694a37053e51.yaml
similarity index 100%
rename from releasenotes/notes/fix-agent-based-sampling-8877694a37053e51.yaml
rename to dd-trace-py/releasenotes/notes/fix-agent-based-sampling-8877694a37053e51.yaml
diff --git a/releasenotes/notes/fix-agent-sampling-processor-5298a70d9b2154e6.yaml b/dd-trace-py/releasenotes/notes/fix-agent-sampling-processor-5298a70d9b2154e6.yaml
similarity index 100%
rename from releasenotes/notes/fix-agent-sampling-processor-5298a70d9b2154e6.yaml
rename to dd-trace-py/releasenotes/notes/fix-agent-sampling-processor-5298a70d9b2154e6.yaml
diff --git a/releasenotes/notes/fix-ai-guard-empty-result-9ceb9de92d746a86.yaml b/dd-trace-py/releasenotes/notes/fix-ai-guard-empty-result-9ceb9de92d746a86.yaml
similarity index 100%
rename from releasenotes/notes/fix-ai-guard-empty-result-9ceb9de92d746a86.yaml
rename to dd-trace-py/releasenotes/notes/fix-ai-guard-empty-result-9ceb9de92d746a86.yaml
diff --git a/releasenotes/notes/fix-ai-tokens-df16a9c7acd23805.yaml b/dd-trace-py/releasenotes/notes/fix-ai-tokens-df16a9c7acd23805.yaml
similarity index 100%
rename from releasenotes/notes/fix-ai-tokens-df16a9c7acd23805.yaml
rename to dd-trace-py/releasenotes/notes/fix-ai-tokens-df16a9c7acd23805.yaml
diff --git a/releasenotes/notes/fix-aiobotocore-9eeac808a3bf0f63.yaml b/dd-trace-py/releasenotes/notes/fix-aiobotocore-9eeac808a3bf0f63.yaml
similarity index 100%
rename from releasenotes/notes/fix-aiobotocore-9eeac808a3bf0f63.yaml
rename to dd-trace-py/releasenotes/notes/fix-aiobotocore-9eeac808a3bf0f63.yaml
diff --git a/releasenotes/notes/fix-aiobotocore-make-api-call-kwargs-b038d9895bfceee3.yaml b/dd-trace-py/releasenotes/notes/fix-aiobotocore-make-api-call-kwargs-b038d9895bfceee3.yaml
similarity index 100%
rename from releasenotes/notes/fix-aiobotocore-make-api-call-kwargs-b038d9895bfceee3.yaml
rename to dd-trace-py/releasenotes/notes/fix-aiobotocore-make-api-call-kwargs-b038d9895bfceee3.yaml
diff --git a/releasenotes/notes/fix-aiohttp-jinja2-import-2b7e29a14a58efdc.yaml b/dd-trace-py/releasenotes/notes/fix-aiohttp-jinja2-import-2b7e29a14a58efdc.yaml
similarity index 100%
rename from releasenotes/notes/fix-aiohttp-jinja2-import-2b7e29a14a58efdc.yaml
rename to dd-trace-py/releasenotes/notes/fix-aiohttp-jinja2-import-2b7e29a14a58efdc.yaml
diff --git a/releasenotes/notes/fix-aiohttp_jinja2-failed-imports-sev2 b/dd-trace-py/releasenotes/notes/fix-aiohttp_jinja2-failed-imports-sev2
similarity index 100%
rename from releasenotes/notes/fix-aiohttp_jinja2-failed-imports-sev2
rename to dd-trace-py/releasenotes/notes/fix-aiohttp_jinja2-failed-imports-sev2
diff --git a/releasenotes/notes/fix-aiomysql-async-with-usage-ac6510f48ed0e6fe.yaml b/dd-trace-py/releasenotes/notes/fix-aiomysql-async-with-usage-ac6510f48ed0e6fe.yaml
similarity index 100%
rename from releasenotes/notes/fix-aiomysql-async-with-usage-ac6510f48ed0e6fe.yaml
rename to dd-trace-py/releasenotes/notes/fix-aiomysql-async-with-usage-ac6510f48ed0e6fe.yaml
diff --git a/releasenotes/notes/fix-aioredis-13-parenting-6b03cc692ac639ce.yaml b/dd-trace-py/releasenotes/notes/fix-aioredis-13-parenting-6b03cc692ac639ce.yaml
similarity index 100%
rename from releasenotes/notes/fix-aioredis-13-parenting-6b03cc692ac639ce.yaml
rename to dd-trace-py/releasenotes/notes/fix-aioredis-13-parenting-6b03cc692ac639ce.yaml
diff --git a/releasenotes/notes/fix-aioredis-async-with-pipeline-805966300810edf8.yaml b/dd-trace-py/releasenotes/notes/fix-aioredis-async-with-pipeline-805966300810edf8.yaml
similarity index 100%
rename from releasenotes/notes/fix-aioredis-async-with-pipeline-805966300810edf8.yaml
rename to dd-trace-py/releasenotes/notes/fix-aioredis-async-with-pipeline-805966300810edf8.yaml
diff --git a/releasenotes/notes/fix-aioredis-catch-cancellederror-223e8bb3d1aea94f.yaml b/dd-trace-py/releasenotes/notes/fix-aioredis-catch-cancellederror-223e8bb3d1aea94f.yaml
similarity index 100%
rename from releasenotes/notes/fix-aioredis-catch-cancellederror-223e8bb3d1aea94f.yaml
rename to dd-trace-py/releasenotes/notes/fix-aioredis-catch-cancellederror-223e8bb3d1aea94f.yaml
diff --git a/releasenotes/notes/fix-aioredis-coroutine-execute-10fc849a7123b456.yaml b/dd-trace-py/releasenotes/notes/fix-aioredis-coroutine-execute-10fc849a7123b456.yaml
similarity index 100%
rename from releasenotes/notes/fix-aioredis-coroutine-execute-10fc849a7123b456.yaml
rename to dd-trace-py/releasenotes/notes/fix-aioredis-coroutine-execute-10fc849a7123b456.yaml
diff --git a/releasenotes/notes/fix-aioredis-unicodedecodeerror-b861b199e8757950.yaml b/dd-trace-py/releasenotes/notes/fix-aioredis-unicodedecodeerror-b861b199e8757950.yaml
similarity index 100%
rename from releasenotes/notes/fix-aioredis-unicodedecodeerror-b861b199e8757950.yaml
rename to dd-trace-py/releasenotes/notes/fix-aioredis-unicodedecodeerror-b861b199e8757950.yaml
diff --git a/releasenotes/notes/fix-algoliasearch-tag-non-text-6a2d90b486ca2553.yaml b/dd-trace-py/releasenotes/notes/fix-algoliasearch-tag-non-text-6a2d90b486ca2553.yaml
similarity index 100%
rename from releasenotes/notes/fix-algoliasearch-tag-non-text-6a2d90b486ca2553.yaml
rename to dd-trace-py/releasenotes/notes/fix-algoliasearch-tag-non-text-6a2d90b486ca2553.yaml
diff --git a/releasenotes/notes/fix-allow-django-user-id-uuid-015c602a0881699d.yaml b/dd-trace-py/releasenotes/notes/fix-allow-django-user-id-uuid-015c602a0881699d.yaml
similarity index 100%
rename from releasenotes/notes/fix-allow-django-user-id-uuid-015c602a0881699d.yaml
rename to dd-trace-py/releasenotes/notes/fix-allow-django-user-id-uuid-015c602a0881699d.yaml
diff --git a/releasenotes/notes/fix-another-flask-body-blocking-acd533aa3c1bd46e.yaml b/dd-trace-py/releasenotes/notes/fix-another-flask-body-blocking-acd533aa3c1bd46e.yaml
similarity index 100%
rename from releasenotes/notes/fix-another-flask-body-blocking-acd533aa3c1bd46e.yaml
rename to dd-trace-py/releasenotes/notes/fix-another-flask-body-blocking-acd533aa3c1bd46e.yaml
diff --git a/releasenotes/notes/fix-ant-system-219f0c0332831ac4.yaml b/dd-trace-py/releasenotes/notes/fix-ant-system-219f0c0332831ac4.yaml
similarity index 100%
rename from releasenotes/notes/fix-ant-system-219f0c0332831ac4.yaml
rename to dd-trace-py/releasenotes/notes/fix-ant-system-219f0c0332831ac4.yaml
diff --git a/releasenotes/notes/fix-anthroipc-json-serializable-99af0985bd967e5d.yaml b/dd-trace-py/releasenotes/notes/fix-anthroipc-json-serializable-99af0985bd967e5d.yaml
similarity index 100%
rename from releasenotes/notes/fix-anthroipc-json-serializable-99af0985bd967e5d.yaml
rename to dd-trace-py/releasenotes/notes/fix-anthroipc-json-serializable-99af0985bd967e5d.yaml
diff --git a/releasenotes/notes/fix-anthropic-input-tokens-unified-calculation-a1b2c3d4e5f6g7h8.yaml b/dd-trace-py/releasenotes/notes/fix-anthropic-input-tokens-unified-calculation-a1b2c3d4e5f6g7h8.yaml
similarity index 100%
rename from releasenotes/notes/fix-anthropic-input-tokens-unified-calculation-a1b2c3d4e5f6g7h8.yaml
rename to dd-trace-py/releasenotes/notes/fix-anthropic-input-tokens-unified-calculation-a1b2c3d4e5f6g7h8.yaml
diff --git a/releasenotes/notes/fix-anthropic-partial-json-tool-use-e13fa00764dc2feb.yaml b/dd-trace-py/releasenotes/notes/fix-anthropic-partial-json-tool-use-e13fa00764dc2feb.yaml
similarity index 100%
rename from releasenotes/notes/fix-anthropic-partial-json-tool-use-e13fa00764dc2feb.yaml
rename to dd-trace-py/releasenotes/notes/fix-anthropic-partial-json-tool-use-e13fa00764dc2feb.yaml
diff --git a/releasenotes/notes/fix-appsec-deprecated-import-8e834665d0b1e5d5.yaml b/dd-trace-py/releasenotes/notes/fix-appsec-deprecated-import-8e834665d0b1e5d5.yaml
similarity index 100%
rename from releasenotes/notes/fix-appsec-deprecated-import-8e834665d0b1e5d5.yaml
rename to dd-trace-py/releasenotes/notes/fix-appsec-deprecated-import-8e834665d0b1e5d5.yaml
diff --git a/releasenotes/notes/fix-appsec-request-context-cleanup-afd26509cfbf2cc5.yaml b/dd-trace-py/releasenotes/notes/fix-appsec-request-context-cleanup-afd26509cfbf2cc5.yaml
similarity index 100%
rename from releasenotes/notes/fix-appsec-request-context-cleanup-afd26509cfbf2cc5.yaml
rename to dd-trace-py/releasenotes/notes/fix-appsec-request-context-cleanup-afd26509cfbf2cc5.yaml
diff --git a/releasenotes/notes/fix-appsec-telemetry-product-activation-d2fa33337ab9e4bd.yaml b/dd-trace-py/releasenotes/notes/fix-appsec-telemetry-product-activation-d2fa33337ab9e4bd.yaml
similarity index 100%
rename from releasenotes/notes/fix-appsec-telemetry-product-activation-d2fa33337ab9e4bd.yaml
rename to dd-trace-py/releasenotes/notes/fix-appsec-telemetry-product-activation-d2fa33337ab9e4bd.yaml
diff --git a/releasenotes/notes/fix-appsec-use-unpatched-json-8d09aacad4808ef2.yaml b/dd-trace-py/releasenotes/notes/fix-appsec-use-unpatched-json-8d09aacad4808ef2.yaml
similarity index 100%
rename from releasenotes/notes/fix-appsec-use-unpatched-json-8d09aacad4808ef2.yaml
rename to dd-trace-py/releasenotes/notes/fix-appsec-use-unpatched-json-8d09aacad4808ef2.yaml
diff --git a/releasenotes/notes/fix-appveyor-commit-message-752b38ce564f5be6.yaml b/dd-trace-py/releasenotes/notes/fix-appveyor-commit-message-752b38ce564f5be6.yaml
similarity index 100%
rename from releasenotes/notes/fix-appveyor-commit-message-752b38ce564f5be6.yaml
rename to dd-trace-py/releasenotes/notes/fix-appveyor-commit-message-752b38ce564f5be6.yaml
diff --git a/releasenotes/notes/fix-asgi-durations-include-background-tasks-4add6b50712608b2.yaml b/dd-trace-py/releasenotes/notes/fix-asgi-durations-include-background-tasks-4add6b50712608b2.yaml
similarity index 100%
rename from releasenotes/notes/fix-asgi-durations-include-background-tasks-4add6b50712608b2.yaml
rename to dd-trace-py/releasenotes/notes/fix-asgi-durations-include-background-tasks-4add6b50712608b2.yaml
diff --git a/releasenotes/notes/fix-asgi-middleware-url-tags-06051605794f88f7.yaml b/dd-trace-py/releasenotes/notes/fix-asgi-middleware-url-tags-06051605794f88f7.yaml
similarity index 100%
rename from releasenotes/notes/fix-asgi-middleware-url-tags-06051605794f88f7.yaml
rename to dd-trace-py/releasenotes/notes/fix-asgi-middleware-url-tags-06051605794f88f7.yaml
diff --git a/releasenotes/notes/fix-asgi-peer-ip-c5f864d8d7954010.yaml b/dd-trace-py/releasenotes/notes/fix-asgi-peer-ip-c5f864d8d7954010.yaml
similarity index 100%
rename from releasenotes/notes/fix-asgi-peer-ip-c5f864d8d7954010.yaml
rename to dd-trace-py/releasenotes/notes/fix-asgi-peer-ip-c5f864d8d7954010.yaml
diff --git a/releasenotes/notes/fix-asgi-raw-path-lfi-detection-68f0092a85683102.yaml b/dd-trace-py/releasenotes/notes/fix-asgi-raw-path-lfi-detection-68f0092a85683102.yaml
similarity index 100%
rename from releasenotes/notes/fix-asgi-raw-path-lfi-detection-68f0092a85683102.yaml
rename to dd-trace-py/releasenotes/notes/fix-asgi-raw-path-lfi-detection-68f0092a85683102.yaml
diff --git a/releasenotes/notes/fix-asm-multipart-duplicate-keys-6a0e01e5cc0aabd8.yaml b/dd-trace-py/releasenotes/notes/fix-asm-multipart-duplicate-keys-6a0e01e5cc0aabd8.yaml
similarity index 100%
rename from releasenotes/notes/fix-asm-multipart-duplicate-keys-6a0e01e5cc0aabd8.yaml
rename to dd-trace-py/releasenotes/notes/fix-asm-multipart-duplicate-keys-6a0e01e5cc0aabd8.yaml
diff --git a/releasenotes/notes/fix-asm-package-distributions-import-loop-11693f2a26032774.yaml b/dd-trace-py/releasenotes/notes/fix-asm-package-distributions-import-loop-11693f2a26032774.yaml
similarity index 100%
rename from releasenotes/notes/fix-asm-package-distributions-import-loop-11693f2a26032774.yaml
rename to dd-trace-py/releasenotes/notes/fix-asm-package-distributions-import-loop-11693f2a26032774.yaml
diff --git a/releasenotes/notes/fix-asm-request-context-partial-flushing-7c45aaf55e836261.yaml b/dd-trace-py/releasenotes/notes/fix-asm-request-context-partial-flushing-7c45aaf55e836261.yaml
similarity index 100%
rename from releasenotes/notes/fix-asm-request-context-partial-flushing-7c45aaf55e836261.yaml
rename to dd-trace-py/releasenotes/notes/fix-asm-request-context-partial-flushing-7c45aaf55e836261.yaml
diff --git a/releasenotes/notes/fix-asm-taint-tracking-compilation-8c740752bd9df137.yaml b/dd-trace-py/releasenotes/notes/fix-asm-taint-tracking-compilation-8c740752bd9df137.yaml
similarity index 100%
rename from releasenotes/notes/fix-asm-taint-tracking-compilation-8c740752bd9df137.yaml
rename to dd-trace-py/releasenotes/notes/fix-asm-taint-tracking-compilation-8c740752bd9df137.yaml
diff --git a/releasenotes/notes/fix-ast-patching-none-module_path-4f66c1e35169d5e4.yaml b/dd-trace-py/releasenotes/notes/fix-ast-patching-none-module_path-4f66c1e35169d5e4.yaml
similarity index 100%
rename from releasenotes/notes/fix-ast-patching-none-module_path-4f66c1e35169d5e4.yaml
rename to dd-trace-py/releasenotes/notes/fix-ast-patching-none-module_path-4f66c1e35169d5e4.yaml
diff --git a/releasenotes/notes/fix-asyncio-context-reset-6283f01dc7d46dc4.yaml b/dd-trace-py/releasenotes/notes/fix-asyncio-context-reset-6283f01dc7d46dc4.yaml
similarity index 100%
rename from releasenotes/notes/fix-asyncio-context-reset-6283f01dc7d46dc4.yaml
rename to dd-trace-py/releasenotes/notes/fix-asyncio-context-reset-6283f01dc7d46dc4.yaml
diff --git a/releasenotes/notes/fix-asyncio-scope-managers-c58398a05c89c7a8.yaml b/dd-trace-py/releasenotes/notes/fix-asyncio-scope-managers-c58398a05c89c7a8.yaml
similarity index 100%
rename from releasenotes/notes/fix-asyncio-scope-managers-c58398a05c89c7a8.yaml
rename to dd-trace-py/releasenotes/notes/fix-asyncio-scope-managers-c58398a05c89c7a8.yaml
diff --git a/releasenotes/notes/fix-asyncpg-pool-error-97a58b63370428bc.yaml b/dd-trace-py/releasenotes/notes/fix-asyncpg-pool-error-97a58b63370428bc.yaml
similarity index 100%
rename from releasenotes/notes/fix-asyncpg-pool-error-97a58b63370428bc.yaml
rename to dd-trace-py/releasenotes/notes/fix-asyncpg-pool-error-97a58b63370428bc.yaml
diff --git a/releasenotes/notes/fix-attribute-error-bug-google-adk-8970290a34e21692.yaml b/dd-trace-py/releasenotes/notes/fix-attribute-error-bug-google-adk-8970290a34e21692.yaml
similarity index 100%
rename from releasenotes/notes/fix-attribute-error-bug-google-adk-8970290a34e21692.yaml
rename to dd-trace-py/releasenotes/notes/fix-attribute-error-bug-google-adk-8970290a34e21692.yaml
diff --git a/releasenotes/notes/fix-attribute-error-in-flask-2.2.0-94524c33b005d48a.yaml b/dd-trace-py/releasenotes/notes/fix-attribute-error-in-flask-2.2.0-94524c33b005d48a.yaml
similarity index 100%
rename from releasenotes/notes/fix-attribute-error-in-flask-2.2.0-94524c33b005d48a.yaml
rename to dd-trace-py/releasenotes/notes/fix-attribute-error-in-flask-2.2.0-94524c33b005d48a.yaml
diff --git a/releasenotes/notes/fix-aws-lambda-circular-dep-when-patching-in-handler-320de20015a8d5cd.yaml b/dd-trace-py/releasenotes/notes/fix-aws-lambda-circular-dep-when-patching-in-handler-320de20015a8d5cd.yaml
similarity index 100%
rename from releasenotes/notes/fix-aws-lambda-circular-dep-when-patching-in-handler-320de20015a8d5cd.yaml
rename to dd-trace-py/releasenotes/notes/fix-aws-lambda-circular-dep-when-patching-in-handler-320de20015a8d5cd.yaml
diff --git a/releasenotes/notes/fix-aws-lambda-crashing-when-timeout-has-no-root-span-4a0fdacf707709a9.yaml b/dd-trace-py/releasenotes/notes/fix-aws-lambda-crashing-when-timeout-has-no-root-span-4a0fdacf707709a9.yaml
similarity index 100%
rename from releasenotes/notes/fix-aws-lambda-crashing-when-timeout-has-no-root-span-4a0fdacf707709a9.yaml
rename to dd-trace-py/releasenotes/notes/fix-aws-lambda-crashing-when-timeout-has-no-root-span-4a0fdacf707709a9.yaml
diff --git a/releasenotes/notes/fix-aws-lambda-get-argument-value-position-01ffab721cd2e6b7.yaml b/dd-trace-py/releasenotes/notes/fix-aws-lambda-get-argument-value-position-01ffab721cd2e6b7.yaml
similarity index 100%
rename from releasenotes/notes/fix-aws-lambda-get-argument-value-position-01ffab721cd2e6b7.yaml
rename to dd-trace-py/releasenotes/notes/fix-aws-lambda-get-argument-value-position-01ffab721cd2e6b7.yaml
diff --git a/releasenotes/notes/fix-aws-lambda-infinite-recursion-crash-2cba8a190411cc7e.yaml b/dd-trace-py/releasenotes/notes/fix-aws-lambda-infinite-recursion-crash-2cba8a190411cc7e.yaml
similarity index 100%
rename from releasenotes/notes/fix-aws-lambda-infinite-recursion-crash-2cba8a190411cc7e.yaml
rename to dd-trace-py/releasenotes/notes/fix-aws-lambda-infinite-recursion-crash-2cba8a190411cc7e.yaml
diff --git a/releasenotes/notes/fix-aws-lambda-patch-callable-object-handlers-897d278248c1d159.yaml b/dd-trace-py/releasenotes/notes/fix-aws-lambda-patch-callable-object-handlers-897d278248c1d159.yaml
similarity index 100%
rename from releasenotes/notes/fix-aws-lambda-patch-callable-object-handlers-897d278248c1d159.yaml
rename to dd-trace-py/releasenotes/notes/fix-aws-lambda-patch-callable-object-handlers-897d278248c1d159.yaml
diff --git a/releasenotes/notes/fix-aws-lambda-signal-handler-restoration-98f4f110f69a1e65.yaml b/dd-trace-py/releasenotes/notes/fix-aws-lambda-signal-handler-restoration-98f4f110f69a1e65.yaml
similarity index 100%
rename from releasenotes/notes/fix-aws-lambda-signal-handler-restoration-98f4f110f69a1e65.yaml
rename to dd-trace-py/releasenotes/notes/fix-aws-lambda-signal-handler-restoration-98f4f110f69a1e65.yaml
diff --git a/releasenotes/notes/fix-aws-lambda-signal-wrapping-756fc97b4eeb8ef9.yaml b/dd-trace-py/releasenotes/notes/fix-aws-lambda-signal-wrapping-756fc97b4eeb8ef9.yaml
similarity index 100%
rename from releasenotes/notes/fix-aws-lambda-signal-wrapping-756fc97b4eeb8ef9.yaml
rename to dd-trace-py/releasenotes/notes/fix-aws-lambda-signal-wrapping-756fc97b4eeb8ef9.yaml
diff --git a/releasenotes/notes/fix-aws-tag-params-0e1488513a0ae5c7.yaml b/dd-trace-py/releasenotes/notes/fix-aws-tag-params-0e1488513a0ae5c7.yaml
similarity index 100%
rename from releasenotes/notes/fix-aws-tag-params-0e1488513a0ae5c7.yaml
rename to dd-trace-py/releasenotes/notes/fix-aws-tag-params-0e1488513a0ae5c7.yaml
diff --git a/releasenotes/notes/fix-azure-functions-async-b9f61567dfb7eaba.yaml b/dd-trace-py/releasenotes/notes/fix-azure-functions-async-b9f61567dfb7eaba.yaml
similarity index 100%
rename from releasenotes/notes/fix-azure-functions-async-b9f61567dfb7eaba.yaml
rename to dd-trace-py/releasenotes/notes/fix-azure-functions-async-b9f61567dfb7eaba.yaml
diff --git a/releasenotes/notes/fix-azure-functions-decorator-order-ef1920cf7379530d.yaml b/dd-trace-py/releasenotes/notes/fix-azure-functions-decorator-order-ef1920cf7379530d.yaml
similarity index 100%
rename from releasenotes/notes/fix-azure-functions-decorator-order-ef1920cf7379530d.yaml
rename to dd-trace-py/releasenotes/notes/fix-azure-functions-decorator-order-ef1920cf7379530d.yaml
diff --git a/releasenotes/notes/fix-azure-functions-function-name-decorator-45976b4495b741d2.yaml b/dd-trace-py/releasenotes/notes/fix-azure-functions-function-name-decorator-45976b4495b741d2.yaml
similarity index 100%
rename from releasenotes/notes/fix-azure-functions-function-name-decorator-45976b4495b741d2.yaml
rename to dd-trace-py/releasenotes/notes/fix-azure-functions-function-name-decorator-45976b4495b741d2.yaml
diff --git a/releasenotes/notes/fix-azure-functions-method-signature-0468812f17348843.yaml b/dd-trace-py/releasenotes/notes/fix-azure-functions-method-signature-0468812f17348843.yaml
similarity index 100%
rename from releasenotes/notes/fix-azure-functions-method-signature-0468812f17348843.yaml
rename to dd-trace-py/releasenotes/notes/fix-azure-functions-method-signature-0468812f17348843.yaml
diff --git a/releasenotes/notes/fix-azure-functions-service-bus-consume-message-list-cc30b53dffb18e08.yaml b/dd-trace-py/releasenotes/notes/fix-azure-functions-service-bus-consume-message-list-cc30b53dffb18e08.yaml
similarity index 100%
rename from releasenotes/notes/fix-azure-functions-service-bus-consume-message-list-cc30b53dffb18e08.yaml
rename to dd-trace-py/releasenotes/notes/fix-azure-functions-service-bus-consume-message-list-cc30b53dffb18e08.yaml
diff --git a/releasenotes/notes/fix-azure-functions-timer-trigger-resource-name-5048d2e3bfea7a6c.yaml b/dd-trace-py/releasenotes/notes/fix-azure-functions-timer-trigger-resource-name-5048d2e3bfea7a6c.yaml
similarity index 100%
rename from releasenotes/notes/fix-azure-functions-timer-trigger-resource-name-5048d2e3bfea7a6c.yaml
rename to dd-trace-py/releasenotes/notes/fix-azure-functions-timer-trigger-resource-name-5048d2e3bfea7a6c.yaml
diff --git a/releasenotes/notes/fix-azure-functions-timer-trigger-span-kind-internal-a884095b43b2692b.yaml b/dd-trace-py/releasenotes/notes/fix-azure-functions-timer-trigger-span-kind-internal-a884095b43b2692b.yaml
similarity index 100%
rename from releasenotes/notes/fix-azure-functions-timer-trigger-span-kind-internal-a884095b43b2692b.yaml
rename to dd-trace-py/releasenotes/notes/fix-azure-functions-timer-trigger-span-kind-internal-a884095b43b2692b.yaml
diff --git a/releasenotes/notes/fix-baggage-and-config-908e08e1521cdaa3.yaml b/dd-trace-py/releasenotes/notes/fix-baggage-and-config-908e08e1521cdaa3.yaml
similarity index 100%
rename from releasenotes/notes/fix-baggage-and-config-908e08e1521cdaa3.yaml
rename to dd-trace-py/releasenotes/notes/fix-baggage-and-config-908e08e1521cdaa3.yaml
diff --git a/releasenotes/notes/fix-bedrock-agent-concurrent-invoke-state-826a3d5a247b7664.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-agent-concurrent-invoke-state-826a3d5a247b7664.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-agent-concurrent-invoke-state-826a3d5a247b7664.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-agent-concurrent-invoke-state-826a3d5a247b7664.yaml
diff --git a/releasenotes/notes/fix-bedrock-early-stream-exit-81da39d97fb1b26e.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-early-stream-exit-81da39d97fb1b26e.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-early-stream-exit-81da39d97fb1b26e.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-early-stream-exit-81da39d97fb1b26e.yaml
diff --git a/releasenotes/notes/fix-bedrock-guardcontent-5cebb808ee256df4.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-guardcontent-5cebb808ee256df4.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-guardcontent-5cebb808ee256df4.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-guardcontent-5cebb808ee256df4.yaml
diff --git a/releasenotes/notes/fix-bedrock-input-tokens-unified-calculation-b2c3d4e5f6g7h8i9.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-input-tokens-unified-calculation-b2c3d4e5f6g7h8i9.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-input-tokens-unified-calculation-b2c3d4e5f6g7h8i9.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-input-tokens-unified-calculation-b2c3d4e5f6g7h8i9.yaml
diff --git a/releasenotes/notes/fix-bedrock-llmobs-cohere-a1bcb48e9b252d77.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-llmobs-cohere-a1bcb48e9b252d77.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-llmobs-cohere-a1bcb48e9b252d77.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-llmobs-cohere-a1bcb48e9b252d77.yaml
diff --git a/releasenotes/notes/fix-bedrock-model-id-parsing-611aea2ca2e00656.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-model-id-parsing-611aea2ca2e00656.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-model-id-parsing-611aea2ca2e00656.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-model-id-parsing-611aea2ca2e00656.yaml
diff --git a/releasenotes/notes/fix-bedrock-model-parsing-c5f7233be6e486c6.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-model-parsing-c5f7233be6e486c6.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-model-parsing-c5f7233be6e486c6.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-model-parsing-c5f7233be6e486c6.yaml
diff --git a/releasenotes/notes/fix-bedrock-stream-0bd52763872967a5.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-stream-0bd52763872967a5.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-stream-0bd52763872967a5.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-stream-0bd52763872967a5.yaml
diff --git a/releasenotes/notes/fix-bedrock-token-location-36c21044eecce688.yaml b/dd-trace-py/releasenotes/notes/fix-bedrock-token-location-36c21044eecce688.yaml
similarity index 100%
rename from releasenotes/notes/fix-bedrock-token-location-36c21044eecce688.yaml
rename to dd-trace-py/releasenotes/notes/fix-bedrock-token-location-36c21044eecce688.yaml
diff --git a/releasenotes/notes/fix-benchmarks-package-inclusion-ecab6796b4ee3832.yaml b/dd-trace-py/releasenotes/notes/fix-benchmarks-package-inclusion-ecab6796b4ee3832.yaml
similarity index 100%
rename from releasenotes/notes/fix-benchmarks-package-inclusion-ecab6796b4ee3832.yaml
rename to dd-trace-py/releasenotes/notes/fix-benchmarks-package-inclusion-ecab6796b4ee3832.yaml
diff --git a/releasenotes/notes/fix-block-request-without-span-c5ea72a06bd389b3.yaml b/dd-trace-py/releasenotes/notes/fix-block-request-without-span-c5ea72a06bd389b3.yaml
similarity index 100%
rename from releasenotes/notes/fix-block-request-without-span-c5ea72a06bd389b3.yaml
rename to dd-trace-py/releasenotes/notes/fix-block-request-without-span-c5ea72a06bd389b3.yaml
diff --git a/releasenotes/notes/fix-bootstrap-no-imports-after-module-cleanup-8592af3c81df0576.yaml b/dd-trace-py/releasenotes/notes/fix-bootstrap-no-imports-after-module-cleanup-8592af3c81df0576.yaml
similarity index 100%
rename from releasenotes/notes/fix-bootstrap-no-imports-after-module-cleanup-8592af3c81df0576.yaml
rename to dd-trace-py/releasenotes/notes/fix-bootstrap-no-imports-after-module-cleanup-8592af3c81df0576.yaml
diff --git a/releasenotes/notes/fix-botocore-bug-when-empty-poll-disabled-config-set-033d13dee074ec23.yaml b/dd-trace-py/releasenotes/notes/fix-botocore-bug-when-empty-poll-disabled-config-set-033d13dee074ec23.yaml
similarity index 100%
rename from releasenotes/notes/fix-botocore-bug-when-empty-poll-disabled-config-set-033d13dee074ec23.yaml
rename to dd-trace-py/releasenotes/notes/fix-botocore-bug-when-empty-poll-disabled-config-set-033d13dee074ec23.yaml
diff --git a/releasenotes/notes/fix-botocore-env-vars-89b106aadf2bba1d.yaml b/dd-trace-py/releasenotes/notes/fix-botocore-env-vars-89b106aadf2bba1d.yaml
similarity index 100%
rename from releasenotes/notes/fix-botocore-env-vars-89b106aadf2bba1d.yaml
rename to dd-trace-py/releasenotes/notes/fix-botocore-env-vars-89b106aadf2bba1d.yaml
diff --git a/releasenotes/notes/fix-botocore-missing-response-meta-e80c1cfb34ec0881.yaml b/dd-trace-py/releasenotes/notes/fix-botocore-missing-response-meta-e80c1cfb34ec0881.yaml
similarity index 100%
rename from releasenotes/notes/fix-botocore-missing-response-meta-e80c1cfb34ec0881.yaml
rename to dd-trace-py/releasenotes/notes/fix-botocore-missing-response-meta-e80c1cfb34ec0881.yaml
diff --git a/releasenotes/notes/fix-botocore-newline-str-issues-fab81e395207b0ed.yaml b/dd-trace-py/releasenotes/notes/fix-botocore-newline-str-issues-fab81e395207b0ed.yaml
similarity index 100%
rename from releasenotes/notes/fix-botocore-newline-str-issues-fab81e395207b0ed.yaml
rename to dd-trace-py/releasenotes/notes/fix-botocore-newline-str-issues-fab81e395207b0ed.yaml
diff --git a/releasenotes/notes/fix-botocore-omit-secretstring-secretbinary-743a1780c86db384.yaml b/dd-trace-py/releasenotes/notes/fix-botocore-omit-secretstring-secretbinary-743a1780c86db384.yaml
similarity index 100%
rename from releasenotes/notes/fix-botocore-omit-secretstring-secretbinary-743a1780c86db384.yaml
rename to dd-trace-py/releasenotes/notes/fix-botocore-omit-secretstring-secretbinary-743a1780c86db384.yaml
diff --git a/releasenotes/notes/fix-botocore-stepfunction-patching-9993630697956278.yaml b/dd-trace-py/releasenotes/notes/fix-botocore-stepfunction-patching-9993630697956278.yaml
similarity index 100%
rename from releasenotes/notes/fix-botocore-stepfunction-patching-9993630697956278.yaml
rename to dd-trace-py/releasenotes/notes/fix-botocore-stepfunction-patching-9993630697956278.yaml
diff --git a/releasenotes/notes/fix-bug-for-setting-message-key-span-tag-from-kafka-serialization-classes-630b09004a97063a.yaml b/dd-trace-py/releasenotes/notes/fix-bug-for-setting-message-key-span-tag-from-kafka-serialization-classes-630b09004a97063a.yaml
similarity index 100%
rename from releasenotes/notes/fix-bug-for-setting-message-key-span-tag-from-kafka-serialization-classes-630b09004a97063a.yaml
rename to dd-trace-py/releasenotes/notes/fix-bug-for-setting-message-key-span-tag-from-kafka-serialization-classes-630b09004a97063a.yaml
diff --git a/releasenotes/notes/fix-bytecode-dependency-b71d1a8a84f52845.yaml b/dd-trace-py/releasenotes/notes/fix-bytecode-dependency-b71d1a8a84f52845.yaml
similarity index 100%
rename from releasenotes/notes/fix-bytecode-dependency-b71d1a8a84f52845.yaml
rename to dd-trace-py/releasenotes/notes/fix-bytecode-dependency-b71d1a8a84f52845.yaml
diff --git a/releasenotes/notes/fix-bytecode-no-lazy-imports-fc229b23e60fca53.yaml b/dd-trace-py/releasenotes/notes/fix-bytecode-no-lazy-imports-fc229b23e60fca53.yaml
similarity index 100%
rename from releasenotes/notes/fix-bytecode-no-lazy-imports-fc229b23e60fca53.yaml
rename to dd-trace-py/releasenotes/notes/fix-bytecode-no-lazy-imports-fc229b23e60fca53.yaml
diff --git a/releasenotes/notes/fix-celery-apply-async-span-close-b7a8db188459f5b5.yaml b/dd-trace-py/releasenotes/notes/fix-celery-apply-async-span-close-b7a8db188459f5b5.yaml
similarity index 100%
rename from releasenotes/notes/fix-celery-apply-async-span-close-b7a8db188459f5b5.yaml
rename to dd-trace-py/releasenotes/notes/fix-celery-apply-async-span-close-b7a8db188459f5b5.yaml
diff --git a/releasenotes/notes/fix-celery-closed-spans-34ff43868c1e33b8.yaml b/dd-trace-py/releasenotes/notes/fix-celery-closed-spans-34ff43868c1e33b8.yaml
similarity index 100%
rename from releasenotes/notes/fix-celery-closed-spans-34ff43868c1e33b8.yaml
rename to dd-trace-py/releasenotes/notes/fix-celery-closed-spans-34ff43868c1e33b8.yaml
diff --git a/releasenotes/notes/fix-celery-context-propagation-aa904d748362f2d1.yaml b/dd-trace-py/releasenotes/notes/fix-celery-context-propagation-aa904d748362f2d1.yaml
similarity index 100%
rename from releasenotes/notes/fix-celery-context-propagation-aa904d748362f2d1.yaml
rename to dd-trace-py/releasenotes/notes/fix-celery-context-propagation-aa904d748362f2d1.yaml
diff --git a/releasenotes/notes/fix-celery-distributed-tracing-9b55479e6b314641.yaml b/dd-trace-py/releasenotes/notes/fix-celery-distributed-tracing-9b55479e6b314641.yaml
similarity index 100%
rename from releasenotes/notes/fix-celery-distributed-tracing-9b55479e6b314641.yaml
rename to dd-trace-py/releasenotes/notes/fix-celery-distributed-tracing-9b55479e6b314641.yaml
diff --git a/releasenotes/notes/fix-celery-error-messages-to-not-include-traceback-98259864e85be54f.yaml b/dd-trace-py/releasenotes/notes/fix-celery-error-messages-to-not-include-traceback-98259864e85be54f.yaml
similarity index 100%
rename from releasenotes/notes/fix-celery-error-messages-to-not-include-traceback-98259864e85be54f.yaml
rename to dd-trace-py/releasenotes/notes/fix-celery-error-messages-to-not-include-traceback-98259864e85be54f.yaml
diff --git a/releasenotes/notes/fix-celery-panic-03dd47d624a6d447.yaml b/dd-trace-py/releasenotes/notes/fix-celery-panic-03dd47d624a6d447.yaml
similarity index 100%
rename from releasenotes/notes/fix-celery-panic-03dd47d624a6d447.yaml
rename to dd-trace-py/releasenotes/notes/fix-celery-panic-03dd47d624a6d447.yaml
diff --git a/releasenotes/notes/fix-celery-replace-log-da6c883512e1a3dd.yaml b/dd-trace-py/releasenotes/notes/fix-celery-replace-log-da6c883512e1a3dd.yaml
similarity index 100%
rename from releasenotes/notes/fix-celery-replace-log-da6c883512e1a3dd.yaml
rename to dd-trace-py/releasenotes/notes/fix-celery-replace-log-da6c883512e1a3dd.yaml
diff --git a/releasenotes/notes/fix-chained-namespace-loader-1701e040d7b3af9b.yaml b/dd-trace-py/releasenotes/notes/fix-chained-namespace-loader-1701e040d7b3af9b.yaml
similarity index 100%
rename from releasenotes/notes/fix-chained-namespace-loader-1701e040d7b3af9b.yaml
rename to dd-trace-py/releasenotes/notes/fix-chained-namespace-loader-1701e040d7b3af9b.yaml
diff --git a/releasenotes/notes/fix-ci-app-api-call-12f848d25f93d02d.yaml b/dd-trace-py/releasenotes/notes/fix-ci-app-api-call-12f848d25f93d02d.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci-app-api-call-12f848d25f93d02d.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci-app-api-call-12f848d25f93d02d.yaml
diff --git a/releasenotes/notes/fix-ci-app-discover-service-name-3efc4032b0b68544.yaml b/dd-trace-py/releasenotes/notes/fix-ci-app-discover-service-name-3efc4032b0b68544.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci-app-discover-service-name-3efc4032b0b68544.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci-app-discover-service-name-3efc4032b0b68544.yaml
diff --git a/releasenotes/notes/fix-ci-visibility-atf-failures-ed2860ed6d3b9d83.yaml b/dd-trace-py/releasenotes/notes/fix-ci-visibility-atf-failures-ed2860ed6d3b9d83.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci-visibility-atf-failures-ed2860ed6d3b9d83.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci-visibility-atf-failures-ed2860ed6d3b9d83.yaml
diff --git a/releasenotes/notes/fix-ci_visibility-dd_pytest-rerunfailures-96d3ce7fe00d7305.yaml b/dd-trace-py/releasenotes/notes/fix-ci_visibility-dd_pytest-rerunfailures-96d3ce7fe00d7305.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci_visibility-dd_pytest-rerunfailures-96d3ce7fe00d7305.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci_visibility-dd_pytest-rerunfailures-96d3ce7fe00d7305.yaml
diff --git a/releasenotes/notes/fix-ci_visibility-dd_retry-pytest-html-d604cb906e418918.yaml b/dd-trace-py/releasenotes/notes/fix-ci_visibility-dd_retry-pytest-html-d604cb906e418918.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci_visibility-dd_retry-pytest-html-d604cb906e418918.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci_visibility-dd_retry-pytest-html-d604cb906e418918.yaml
diff --git a/releasenotes/notes/fix-ci_visibility-increase-itr-skippable-tests-timeout-c92111aeec8624a9.yaml b/dd-trace-py/releasenotes/notes/fix-ci_visibility-increase-itr-skippable-tests-timeout-c92111aeec8624a9.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci_visibility-increase-itr-skippable-tests-timeout-c92111aeec8624a9.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci_visibility-increase-itr-skippable-tests-timeout-c92111aeec8624a9.yaml
diff --git a/releasenotes/notes/fix-ci_visibility-itr-tags-telemetry-f790425758e0cb0c.yaml b/dd-trace-py/releasenotes/notes/fix-ci_visibility-itr-tags-telemetry-f790425758e0cb0c.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci_visibility-itr-tags-telemetry-f790425758e0cb0c.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci_visibility-itr-tags-telemetry-f790425758e0cb0c.yaml
diff --git a/releasenotes/notes/fix-ci_visibility-properly_unwrap_functions-7c631b68720adab2.yaml b/dd-trace-py/releasenotes/notes/fix-ci_visibility-properly_unwrap_functions-7c631b68720adab2.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci_visibility-properly_unwrap_functions-7c631b68720adab2.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci_visibility-properly_unwrap_functions-7c631b68720adab2.yaml
diff --git a/releasenotes/notes/fix-ci_visibility-quarantined-atr-233203d2d3db4651.yaml b/dd-trace-py/releasenotes/notes/fix-ci_visibility-quarantined-atr-233203d2d3db4651.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci_visibility-quarantined-atr-233203d2d3db4651.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci_visibility-quarantined-atr-233203d2d3db4651.yaml
diff --git a/releasenotes/notes/fix-ci_visibility-runtime-error-git-command-not-present-9c2ba2ec29399534.yaml b/dd-trace-py/releasenotes/notes/fix-ci_visibility-runtime-error-git-command-not-present-9c2ba2ec29399534.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci_visibility-runtime-error-git-command-not-present-9c2ba2ec29399534.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci_visibility-runtime-error-git-command-not-present-9c2ba2ec29399534.yaml
diff --git a/releasenotes/notes/fix-ci_visibility-use_default_tracer-8523fd1859dea0da.yaml b/dd-trace-py/releasenotes/notes/fix-ci_visibility-use_default_tracer-8523fd1859dea0da.yaml
similarity index 100%
rename from releasenotes/notes/fix-ci_visibility-use_default_tracer-8523fd1859dea0da.yaml
rename to dd-trace-py/releasenotes/notes/fix-ci_visibility-use_default_tracer-8523fd1859dea0da.yaml
diff --git a/releasenotes/notes/fix-civisibility-coverage-3-12-6dcb5833f1fe838a.yaml b/dd-trace-py/releasenotes/notes/fix-civisibility-coverage-3-12-6dcb5833f1fe838a.yaml
similarity index 100%
rename from releasenotes/notes/fix-civisibility-coverage-3-12-6dcb5833f1fe838a.yaml
rename to dd-trace-py/releasenotes/notes/fix-civisibility-coverage-3-12-6dcb5833f1fe838a.yaml
diff --git a/releasenotes/notes/fix-civisibility-coverage-3-12-e9b6408d8a5dc886.yaml b/dd-trace-py/releasenotes/notes/fix-civisibility-coverage-3-12-e9b6408d8a5dc886.yaml
similarity index 100%
rename from releasenotes/notes/fix-civisibility-coverage-3-12-e9b6408d8a5dc886.yaml
rename to dd-trace-py/releasenotes/notes/fix-civisibility-coverage-3-12-e9b6408d8a5dc886.yaml
diff --git a/releasenotes/notes/fix-civisibility-dont-enable-if-agentless-without-api-f57875b2477862f7.yaml b/dd-trace-py/releasenotes/notes/fix-civisibility-dont-enable-if-agentless-without-api-f57875b2477862f7.yaml
similarity index 100%
rename from releasenotes/notes/fix-civisibility-dont-enable-if-agentless-without-api-f57875b2477862f7.yaml
rename to dd-trace-py/releasenotes/notes/fix-civisibility-dont-enable-if-agentless-without-api-f57875b2477862f7.yaml
diff --git a/releasenotes/notes/fix-cmake-dep-f25774b77cb7a795.yaml b/dd-trace-py/releasenotes/notes/fix-cmake-dep-f25774b77cb7a795.yaml
similarity index 100%
rename from releasenotes/notes/fix-cmake-dep-f25774b77cb7a795.yaml
rename to dd-trace-py/releasenotes/notes/fix-cmake-dep-f25774b77cb7a795.yaml
diff --git a/releasenotes/notes/fix-co-no-function-view-warning-5dcb2e249c8b3fc2.yaml b/dd-trace-py/releasenotes/notes/fix-co-no-function-view-warning-5dcb2e249c8b3fc2.yaml
similarity index 100%
rename from releasenotes/notes/fix-co-no-function-view-warning-5dcb2e249c8b3fc2.yaml
rename to dd-trace-py/releasenotes/notes/fix-co-no-function-view-warning-5dcb2e249c8b3fc2.yaml
diff --git a/releasenotes/notes/fix-co-performance-4199f97341fa4aa7.yaml b/dd-trace-py/releasenotes/notes/fix-co-performance-4199f97341fa4aa7.yaml
similarity index 100%
rename from releasenotes/notes/fix-co-performance-4199f97341fa4aa7.yaml
rename to dd-trace-py/releasenotes/notes/fix-co-performance-4199f97341fa4aa7.yaml
diff --git a/releasenotes/notes/fix-codefresh-integration-563b8075e71881e4.yaml b/dd-trace-py/releasenotes/notes/fix-codefresh-integration-563b8075e71881e4.yaml
similarity index 100%
rename from releasenotes/notes/fix-codefresh-integration-563b8075e71881e4.yaml
rename to dd-trace-py/releasenotes/notes/fix-codefresh-integration-563b8075e71881e4.yaml
diff --git a/releasenotes/notes/fix-consumer-producer-config-initialize-6f17da8b3a806b7e.yaml b/dd-trace-py/releasenotes/notes/fix-consumer-producer-config-initialize-6f17da8b3a806b7e.yaml
similarity index 100%
rename from releasenotes/notes/fix-consumer-producer-config-initialize-6f17da8b3a806b7e.yaml
rename to dd-trace-py/releasenotes/notes/fix-consumer-producer-config-initialize-6f17da8b3a806b7e.yaml
diff --git a/releasenotes/notes/fix-container-id-cgroup-parsing-28790e02a2ac0adc.yaml b/dd-trace-py/releasenotes/notes/fix-container-id-cgroup-parsing-28790e02a2ac0adc.yaml
similarity index 100%
rename from releasenotes/notes/fix-container-id-cgroup-parsing-28790e02a2ac0adc.yaml
rename to dd-trace-py/releasenotes/notes/fix-container-id-cgroup-parsing-28790e02a2ac0adc.yaml
diff --git a/releasenotes/notes/fix-context-serializable-2c9768cbe4738b73.yaml b/dd-trace-py/releasenotes/notes/fix-context-serializable-2c9768cbe4738b73.yaml
similarity index 100%
rename from releasenotes/notes/fix-context-serializable-2c9768cbe4738b73.yaml
rename to dd-trace-py/releasenotes/notes/fix-context-serializable-2c9768cbe4738b73.yaml
diff --git a/releasenotes/notes/fix-cors-errors-0fa947a1a583ad0c.yaml b/dd-trace-py/releasenotes/notes/fix-cors-errors-0fa947a1a583ad0c.yaml
similarity index 100%
rename from releasenotes/notes/fix-cors-errors-0fa947a1a583ad0c.yaml
rename to dd-trace-py/releasenotes/notes/fix-cors-errors-0fa947a1a583ad0c.yaml
diff --git a/releasenotes/notes/fix-crash-in-uwsgi-94d23690d85b2981.yaml b/dd-trace-py/releasenotes/notes/fix-crash-in-uwsgi-94d23690d85b2981.yaml
similarity index 100%
rename from releasenotes/notes/fix-crash-in-uwsgi-94d23690d85b2981.yaml
rename to dd-trace-py/releasenotes/notes/fix-crash-in-uwsgi-94d23690d85b2981.yaml
diff --git a/releasenotes/notes/fix-crashtracking-zombie-aa81dc4efa96898d.yaml b/dd-trace-py/releasenotes/notes/fix-crashtracking-zombie-aa81dc4efa96898d.yaml
similarity index 100%
rename from releasenotes/notes/fix-crashtracking-zombie-aa81dc4efa96898d.yaml
rename to dd-trace-py/releasenotes/notes/fix-crashtracking-zombie-aa81dc4efa96898d.yaml
diff --git a/releasenotes/notes/fix-crashtracking-zombies-7d84bc2e0b4d366e.yaml b/dd-trace-py/releasenotes/notes/fix-crashtracking-zombies-7d84bc2e0b4d366e.yaml
similarity index 100%
rename from releasenotes/notes/fix-crashtracking-zombies-7d84bc2e0b4d366e.yaml
rename to dd-trace-py/releasenotes/notes/fix-crashtracking-zombies-7d84bc2e0b4d366e.yaml
diff --git a/releasenotes/notes/fix-custom-error-spans-with-__str__-override-a05726045f8751d6.yaml b/dd-trace-py/releasenotes/notes/fix-custom-error-spans-with-__str__-override-a05726045f8751d6.yaml
similarity index 100%
rename from releasenotes/notes/fix-custom-error-spans-with-__str__-override-a05726045f8751d6.yaml
rename to dd-trace-py/releasenotes/notes/fix-custom-error-spans-with-__str__-override-a05726045f8751d6.yaml
diff --git a/releasenotes/notes/fix-data-streams-commit-offsets-68f4335a25223080.yaml b/dd-trace-py/releasenotes/notes/fix-data-streams-commit-offsets-68f4335a25223080.yaml
similarity index 100%
rename from releasenotes/notes/fix-data-streams-commit-offsets-68f4335a25223080.yaml
rename to dd-trace-py/releasenotes/notes/fix-data-streams-commit-offsets-68f4335a25223080.yaml
diff --git a/releasenotes/notes/fix-data-streams-infinite-loops-ada8a23568c3aa95.yaml b/dd-trace-py/releasenotes/notes/fix-data-streams-infinite-loops-ada8a23568c3aa95.yaml
similarity index 100%
rename from releasenotes/notes/fix-data-streams-infinite-loops-ada8a23568c3aa95.yaml
rename to dd-trace-py/releasenotes/notes/fix-data-streams-infinite-loops-ada8a23568c3aa95.yaml
diff --git a/releasenotes/notes/fix-data-streams-timestamp-bug-16c6feb9ad8a7128.yaml b/dd-trace-py/releasenotes/notes/fix-data-streams-timestamp-bug-16c6feb9ad8a7128.yaml
similarity index 100%
rename from releasenotes/notes/fix-data-streams-timestamp-bug-16c6feb9ad8a7128.yaml
rename to dd-trace-py/releasenotes/notes/fix-data-streams-timestamp-bug-16c6feb9ad8a7128.yaml
diff --git a/releasenotes/notes/fix-datadog-sampler-updates-8bfaac34f9a1598b.yaml b/dd-trace-py/releasenotes/notes/fix-datadog-sampler-updates-8bfaac34f9a1598b.yaml
similarity index 100%
rename from releasenotes/notes/fix-datadog-sampler-updates-8bfaac34f9a1598b.yaml
rename to dd-trace-py/releasenotes/notes/fix-datadog-sampler-updates-8bfaac34f9a1598b.yaml
diff --git a/releasenotes/notes/fix-dbapi-async-aexit-0df48d739dfd2a3a.yaml b/dd-trace-py/releasenotes/notes/fix-dbapi-async-aexit-0df48d739dfd2a3a.yaml
similarity index 100%
rename from releasenotes/notes/fix-dbapi-async-aexit-0df48d739dfd2a3a.yaml
rename to dd-trace-py/releasenotes/notes/fix-dbapi-async-aexit-0df48d739dfd2a3a.yaml
diff --git a/releasenotes/notes/fix-dbapi-cursor-iter-3e8eb0fbed08e47f.yaml b/dd-trace-py/releasenotes/notes/fix-dbapi-cursor-iter-3e8eb0fbed08e47f.yaml
similarity index 100%
rename from releasenotes/notes/fix-dbapi-cursor-iter-3e8eb0fbed08e47f.yaml
rename to dd-trace-py/releasenotes/notes/fix-dbapi-cursor-iter-3e8eb0fbed08e47f.yaml
diff --git a/releasenotes/notes/fix-dbapi-rowcount-guard-6c6455278f15d262.yaml b/dd-trace-py/releasenotes/notes/fix-dbapi-rowcount-guard-6c6455278f15d262.yaml
similarity index 100%
rename from releasenotes/notes/fix-dbapi-rowcount-guard-6c6455278f15d262.yaml
rename to dd-trace-py/releasenotes/notes/fix-dbapi-rowcount-guard-6c6455278f15d262.yaml
diff --git a/releasenotes/notes/fix-dd-origin-py2-7bb39ed9e45e2131.yaml b/dd-trace-py/releasenotes/notes/fix-dd-origin-py2-7bb39ed9e45e2131.yaml
similarity index 100%
rename from releasenotes/notes/fix-dd-origin-py2-7bb39ed9e45e2131.yaml
rename to dd-trace-py/releasenotes/notes/fix-dd-origin-py2-7bb39ed9e45e2131.yaml
diff --git a/releasenotes/notes/fix-dd-tags-0763e940d889b8da.yaml b/dd-trace-py/releasenotes/notes/fix-dd-tags-0763e940d889b8da.yaml
similarity index 100%
rename from releasenotes/notes/fix-dd-tags-0763e940d889b8da.yaml
rename to dd-trace-py/releasenotes/notes/fix-dd-tags-0763e940d889b8da.yaml
diff --git a/releasenotes/notes/fix-dd-trace-methods-2c1b4af30a7bf3ef.yaml b/dd-trace-py/releasenotes/notes/fix-dd-trace-methods-2c1b4af30a7bf3ef.yaml
similarity index 100%
rename from releasenotes/notes/fix-dd-trace-methods-2c1b4af30a7bf3ef.yaml
rename to dd-trace-py/releasenotes/notes/fix-dd-trace-methods-2c1b4af30a7bf3ef.yaml
diff --git a/releasenotes/notes/fix-ddtrace-auto-dfcd9456dd666ca4.yaml b/dd-trace-py/releasenotes/notes/fix-ddtrace-auto-dfcd9456dd666ca4.yaml
similarity index 100%
rename from releasenotes/notes/fix-ddtrace-auto-dfcd9456dd666ca4.yaml
rename to dd-trace-py/releasenotes/notes/fix-ddtrace-auto-dfcd9456dd666ca4.yaml
diff --git a/releasenotes/notes/fix-ddtrace-file-logs-bytes-env-var-ed690ffe3fb96f7e.yaml b/dd-trace-py/releasenotes/notes/fix-ddtrace-file-logs-bytes-env-var-ed690ffe3fb96f7e.yaml
similarity index 100%
rename from releasenotes/notes/fix-ddtrace-file-logs-bytes-env-var-ed690ffe3fb96f7e.yaml
rename to dd-trace-py/releasenotes/notes/fix-ddtrace-file-logs-bytes-env-var-ed690ffe3fb96f7e.yaml
diff --git a/releasenotes/notes/fix-ddtrace-run-url-envs-087ab03d4f25a732.yaml b/dd-trace-py/releasenotes/notes/fix-ddtrace-run-url-envs-087ab03d4f25a732.yaml
similarity index 100%
rename from releasenotes/notes/fix-ddtrace-run-url-envs-087ab03d4f25a732.yaml
rename to dd-trace-py/releasenotes/notes/fix-ddtrace-run-url-envs-087ab03d4f25a732.yaml
diff --git a/releasenotes/notes/fix-debugger-bytes-redaction-995465f862921d64.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-bytes-redaction-995465f862921d64.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-bytes-redaction-995465f862921d64.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-bytes-redaction-995465f862921d64.yaml
diff --git a/releasenotes/notes/fix-debugger-callable-dd-expressions-71bbb3769e13ae29.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-callable-dd-expressions-71bbb3769e13ae29.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-callable-dd-expressions-71bbb3769e13ae29.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-callable-dd-expressions-71bbb3769e13ae29.yaml
diff --git a/releasenotes/notes/fix-debugger-continue-wrapping-07c38a6e7dbe497f.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-continue-wrapping-07c38a6e7dbe497f.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-continue-wrapping-07c38a6e7dbe497f.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-continue-wrapping-07c38a6e7dbe497f.yaml
diff --git a/releasenotes/notes/fix-debugger-duration-ms-in-dsl-aad91c0b730bbdf0.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-duration-ms-in-dsl-aad91c0b730bbdf0.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-duration-ms-in-dsl-aad91c0b730bbdf0.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-duration-ms-in-dsl-aad91c0b730bbdf0.yaml
diff --git a/releasenotes/notes/fix-debugger-el-isdefined-1c6b39c719c8888c.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-el-isdefined-1c6b39c719c8888c.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-el-isdefined-1c6b39c719c8888c.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-el-isdefined-1c6b39c719c8888c.yaml
diff --git a/releasenotes/notes/fix-debugger-exception-replay-path-type-5180b5cf0d482e9e.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-exception-replay-path-type-5180b5cf0d482e9e.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-exception-replay-path-type-5180b5cf0d482e9e.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-exception-replay-path-type-5180b5cf0d482e9e.yaml
diff --git a/releasenotes/notes/fix-debugger-expressions-none-literal-30f3328d2e386f40.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-expressions-none-literal-30f3328d2e386f40.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-expressions-none-literal-30f3328d2e386f40.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-expressions-none-literal-30f3328d2e386f40.yaml
diff --git a/releasenotes/notes/fix-debugger-hashable-probes-4a9ae0b7f1d40791.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-hashable-probes-4a9ae0b7f1d40791.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-hashable-probes-4a9ae0b7f1d40791.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-hashable-probes-4a9ae0b7f1d40791.yaml
diff --git a/releasenotes/notes/fix-debugger-multiple-inject-locs-2dd1d33810cf6405.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-multiple-inject-locs-2dd1d33810cf6405.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-multiple-inject-locs-2dd1d33810cf6405.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-multiple-inject-locs-2dd1d33810cf6405.yaml
diff --git a/releasenotes/notes/fix-debugger-probe-error-details-c2650877a6dae670.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-probe-error-details-c2650877a6dae670.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-probe-error-details-c2650877a6dae670.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-probe-error-details-c2650877a6dae670.yaml
diff --git a/releasenotes/notes/fix-debugger-rc-instance-954539a2e57b7887.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-rc-instance-954539a2e57b7887.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-rc-instance-954539a2e57b7887.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-rc-instance-954539a2e57b7887.yaml
diff --git a/releasenotes/notes/fix-debugger-rcm-disable-events-8e5797d5d0606f50.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-rcm-disable-events-8e5797d5d0606f50.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-rcm-disable-events-8e5797d5d0606f50.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-rcm-disable-events-8e5797d5d0606f50.yaml
diff --git a/releasenotes/notes/fix-debugger-same-module-wrapping-5fa0653ca015874c.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-same-module-wrapping-5fa0653ca015874c.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-same-module-wrapping-5fa0653ca015874c.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-same-module-wrapping-5fa0653ca015874c.yaml
diff --git a/releasenotes/notes/fix-debugger-span-decoration-probe-type-4331ef7c97990048.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-span-decoration-probe-type-4331ef7c97990048.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-span-decoration-probe-type-4331ef7c97990048.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-span-decoration-probe-type-4331ef7c97990048.yaml
diff --git a/releasenotes/notes/fix-debugger-status-log-probe-build-errors-54bf9ea91aaff5db.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-status-log-probe-build-errors-54bf9ea91aaff5db.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-status-log-probe-build-errors-54bf9ea91aaff5db.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-status-log-probe-build-errors-54bf9ea91aaff5db.yaml
diff --git a/releasenotes/notes/fix-debugger-write-retries-e097ff1f0836531b.yaml b/dd-trace-py/releasenotes/notes/fix-debugger-write-retries-e097ff1f0836531b.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugger-write-retries-e097ff1f0836531b.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugger-write-retries-e097ff1f0836531b.yaml
diff --git a/releasenotes/notes/fix-debugging-prevent-capturing-errors-dea3449207fcc193.yaml b/dd-trace-py/releasenotes/notes/fix-debugging-prevent-capturing-errors-dea3449207fcc193.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugging-prevent-capturing-errors-dea3449207fcc193.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugging-prevent-capturing-errors-dea3449207fcc193.yaml
diff --git a/releasenotes/notes/fix-debugging-safe-dict-no-iter-mutation-cff876c3dce4bc50.yaml b/dd-trace-py/releasenotes/notes/fix-debugging-safe-dict-no-iter-mutation-cff876c3dce4bc50.yaml
similarity index 100%
rename from releasenotes/notes/fix-debugging-safe-dict-no-iter-mutation-cff876c3dce4bc50.yaml
rename to dd-trace-py/releasenotes/notes/fix-debugging-safe-dict-no-iter-mutation-cff876c3dce4bc50.yaml
diff --git a/releasenotes/notes/fix-default-unnamed-service-name-500026e5a134bc54.yaml b/dd-trace-py/releasenotes/notes/fix-default-unnamed-service-name-500026e5a134bc54.yaml
similarity index 100%
rename from releasenotes/notes/fix-default-unnamed-service-name-500026e5a134bc54.yaml
rename to dd-trace-py/releasenotes/notes/fix-default-unnamed-service-name-500026e5a134bc54.yaml
diff --git a/releasenotes/notes/fix-deprecate-tracer-reuse-6d989d4acb538013.yaml b/dd-trace-py/releasenotes/notes/fix-deprecate-tracer-reuse-6d989d4acb538013.yaml
similarity index 100%
rename from releasenotes/notes/fix-deprecate-tracer-reuse-6d989d4acb538013.yaml
rename to dd-trace-py/releasenotes/notes/fix-deprecate-tracer-reuse-6d989d4acb538013.yaml
diff --git a/releasenotes/notes/fix-di-celery-exception-capturing-93e54eb0214ece66.yaml b/dd-trace-py/releasenotes/notes/fix-di-celery-exception-capturing-93e54eb0214ece66.yaml
similarity index 100%
rename from releasenotes/notes/fix-di-celery-exception-capturing-93e54eb0214ece66.yaml
rename to dd-trace-py/releasenotes/notes/fix-di-celery-exception-capturing-93e54eb0214ece66.yaml
diff --git a/releasenotes/notes/fix-di-copy-pending-probes-be21850231275165.yaml b/dd-trace-py/releasenotes/notes/fix-di-copy-pending-probes-be21850231275165.yaml
similarity index 100%
rename from releasenotes/notes/fix-di-copy-pending-probes-be21850231275165.yaml
rename to dd-trace-py/releasenotes/notes/fix-di-copy-pending-probes-be21850231275165.yaml
diff --git a/releasenotes/notes/fix-di-dynamic-discovery-fallback-3a5623e18584cd79.yaml b/dd-trace-py/releasenotes/notes/fix-di-dynamic-discovery-fallback-3a5623e18584cd79.yaml
similarity index 100%
rename from releasenotes/notes/fix-di-dynamic-discovery-fallback-3a5623e18584cd79.yaml
rename to dd-trace-py/releasenotes/notes/fix-di-dynamic-discovery-fallback-3a5623e18584cd79.yaml
diff --git a/releasenotes/notes/fix-di-enable-programmatic-api-2dd583ac87af5451.yaml b/dd-trace-py/releasenotes/notes/fix-di-enable-programmatic-api-2dd583ac87af5451.yaml
similarity index 100%
rename from releasenotes/notes/fix-di-enable-programmatic-api-2dd583ac87af5451.yaml
rename to dd-trace-py/releasenotes/notes/fix-di-enable-programmatic-api-2dd583ac87af5451.yaml
diff --git a/releasenotes/notes/fix-di-probe-status-emit-on-no-data-eb9b13d0343f92c7.yaml b/dd-trace-py/releasenotes/notes/fix-di-probe-status-emit-on-no-data-eb9b13d0343f92c7.yaml
similarity index 100%
rename from releasenotes/notes/fix-di-probe-status-emit-on-no-data-eb9b13d0343f92c7.yaml
rename to dd-trace-py/releasenotes/notes/fix-di-probe-status-emit-on-no-data-eb9b13d0343f92c7.yaml
diff --git a/releasenotes/notes/fix-di-remote-disable-remove-probes-055a860d1d846a2e.yaml b/dd-trace-py/releasenotes/notes/fix-di-remote-disable-remove-probes-055a860d1d846a2e.yaml
similarity index 100%
rename from releasenotes/notes/fix-di-remote-disable-remove-probes-055a860d1d846a2e.yaml
rename to dd-trace-py/releasenotes/notes/fix-di-remote-disable-remove-probes-055a860d1d846a2e.yaml
diff --git a/releasenotes/notes/fix-di-remote-enablement-4ac0d37b55940191.yaml b/dd-trace-py/releasenotes/notes/fix-di-remote-enablement-4ac0d37b55940191.yaml
similarity index 100%
rename from releasenotes/notes/fix-di-remote-enablement-4ac0d37b55940191.yaml
rename to dd-trace-py/releasenotes/notes/fix-di-remote-enablement-4ac0d37b55940191.yaml
diff --git a/releasenotes/notes/fix-di-with-external-wrapping-context-e26b46a6fc7f6a47.yaml b/dd-trace-py/releasenotes/notes/fix-di-with-external-wrapping-context-e26b46a6fc7f6a47.yaml
similarity index 100%
rename from releasenotes/notes/fix-di-with-external-wrapping-context-e26b46a6fc7f6a47.yaml
rename to dd-trace-py/releasenotes/notes/fix-di-with-external-wrapping-context-e26b46a6fc7f6a47.yaml
diff --git a/releasenotes/notes/fix-disabled-memory-leak-c793801e11c45bfe.yaml b/dd-trace-py/releasenotes/notes/fix-disabled-memory-leak-c793801e11c45bfe.yaml
similarity index 100%
rename from releasenotes/notes/fix-disabled-memory-leak-c793801e11c45bfe.yaml
rename to dd-trace-py/releasenotes/notes/fix-disabled-memory-leak-c793801e11c45bfe.yaml
diff --git a/releasenotes/notes/fix-django-async-cancelled-span-error-bf55762da195ae31.yaml b/dd-trace-py/releasenotes/notes/fix-django-async-cancelled-span-error-bf55762da195ae31.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-async-cancelled-span-error-bf55762da195ae31.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-async-cancelled-span-error-bf55762da195ae31.yaml
diff --git a/releasenotes/notes/fix-django-async-middleware-generatorexit-c4b37b9f13872f76.yaml b/dd-trace-py/releasenotes/notes/fix-django-async-middleware-generatorexit-c4b37b9f13872f76.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-async-middleware-generatorexit-c4b37b9f13872f76.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-async-middleware-generatorexit-c4b37b9f13872f76.yaml
diff --git a/releasenotes/notes/fix-django-async-only-middleware-245d231d8a2384c5.yaml b/dd-trace-py/releasenotes/notes/fix-django-async-only-middleware-245d231d8a2384c5.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-async-only-middleware-245d231d8a2384c5.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-async-only-middleware-245d231d8a2384c5.yaml
diff --git a/releasenotes/notes/fix-django-cache-unicode-5777a6775fa312c4.yaml b/dd-trace-py/releasenotes/notes/fix-django-cache-unicode-5777a6775fa312c4.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-cache-unicode-5777a6775fa312c4.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-cache-unicode-5777a6775fa312c4.yaml
diff --git a/releasenotes/notes/fix-django-correct-legacy-resource-c27c7402b6b0be37.yaml b/dd-trace-py/releasenotes/notes/fix-django-correct-legacy-resource-c27c7402b6b0be37.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-correct-legacy-resource-c27c7402b6b0be37.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-correct-legacy-resource-c27c7402b6b0be37.yaml
diff --git a/releasenotes/notes/fix-django-db-connections-b9b98a7b49f27c5f.yaml b/dd-trace-py/releasenotes/notes/fix-django-db-connections-b9b98a7b49f27c5f.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-db-connections-b9b98a7b49f27c5f.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-db-connections-b9b98a7b49f27c5f.yaml
diff --git a/releasenotes/notes/fix-django-db-postgres-7aa62a1c3aff647d.yaml b/dd-trace-py/releasenotes/notes/fix-django-db-postgres-7aa62a1c3aff647d.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-db-postgres-7aa62a1c3aff647d.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-db-postgres-7aa62a1c3aff647d.yaml
diff --git a/releasenotes/notes/fix-django-empty-middleware-056f9c75ad963f1f.yaml b/dd-trace-py/releasenotes/notes/fix-django-empty-middleware-056f9c75ad963f1f.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-empty-middleware-056f9c75ad963f1f.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-empty-middleware-056f9c75ad963f1f.yaml
diff --git a/releasenotes/notes/fix-django-include-endpoint-discovery-310715180fc58bb6.yaml b/dd-trace-py/releasenotes/notes/fix-django-include-endpoint-discovery-310715180fc58bb6.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-include-endpoint-discovery-310715180fc58bb6.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-include-endpoint-discovery-310715180fc58bb6.yaml
diff --git a/releasenotes/notes/fix-django-patch-on-import-1c0344c171afcab2.yaml b/dd-trace-py/releasenotes/notes/fix-django-patch-on-import-1c0344c171afcab2.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-patch-on-import-1c0344c171afcab2.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-patch-on-import-1c0344c171afcab2.yaml
diff --git a/releasenotes/notes/fix-django-resource-name-when-urlconf-changes-3daea582df79fcb6.yaml b/dd-trace-py/releasenotes/notes/fix-django-resource-name-when-urlconf-changes-3daea582df79fcb6.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-resource-name-when-urlconf-changes-3daea582df79fcb6.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-resource-name-when-urlconf-changes-3daea582df79fcb6.yaml
diff --git a/releasenotes/notes/fix-django-resource-override-135d9ad7a668a51d.yaml b/dd-trace-py/releasenotes/notes/fix-django-resource-override-135d9ad7a668a51d.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-resource-override-135d9ad7a668a51d.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-resource-override-135d9ad7a668a51d.yaml
diff --git a/releasenotes/notes/fix-django-rowcount-bug-52d4f30236049c1b.yaml b/dd-trace-py/releasenotes/notes/fix-django-rowcount-bug-52d4f30236049c1b.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-rowcount-bug-52d4f30236049c1b.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-rowcount-bug-52d4f30236049c1b.yaml
diff --git a/releasenotes/notes/fix-django-span-resource-on-unexpected-terminate-fbc5ce27d503d635.yaml b/dd-trace-py/releasenotes/notes/fix-django-span-resource-on-unexpected-terminate-fbc5ce27d503d635.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-span-resource-on-unexpected-terminate-fbc5ce27d503d635.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-span-resource-on-unexpected-terminate-fbc5ce27d503d635.yaml
diff --git a/releasenotes/notes/fix-django-str-tags-ad4f0b9e2d0eff12.yaml b/dd-trace-py/releasenotes/notes/fix-django-str-tags-ad4f0b9e2d0eff12.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-str-tags-ad4f0b9e2d0eff12.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-str-tags-ad4f0b9e2d0eff12.yaml
diff --git a/releasenotes/notes/fix-django-stream-body-exhausted-by-ddtrace-eb25702730c20e5e.yaml b/dd-trace-py/releasenotes/notes/fix-django-stream-body-exhausted-by-ddtrace-eb25702730c20e5e.yaml
similarity index 100%
rename from releasenotes/notes/fix-django-stream-body-exhausted-by-ddtrace-eb25702730c20e5e.yaml
rename to dd-trace-py/releasenotes/notes/fix-django-stream-body-exhausted-by-ddtrace-eb25702730c20e5e.yaml
diff --git a/releasenotes/notes/fix-dont-log-remoteconfig-stacktrace-ab7d1db057233454.yaml b/dd-trace-py/releasenotes/notes/fix-dont-log-remoteconfig-stacktrace-ab7d1db057233454.yaml
similarity index 100%
rename from releasenotes/notes/fix-dont-log-remoteconfig-stacktrace-ab7d1db057233454.yaml
rename to dd-trace-py/releasenotes/notes/fix-dont-log-remoteconfig-stacktrace-ab7d1db057233454.yaml
diff --git a/releasenotes/notes/fix-dropped-value-text-message-019b912220d123fb.yaml b/dd-trace-py/releasenotes/notes/fix-dropped-value-text-message-019b912220d123fb.yaml
similarity index 100%
rename from releasenotes/notes/fix-dropped-value-text-message-019b912220d123fb.yaml
rename to dd-trace-py/releasenotes/notes/fix-dropped-value-text-message-019b912220d123fb.yaml
diff --git a/releasenotes/notes/fix-dsm-integrations-589fa8d3211a7ba7.yaml b/dd-trace-py/releasenotes/notes/fix-dsm-integrations-589fa8d3211a7ba7.yaml
similarity index 100%
rename from releasenotes/notes/fix-dsm-integrations-589fa8d3211a7ba7.yaml
rename to dd-trace-py/releasenotes/notes/fix-dsm-integrations-589fa8d3211a7ba7.yaml
diff --git a/releasenotes/notes/fix-dsm-no-payload-size-d5a8e54464dbd2f8.yaml b/dd-trace-py/releasenotes/notes/fix-dsm-no-payload-size-d5a8e54464dbd2f8.yaml
similarity index 100%
rename from releasenotes/notes/fix-dsm-no-payload-size-d5a8e54464dbd2f8.yaml
rename to dd-trace-py/releasenotes/notes/fix-dsm-no-payload-size-d5a8e54464dbd2f8.yaml
diff --git a/releasenotes/notes/fix-dsm-payload-broken-process-tags-cb907d54f582c2d3.yaml b/dd-trace-py/releasenotes/notes/fix-dsm-payload-broken-process-tags-cb907d54f582c2d3.yaml
similarity index 100%
rename from releasenotes/notes/fix-dsm-payload-broken-process-tags-cb907d54f582c2d3.yaml
rename to dd-trace-py/releasenotes/notes/fix-dsm-payload-broken-process-tags-cb907d54f582c2d3.yaml
diff --git a/releasenotes/notes/fix-dynamic-instrumentation-logging-aef13f091e5feed5.yaml b/dd-trace-py/releasenotes/notes/fix-dynamic-instrumentation-logging-aef13f091e5feed5.yaml
similarity index 100%
rename from releasenotes/notes/fix-dynamic-instrumentation-logging-aef13f091e5feed5.yaml
rename to dd-trace-py/releasenotes/notes/fix-dynamic-instrumentation-logging-aef13f091e5feed5.yaml
diff --git a/releasenotes/notes/fix-dynamic-sampling-3c2269c7c99d27a1.yaml b/dd-trace-py/releasenotes/notes/fix-dynamic-sampling-3c2269c7c99d27a1.yaml
similarity index 100%
rename from releasenotes/notes/fix-dynamic-sampling-3c2269c7c99d27a1.yaml
rename to dd-trace-py/releasenotes/notes/fix-dynamic-sampling-3c2269c7c99d27a1.yaml
diff --git a/releasenotes/notes/fix-e8168413eeec1e85.yaml b/dd-trace-py/releasenotes/notes/fix-e8168413eeec1e85.yaml
similarity index 100%
rename from releasenotes/notes/fix-e8168413eeec1e85.yaml
rename to dd-trace-py/releasenotes/notes/fix-e8168413eeec1e85.yaml
diff --git a/releasenotes/notes/fix-elasticsearch-a3f89a915ccc36c4.yaml b/dd-trace-py/releasenotes/notes/fix-elasticsearch-a3f89a915ccc36c4.yaml
similarity index 100%
rename from releasenotes/notes/fix-elasticsearch-a3f89a915ccc36c4.yaml
rename to dd-trace-py/releasenotes/notes/fix-elasticsearch-a3f89a915ccc36c4.yaml
diff --git a/releasenotes/notes/fix-elasticsearch-always-populate-span-tags-c2a212ec706b3f4b.yaml b/dd-trace-py/releasenotes/notes/fix-elasticsearch-always-populate-span-tags-c2a212ec706b3f4b.yaml
similarity index 100%
rename from releasenotes/notes/fix-elasticsearch-always-populate-span-tags-c2a212ec706b3f4b.yaml
rename to dd-trace-py/releasenotes/notes/fix-elasticsearch-always-populate-span-tags-c2a212ec706b3f4b.yaml
diff --git a/releasenotes/notes/fix-empty-remote-sampling-rules-417c6032875171b9.yaml b/dd-trace-py/releasenotes/notes/fix-empty-remote-sampling-rules-417c6032875171b9.yaml
similarity index 100%
rename from releasenotes/notes/fix-empty-remote-sampling-rules-417c6032875171b9.yaml
rename to dd-trace-py/releasenotes/notes/fix-empty-remote-sampling-rules-417c6032875171b9.yaml
diff --git a/releasenotes/notes/fix-encode-tagset-value-2b8bb877a88bc75a.yaml b/dd-trace-py/releasenotes/notes/fix-encode-tagset-value-2b8bb877a88bc75a.yaml
similarity index 100%
rename from releasenotes/notes/fix-encode-tagset-value-2b8bb877a88bc75a.yaml
rename to dd-trace-py/releasenotes/notes/fix-encode-tagset-value-2b8bb877a88bc75a.yaml
diff --git a/releasenotes/notes/fix-encoder-thread-safe-5c6924013c51d4f6.yaml b/dd-trace-py/releasenotes/notes/fix-encoder-thread-safe-5c6924013c51d4f6.yaml
similarity index 100%
rename from releasenotes/notes/fix-encoder-thread-safe-5c6924013c51d4f6.yaml
rename to dd-trace-py/releasenotes/notes/fix-encoder-thread-safe-5c6924013c51d4f6.yaml
diff --git a/releasenotes/notes/fix-encoding-exception-ff50914f97554744.yaml b/dd-trace-py/releasenotes/notes/fix-encoding-exception-ff50914f97554744.yaml
similarity index 100%
rename from releasenotes/notes/fix-encoding-exception-ff50914f97554744.yaml
rename to dd-trace-py/releasenotes/notes/fix-encoding-exception-ff50914f97554744.yaml
diff --git a/releasenotes/notes/fix-encoding-exceptions-c12900b38741d2bf.yaml b/dd-trace-py/releasenotes/notes/fix-encoding-exceptions-c12900b38741d2bf.yaml
similarity index 100%
rename from releasenotes/notes/fix-encoding-exceptions-c12900b38741d2bf.yaml
rename to dd-trace-py/releasenotes/notes/fix-encoding-exceptions-c12900b38741d2bf.yaml
diff --git a/releasenotes/notes/fix-er-chained-exception-frame-ordering-d457f89ae7b4915f.yaml b/dd-trace-py/releasenotes/notes/fix-er-chained-exception-frame-ordering-d457f89ae7b4915f.yaml
similarity index 100%
rename from releasenotes/notes/fix-er-chained-exception-frame-ordering-d457f89ae7b4915f.yaml
rename to dd-trace-py/releasenotes/notes/fix-er-chained-exception-frame-ordering-d457f89ae7b4915f.yaml
diff --git a/releasenotes/notes/fix-er-include-nonlocals-bbeecfbbbde35496.yaml b/dd-trace-py/releasenotes/notes/fix-er-include-nonlocals-bbeecfbbbde35496.yaml
similarity index 100%
rename from releasenotes/notes/fix-er-include-nonlocals-bbeecfbbbde35496.yaml
rename to dd-trace-py/releasenotes/notes/fix-er-include-nonlocals-bbeecfbbbde35496.yaml
diff --git a/releasenotes/notes/fix-er-reverse-tracebacks-44a52d4f1601ca1f.yaml b/dd-trace-py/releasenotes/notes/fix-er-reverse-tracebacks-44a52d4f1601ca1f.yaml
similarity index 100%
rename from releasenotes/notes/fix-er-reverse-tracebacks-44a52d4f1601ca1f.yaml
rename to dd-trace-py/releasenotes/notes/fix-er-reverse-tracebacks-44a52d4f1601ca1f.yaml
diff --git a/releasenotes/notes/fix-er-tb-priority-77dc656bdb2c4802.yaml b/dd-trace-py/releasenotes/notes/fix-er-tb-priority-77dc656bdb2c4802.yaml
similarity index 100%
rename from releasenotes/notes/fix-er-tb-priority-77dc656bdb2c4802.yaml
rename to dd-trace-py/releasenotes/notes/fix-er-tb-priority-77dc656bdb2c4802.yaml
diff --git a/releasenotes/notes/fix-evaluator-runner-log-fcd0aa18602d4252.yaml b/dd-trace-py/releasenotes/notes/fix-evaluator-runner-log-fcd0aa18602d4252.yaml
similarity index 100%
rename from releasenotes/notes/fix-evaluator-runner-log-fcd0aa18602d4252.yaml
rename to dd-trace-py/releasenotes/notes/fix-evaluator-runner-log-fcd0aa18602d4252.yaml
diff --git a/releasenotes/notes/fix-exception-events-name-34fcaa4d49987935.yaml b/dd-trace-py/releasenotes/notes/fix-exception-events-name-34fcaa4d49987935.yaml
similarity index 100%
rename from releasenotes/notes/fix-exception-events-name-34fcaa4d49987935.yaml
rename to dd-trace-py/releasenotes/notes/fix-exception-events-name-34fcaa4d49987935.yaml
diff --git a/releasenotes/notes/fix-exception-replay-loop-6d50b7bf1eedeaa6.yaml b/dd-trace-py/releasenotes/notes/fix-exception-replay-loop-6d50b7bf1eedeaa6.yaml
similarity index 100%
rename from releasenotes/notes/fix-exception-replay-loop-6d50b7bf1eedeaa6.yaml
rename to dd-trace-py/releasenotes/notes/fix-exception-replay-loop-6d50b7bf1eedeaa6.yaml
diff --git a/releasenotes/notes/fix-executed-sink-telemetry-metric-1d961a4e618a4843.yaml b/dd-trace-py/releasenotes/notes/fix-executed-sink-telemetry-metric-1d961a4e618a4843.yaml
similarity index 100%
rename from releasenotes/notes/fix-executed-sink-telemetry-metric-1d961a4e618a4843.yaml
rename to dd-trace-py/releasenotes/notes/fix-executed-sink-telemetry-metric-1d961a4e618a4843.yaml
diff --git a/releasenotes/notes/fix-extended-heartbeat-config-key-0d88a0d725a14e04.yaml b/dd-trace-py/releasenotes/notes/fix-extended-heartbeat-config-key-0d88a0d725a14e04.yaml
similarity index 100%
rename from releasenotes/notes/fix-extended-heartbeat-config-key-0d88a0d725a14e04.yaml
rename to dd-trace-py/releasenotes/notes/fix-extended-heartbeat-config-key-0d88a0d725a14e04.yaml
diff --git a/releasenotes/notes/fix-extract-django-body-185084700323dce6.yaml b/dd-trace-py/releasenotes/notes/fix-extract-django-body-185084700323dce6.yaml
similarity index 100%
rename from releasenotes/notes/fix-extract-django-body-185084700323dce6.yaml
rename to dd-trace-py/releasenotes/notes/fix-extract-django-body-185084700323dce6.yaml
diff --git a/releasenotes/notes/fix-fargate-cgroup-parsing-9ba690fc7e2e57f4.yaml b/dd-trace-py/releasenotes/notes/fix-fargate-cgroup-parsing-9ba690fc7e2e57f4.yaml
similarity index 100%
rename from releasenotes/notes/fix-fargate-cgroup-parsing-9ba690fc7e2e57f4.yaml
rename to dd-trace-py/releasenotes/notes/fix-fargate-cgroup-parsing-9ba690fc7e2e57f4.yaml
diff --git a/releasenotes/notes/fix-ffe-exposure-logging-8fff59857ff54540.yaml b/dd-trace-py/releasenotes/notes/fix-ffe-exposure-logging-8fff59857ff54540.yaml
similarity index 100%
rename from releasenotes/notes/fix-ffe-exposure-logging-8fff59857ff54540.yaml
rename to dd-trace-py/releasenotes/notes/fix-ffe-exposure-logging-8fff59857ff54540.yaml
diff --git a/releasenotes/notes/fix-flask-2.3.0-9818330e39b287c2.yaml b/dd-trace-py/releasenotes/notes/fix-flask-2.3.0-9818330e39b287c2.yaml
similarity index 100%
rename from releasenotes/notes/fix-flask-2.3.0-9818330e39b287c2.yaml
rename to dd-trace-py/releasenotes/notes/fix-flask-2.3.0-9818330e39b287c2.yaml
diff --git a/releasenotes/notes/fix-flask-non-string-view-args-ed0283ddb1541e27.yaml b/dd-trace-py/releasenotes/notes/fix-flask-non-string-view-args-ed0283ddb1541e27.yaml
similarity index 100%
rename from releasenotes/notes/fix-flask-non-string-view-args-ed0283ddb1541e27.yaml
rename to dd-trace-py/releasenotes/notes/fix-flask-non-string-view-args-ed0283ddb1541e27.yaml
diff --git a/releasenotes/notes/fix-flask-werkzeug-ignore-server-error-5131cbe28afca03a.yaml b/dd-trace-py/releasenotes/notes/fix-flask-werkzeug-ignore-server-error-5131cbe28afca03a.yaml
similarity index 100%
rename from releasenotes/notes/fix-flask-werkzeug-ignore-server-error-5131cbe28afca03a.yaml
rename to dd-trace-py/releasenotes/notes/fix-flask-werkzeug-ignore-server-error-5131cbe28afca03a.yaml
diff --git a/releasenotes/notes/fix-forbiddenfruit-error-ffbb174ade1c6d57.yaml b/dd-trace-py/releasenotes/notes/fix-forbiddenfruit-error-ffbb174ade1c6d57.yaml
similarity index 100%
rename from releasenotes/notes/fix-forbiddenfruit-error-ffbb174ade1c6d57.yaml
rename to dd-trace-py/releasenotes/notes/fix-forbiddenfruit-error-ffbb174ade1c6d57.yaml
diff --git a/releasenotes/notes/fix-forksafe-after-in-child-f13fb133563c7b53.yaml b/dd-trace-py/releasenotes/notes/fix-forksafe-after-in-child-f13fb133563c7b53.yaml
similarity index 100%
rename from releasenotes/notes/fix-forksafe-after-in-child-f13fb133563c7b53.yaml
rename to dd-trace-py/releasenotes/notes/fix-forksafe-after-in-child-f13fb133563c7b53.yaml
diff --git a/releasenotes/notes/fix-fstring-zeropadding-e8e463a4d8623040.yaml b/dd-trace-py/releasenotes/notes/fix-fstring-zeropadding-e8e463a4d8623040.yaml
similarity index 100%
rename from releasenotes/notes/fix-fstring-zeropadding-e8e463a4d8623040.yaml
rename to dd-trace-py/releasenotes/notes/fix-fstring-zeropadding-e8e463a4d8623040.yaml
diff --git a/releasenotes/notes/fix-futures-args-a206048e19889ad7.yaml b/dd-trace-py/releasenotes/notes/fix-futures-args-a206048e19889ad7.yaml
similarity index 100%
rename from releasenotes/notes/fix-futures-args-a206048e19889ad7.yaml
rename to dd-trace-py/releasenotes/notes/fix-futures-args-a206048e19889ad7.yaml
diff --git a/releasenotes/notes/fix-futures-module-unload-e84900affff06152.yaml b/dd-trace-py/releasenotes/notes/fix-futures-module-unload-e84900affff06152.yaml
similarity index 100%
rename from releasenotes/notes/fix-futures-module-unload-e84900affff06152.yaml
rename to dd-trace-py/releasenotes/notes/fix-futures-module-unload-e84900affff06152.yaml
diff --git a/releasenotes/notes/fix-futures-parenting-3a53b94ee05dff93.yaml b/dd-trace-py/releasenotes/notes/fix-futures-parenting-3a53b94ee05dff93.yaml
similarity index 100%
rename from releasenotes/notes/fix-futures-parenting-3a53b94ee05dff93.yaml
rename to dd-trace-py/releasenotes/notes/fix-futures-parenting-3a53b94ee05dff93.yaml
diff --git a/releasenotes/notes/fix-futures-propagation-f5b33579e0fdafc3.yaml b/dd-trace-py/releasenotes/notes/fix-futures-propagation-f5b33579e0fdafc3.yaml
similarity index 100%
rename from releasenotes/notes/fix-futures-propagation-f5b33579e0fdafc3.yaml
rename to dd-trace-py/releasenotes/notes/fix-futures-propagation-f5b33579e0fdafc3.yaml
diff --git a/releasenotes/notes/fix-genai-import-issue-8b90aeaea96f4a58.yaml b/dd-trace-py/releasenotes/notes/fix-genai-import-issue-8b90aeaea96f4a58.yaml
similarity index 100%
rename from releasenotes/notes/fix-genai-import-issue-8b90aeaea96f4a58.yaml
rename to dd-trace-py/releasenotes/notes/fix-genai-import-issue-8b90aeaea96f4a58.yaml
diff --git a/releasenotes/notes/fix-generator-wrapping-86af0ae55ba2723a.yaml b/dd-trace-py/releasenotes/notes/fix-generator-wrapping-86af0ae55ba2723a.yaml
similarity index 100%
rename from releasenotes/notes/fix-generator-wrapping-86af0ae55ba2723a.yaml
rename to dd-trace-py/releasenotes/notes/fix-generator-wrapping-86af0ae55ba2723a.yaml
diff --git a/releasenotes/notes/fix-get-thread-native-id-dummythread-f77822dcc315dc34.yaml b/dd-trace-py/releasenotes/notes/fix-get-thread-native-id-dummythread-f77822dcc315dc34.yaml
similarity index 100%
rename from releasenotes/notes/fix-get-thread-native-id-dummythread-f77822dcc315dc34.yaml
rename to dd-trace-py/releasenotes/notes/fix-get-thread-native-id-dummythread-f77822dcc315dc34.yaml
diff --git a/releasenotes/notes/fix-gevent-asyncio-13ed3a9411ed8088.yaml b/dd-trace-py/releasenotes/notes/fix-gevent-asyncio-13ed3a9411ed8088.yaml
similarity index 100%
rename from releasenotes/notes/fix-gevent-asyncio-13ed3a9411ed8088.yaml
rename to dd-trace-py/releasenotes/notes/fix-gevent-asyncio-13ed3a9411ed8088.yaml
diff --git a/releasenotes/notes/fix-gevent-autopatching-7d77beebd4698da2.yaml b/dd-trace-py/releasenotes/notes/fix-gevent-autopatching-7d77beebd4698da2.yaml
similarity index 100%
rename from releasenotes/notes/fix-gevent-autopatching-7d77beebd4698da2.yaml
rename to dd-trace-py/releasenotes/notes/fix-gevent-autopatching-7d77beebd4698da2.yaml
diff --git a/releasenotes/notes/fix-gevent-support-_operator-163719336cc8980a.yaml b/dd-trace-py/releasenotes/notes/fix-gevent-support-_operator-163719336cc8980a.yaml
similarity index 100%
rename from releasenotes/notes/fix-gevent-support-_operator-163719336cc8980a.yaml
rename to dd-trace-py/releasenotes/notes/fix-gevent-support-_operator-163719336cc8980a.yaml
diff --git a/releasenotes/notes/fix-gevent-task-linkage-bugs-a1b2c3d4e5f60718.yaml b/dd-trace-py/releasenotes/notes/fix-gevent-task-linkage-bugs-a1b2c3d4e5f60718.yaml
similarity index 100%
rename from releasenotes/notes/fix-gevent-task-linkage-bugs-a1b2c3d4e5f60718.yaml
rename to dd-trace-py/releasenotes/notes/fix-gevent-task-linkage-bugs-a1b2c3d4e5f60718.yaml
diff --git a/releasenotes/notes/fix-git-unshallow-84b5b81db6e79287.yaml b/dd-trace-py/releasenotes/notes/fix-git-unshallow-84b5b81db6e79287.yaml
similarity index 100%
rename from releasenotes/notes/fix-git-unshallow-84b5b81db6e79287.yaml
rename to dd-trace-py/releasenotes/notes/fix-git-unshallow-84b5b81db6e79287.yaml
diff --git a/releasenotes/notes/fix-git-version-extraction-8db3a639976e725c.yaml b/dd-trace-py/releasenotes/notes/fix-git-version-extraction-8db3a639976e725c.yaml
similarity index 100%
rename from releasenotes/notes/fix-git-version-extraction-8db3a639976e725c.yaml
rename to dd-trace-py/releasenotes/notes/fix-git-version-extraction-8db3a639976e725c.yaml
diff --git a/releasenotes/notes/fix-gitlab-ci-16.0-compatibility-1b77cb41e647b584.yaml b/dd-trace-py/releasenotes/notes/fix-gitlab-ci-16.0-compatibility-1b77cb41e647b584.yaml
similarity index 100%
rename from releasenotes/notes/fix-gitlab-ci-16.0-compatibility-1b77cb41e647b584.yaml
rename to dd-trace-py/releasenotes/notes/fix-gitlab-ci-16.0-compatibility-1b77cb41e647b584.yaml
diff --git a/releasenotes/notes/fix-google-genai-part-561c38a4e0d2cc52.yaml b/dd-trace-py/releasenotes/notes/fix-google-genai-part-561c38a4e0d2cc52.yaml
similarity index 100%
rename from releasenotes/notes/fix-google-genai-part-561c38a4e0d2cc52.yaml
rename to dd-trace-py/releasenotes/notes/fix-google-genai-part-561c38a4e0d2cc52.yaml
diff --git a/releasenotes/notes/fix-google-streamed-response-submission-94072cb2804458bf.yaml b/dd-trace-py/releasenotes/notes/fix-google-streamed-response-submission-94072cb2804458bf.yaml
similarity index 100%
rename from releasenotes/notes/fix-google-streamed-response-submission-94072cb2804458bf.yaml
rename to dd-trace-py/releasenotes/notes/fix-google-streamed-response-submission-94072cb2804458bf.yaml
diff --git a/releasenotes/notes/fix-graphql-emit-span-exception-event-1fcc38a2e050eb23.yaml b/dd-trace-py/releasenotes/notes/fix-graphql-emit-span-exception-event-1fcc38a2e050eb23.yaml
similarity index 100%
rename from releasenotes/notes/fix-graphql-emit-span-exception-event-1fcc38a2e050eb23.yaml
rename to dd-trace-py/releasenotes/notes/fix-graphql-emit-span-exception-event-1fcc38a2e050eb23.yaml
diff --git a/releasenotes/notes/fix-graphql-locations-attribute-27a66fbb003eb510.yaml b/dd-trace-py/releasenotes/notes/fix-graphql-locations-attribute-27a66fbb003eb510.yaml
similarity index 100%
rename from releasenotes/notes/fix-graphql-locations-attribute-27a66fbb003eb510.yaml
rename to dd-trace-py/releasenotes/notes/fix-graphql-locations-attribute-27a66fbb003eb510.yaml
diff --git a/releasenotes/notes/fix-grpc-bug-caused-by-google-api-core-upgrade-abbc097a46b5d032.yaml b/dd-trace-py/releasenotes/notes/fix-grpc-bug-caused-by-google-api-core-upgrade-abbc097a46b5d032.yaml
similarity index 100%
rename from releasenotes/notes/fix-grpc-bug-caused-by-google-api-core-upgrade-abbc097a46b5d032.yaml
rename to dd-trace-py/releasenotes/notes/fix-grpc-bug-caused-by-google-api-core-upgrade-abbc097a46b5d032.yaml
diff --git a/releasenotes/notes/fix-grpc-client-meta-1145db1fec07255f.yaml b/dd-trace-py/releasenotes/notes/fix-grpc-client-meta-1145db1fec07255f.yaml
similarity index 100%
rename from releasenotes/notes/fix-grpc-client-meta-1145db1fec07255f.yaml
rename to dd-trace-py/releasenotes/notes/fix-grpc-client-meta-1145db1fec07255f.yaml
diff --git a/releasenotes/notes/fix-grpc-intercept-channel-not-unpatched-5a4252256801ad09.yaml b/dd-trace-py/releasenotes/notes/fix-grpc-intercept-channel-not-unpatched-5a4252256801ad09.yaml
similarity index 100%
rename from releasenotes/notes/fix-grpc-intercept-channel-not-unpatched-5a4252256801ad09.yaml
rename to dd-trace-py/releasenotes/notes/fix-grpc-intercept-channel-not-unpatched-5a4252256801ad09.yaml
diff --git a/releasenotes/notes/fix-grpc-method-93038a476c9e95aa.yaml b/dd-trace-py/releasenotes/notes/fix-grpc-method-93038a476c9e95aa.yaml
similarity index 100%
rename from releasenotes/notes/fix-grpc-method-93038a476c9e95aa.yaml
rename to dd-trace-py/releasenotes/notes/fix-grpc-method-93038a476c9e95aa.yaml
diff --git a/releasenotes/notes/fix-grpc-streaming-next-5acf03fec7056a48.yaml b/dd-trace-py/releasenotes/notes/fix-grpc-streaming-next-5acf03fec7056a48.yaml
similarity index 100%
rename from releasenotes/notes/fix-grpc-streaming-next-5acf03fec7056a48.yaml
rename to dd-trace-py/releasenotes/notes/fix-grpc-streaming-next-5acf03fec7056a48.yaml
diff --git a/releasenotes/notes/fix-grpc-streaming-prefetch-95e816bd0fd85723.yaml b/dd-trace-py/releasenotes/notes/fix-grpc-streaming-prefetch-95e816bd0fd85723.yaml
similarity index 100%
rename from releasenotes/notes/fix-grpc-streaming-prefetch-95e816bd0fd85723.yaml
rename to dd-trace-py/releasenotes/notes/fix-grpc-streaming-prefetch-95e816bd0fd85723.yaml
diff --git a/releasenotes/notes/fix-grpc-target-0a1daf38516be79f.yaml b/dd-trace-py/releasenotes/notes/fix-grpc-target-0a1daf38516be79f.yaml
similarity index 100%
rename from releasenotes/notes/fix-grpc-target-0a1daf38516be79f.yaml
rename to dd-trace-py/releasenotes/notes/fix-grpc-target-0a1daf38516be79f.yaml
diff --git a/releasenotes/notes/fix-grpc-tracing-leaking-span-context-when-using-future-interface-8a9cf0279263eb20.yaml b/dd-trace-py/releasenotes/notes/fix-grpc-tracing-leaking-span-context-when-using-future-interface-8a9cf0279263eb20.yaml
similarity index 100%
rename from releasenotes/notes/fix-grpc-tracing-leaking-span-context-when-using-future-interface-8a9cf0279263eb20.yaml
rename to dd-trace-py/releasenotes/notes/fix-grpc-tracing-leaking-span-context-when-using-future-interface-8a9cf0279263eb20.yaml
diff --git a/releasenotes/notes/fix-health-metrics-tags-61cb3d8369cfe402.yaml b/dd-trace-py/releasenotes/notes/fix-health-metrics-tags-61cb3d8369cfe402.yaml
similarity index 100%
rename from releasenotes/notes/fix-health-metrics-tags-61cb3d8369cfe402.yaml
rename to dd-trace-py/releasenotes/notes/fix-health-metrics-tags-61cb3d8369cfe402.yaml
diff --git a/releasenotes/notes/fix-how-we-sample-on-floats-4c69b6286e86ba25.yaml b/dd-trace-py/releasenotes/notes/fix-how-we-sample-on-floats-4c69b6286e86ba25.yaml
similarity index 100%
rename from releasenotes/notes/fix-how-we-sample-on-floats-4c69b6286e86ba25.yaml
rename to dd-trace-py/releasenotes/notes/fix-how-we-sample-on-floats-4c69b6286e86ba25.yaml
diff --git a/releasenotes/notes/fix-http-url-200fca099f41ce49.yaml b/dd-trace-py/releasenotes/notes/fix-http-url-200fca099f41ce49.yaml
similarity index 100%
rename from releasenotes/notes/fix-http-url-200fca099f41ce49.yaml
rename to dd-trace-py/releasenotes/notes/fix-http-url-200fca099f41ce49.yaml
diff --git a/releasenotes/notes/fix-httpx-0.23.1-compatibility-99884a43d17b1222.yaml b/dd-trace-py/releasenotes/notes/fix-httpx-0.23.1-compatibility-99884a43d17b1222.yaml
similarity index 100%
rename from releasenotes/notes/fix-httpx-0.23.1-compatibility-99884a43d17b1222.yaml
rename to dd-trace-py/releasenotes/notes/fix-httpx-0.23.1-compatibility-99884a43d17b1222.yaml
diff --git a/releasenotes/notes/fix-httpx-async-client-907128361811b862.yaml b/dd-trace-py/releasenotes/notes/fix-httpx-async-client-907128361811b862.yaml
similarity index 100%
rename from releasenotes/notes/fix-httpx-async-client-907128361811b862.yaml
rename to dd-trace-py/releasenotes/notes/fix-httpx-async-client-907128361811b862.yaml
diff --git a/releasenotes/notes/fix-iast-add-psycopg-to-denylist-a88961e04125e674.yaml b/dd-trace-py/releasenotes/notes/fix-iast-add-psycopg-to-denylist-a88961e04125e674.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-add-psycopg-to-denylist-a88961e04125e674.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-add-psycopg-to-denylist-a88961e04125e674.yaml
diff --git a/releasenotes/notes/fix-iast-context-array-thread-safety-64352528b80c9e3c.yaml b/dd-trace-py/releasenotes/notes/fix-iast-context-array-thread-safety-64352528b80c9e3c.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-context-array-thread-safety-64352528b80c9e3c.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-context-array-thread-safety-64352528b80c9e3c.yaml
diff --git a/releasenotes/notes/fix-iast-crash-missing-incref-1f03aab5298bddc4.yaml b/dd-trace-py/releasenotes/notes/fix-iast-crash-missing-incref-1f03aab5298bddc4.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-crash-missing-incref-1f03aab5298bddc4.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-crash-missing-incref-1f03aab5298bddc4.yaml
diff --git a/releasenotes/notes/fix-iast-fork-worker-crashes-44a1f14516fb44a2.yaml b/dd-trace-py/releasenotes/notes/fix-iast-fork-worker-crashes-44a1f14516fb44a2.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-fork-worker-crashes-44a1f14516fb44a2.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-fork-worker-crashes-44a1f14516fb44a2.yaml
diff --git a/releasenotes/notes/fix-iast-mem-leak-25b7ae83cea24bd6.yaml b/dd-trace-py/releasenotes/notes/fix-iast-mem-leak-25b7ae83cea24bd6.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-mem-leak-25b7ae83cea24bd6.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-mem-leak-25b7ae83cea24bd6.yaml
diff --git a/releasenotes/notes/fix-iast-patches-module-6a940829e13849ba.yaml b/dd-trace-py/releasenotes/notes/fix-iast-patches-module-6a940829e13849ba.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-patches-module-6a940829e13849ba.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-patches-module-6a940829e13849ba.yaml
diff --git a/releasenotes/notes/fix-iast-slow-import-when-not-needed-8cf1317095842135.yaml b/dd-trace-py/releasenotes/notes/fix-iast-slow-import-when-not-needed-8cf1317095842135.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-slow-import-when-not-needed-8cf1317095842135.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-slow-import-when-not-needed-8cf1317095842135.yaml
diff --git a/releasenotes/notes/fix-iast-stacktrace-filter-6afd6a9568f36d99.yaml b/dd-trace-py/releasenotes/notes/fix-iast-stacktrace-filter-6afd6a9568f36d99.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-stacktrace-filter-6afd6a9568f36d99.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-stacktrace-filter-6afd6a9568f36d99.yaml
diff --git a/releasenotes/notes/fix-iast-taint-tracking-flaky-tests-94769fcd607355e8.yaml b/dd-trace-py/releasenotes/notes/fix-iast-taint-tracking-flaky-tests-94769fcd607355e8.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-taint-tracking-flaky-tests-94769fcd607355e8.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-taint-tracking-flaky-tests-94769fcd607355e8.yaml
diff --git a/releasenotes/notes/fix-iast-unvalidated-redirect-dedup-0f73cddcfe139a53.yaml b/dd-trace-py/releasenotes/notes/fix-iast-unvalidated-redirect-dedup-0f73cddcfe139a53.yaml
similarity index 100%
rename from releasenotes/notes/fix-iast-unvalidated-redirect-dedup-0f73cddcfe139a53.yaml
rename to dd-trace-py/releasenotes/notes/fix-iast-unvalidated-redirect-dedup-0f73cddcfe139a53.yaml
diff --git a/releasenotes/notes/fix-ignore-non-standard-modules-318862ee5c68be0f.yaml b/dd-trace-py/releasenotes/notes/fix-ignore-non-standard-modules-318862ee5c68be0f.yaml
similarity index 100%
rename from releasenotes/notes/fix-ignore-non-standard-modules-318862ee5c68be0f.yaml
rename to dd-trace-py/releasenotes/notes/fix-ignore-non-standard-modules-318862ee5c68be0f.yaml
diff --git a/releasenotes/notes/fix-import-peer-service-69d57a595b54a109.yaml b/dd-trace-py/releasenotes/notes/fix-import-peer-service-69d57a595b54a109.yaml
similarity index 100%
rename from releasenotes/notes/fix-import-peer-service-69d57a595b54a109.yaml
rename to dd-trace-py/releasenotes/notes/fix-import-peer-service-69d57a595b54a109.yaml
diff --git a/releasenotes/notes/fix-incompatibility-with-last-gevent-13d45f7b8ab18bdf.yaml b/dd-trace-py/releasenotes/notes/fix-incompatibility-with-last-gevent-13d45f7b8ab18bdf.yaml
similarity index 100%
rename from releasenotes/notes/fix-incompatibility-with-last-gevent-13d45f7b8ab18bdf.yaml
rename to dd-trace-py/releasenotes/notes/fix-incompatibility-with-last-gevent-13d45f7b8ab18bdf.yaml
diff --git a/releasenotes/notes/fix-incomplete-pkg_resources-support-58baf819ea8705ef.yaml b/dd-trace-py/releasenotes/notes/fix-incomplete-pkg_resources-support-58baf819ea8705ef.yaml
similarity index 100%
rename from releasenotes/notes/fix-incomplete-pkg_resources-support-58baf819ea8705ef.yaml
rename to dd-trace-py/releasenotes/notes/fix-incomplete-pkg_resources-support-58baf819ea8705ef.yaml
diff --git a/releasenotes/notes/fix-injection-append-eafc95df39034f63.yaml b/dd-trace-py/releasenotes/notes/fix-injection-append-eafc95df39034f63.yaml
similarity index 100%
rename from releasenotes/notes/fix-injection-append-eafc95df39034f63.yaml
rename to dd-trace-py/releasenotes/notes/fix-injection-append-eafc95df39034f63.yaml
diff --git a/releasenotes/notes/fix-internal-logging-init-6058c02b527cdf77.yaml b/dd-trace-py/releasenotes/notes/fix-internal-logging-init-6058c02b527cdf77.yaml
similarity index 100%
rename from releasenotes/notes/fix-internal-logging-init-6058c02b527cdf77.yaml
rename to dd-trace-py/releasenotes/notes/fix-internal-logging-init-6058c02b527cdf77.yaml
diff --git a/releasenotes/notes/fix-internal-module-spec-best-effort-adbb7c32399d7317.yaml b/dd-trace-py/releasenotes/notes/fix-internal-module-spec-best-effort-adbb7c32399d7317.yaml
similarity index 100%
rename from releasenotes/notes/fix-internal-module-spec-best-effort-adbb7c32399d7317.yaml
rename to dd-trace-py/releasenotes/notes/fix-internal-module-spec-best-effort-adbb7c32399d7317.yaml
diff --git a/releasenotes/notes/fix-internal-packages-perf-c270b1ff7e68b46a.yaml b/dd-trace-py/releasenotes/notes/fix-internal-packages-perf-c270b1ff7e68b46a.yaml
similarity index 100%
rename from releasenotes/notes/fix-internal-packages-perf-c270b1ff7e68b46a.yaml
rename to dd-trace-py/releasenotes/notes/fix-internal-packages-perf-c270b1ff7e68b46a.yaml
diff --git a/releasenotes/notes/fix-ipc-open-file-ensure-closed-98d9707f56c416da.yaml b/dd-trace-py/releasenotes/notes/fix-ipc-open-file-ensure-closed-98d9707f56c416da.yaml
similarity index 100%
rename from releasenotes/notes/fix-ipc-open-file-ensure-closed-98d9707f56c416da.yaml
rename to dd-trace-py/releasenotes/notes/fix-ipc-open-file-ensure-closed-98d9707f56c416da.yaml
diff --git a/releasenotes/notes/fix-ipc-valid-tmp-dir-063d8abcc1835747.yaml b/dd-trace-py/releasenotes/notes/fix-ipc-valid-tmp-dir-063d8abcc1835747.yaml
similarity index 100%
rename from releasenotes/notes/fix-ipc-valid-tmp-dir-063d8abcc1835747.yaml
rename to dd-trace-py/releasenotes/notes/fix-ipc-valid-tmp-dir-063d8abcc1835747.yaml
diff --git a/releasenotes/notes/fix-iteration-block-injection-af354b7004554dfd.yaml b/dd-trace-py/releasenotes/notes/fix-iteration-block-injection-af354b7004554dfd.yaml
similarity index 100%
rename from releasenotes/notes/fix-iteration-block-injection-af354b7004554dfd.yaml
rename to dd-trace-py/releasenotes/notes/fix-iteration-block-injection-af354b7004554dfd.yaml
diff --git a/releasenotes/notes/fix-itr-in-evp-mode-e66fa0ef8a6ffe72.yaml b/dd-trace-py/releasenotes/notes/fix-itr-in-evp-mode-e66fa0ef8a6ffe72.yaml
similarity index 100%
rename from releasenotes/notes/fix-itr-in-evp-mode-e66fa0ef8a6ffe72.yaml
rename to dd-trace-py/releasenotes/notes/fix-itr-in-evp-mode-e66fa0ef8a6ffe72.yaml
diff --git a/releasenotes/notes/fix-itr-test-skipping-e4b99a581138a8fd.yaml b/dd-trace-py/releasenotes/notes/fix-itr-test-skipping-e4b99a581138a8fd.yaml
similarity index 100%
rename from releasenotes/notes/fix-itr-test-skipping-e4b99a581138a8fd.yaml
rename to dd-trace-py/releasenotes/notes/fix-itr-test-skipping-e4b99a581138a8fd.yaml
diff --git a/releasenotes/notes/fix-itr-use-enabled-env-var-ef043a640843baff.yaml b/dd-trace-py/releasenotes/notes/fix-itr-use-enabled-env-var-ef043a640843baff.yaml
similarity index 100%
rename from releasenotes/notes/fix-itr-use-enabled-env-var-ef043a640843baff.yaml
rename to dd-trace-py/releasenotes/notes/fix-itr-use-enabled-env-var-ef043a640843baff.yaml
diff --git a/releasenotes/notes/fix-jinja2-non-str-template-name-4cb2aa7cda15828a.yaml b/dd-trace-py/releasenotes/notes/fix-jinja2-non-str-template-name-4cb2aa7cda15828a.yaml
similarity index 100%
rename from releasenotes/notes/fix-jinja2-non-str-template-name-4cb2aa7cda15828a.yaml
rename to dd-trace-py/releasenotes/notes/fix-jinja2-non-str-template-name-4cb2aa7cda15828a.yaml
diff --git a/releasenotes/notes/fix-json-encoder-bytes-d35121d00f2b8caf.yaml b/dd-trace-py/releasenotes/notes/fix-json-encoder-bytes-d35121d00f2b8caf.yaml
similarity index 100%
rename from releasenotes/notes/fix-json-encoder-bytes-d35121d00f2b8caf.yaml
rename to dd-trace-py/releasenotes/notes/fix-json-encoder-bytes-d35121d00f2b8caf.yaml
diff --git a/releasenotes/notes/fix-kafka-commit-offsets-d86039c29e04259e.yaml b/dd-trace-py/releasenotes/notes/fix-kafka-commit-offsets-d86039c29e04259e.yaml
similarity index 100%
rename from releasenotes/notes/fix-kafka-commit-offsets-d86039c29e04259e.yaml
rename to dd-trace-py/releasenotes/notes/fix-kafka-commit-offsets-d86039c29e04259e.yaml
diff --git a/releasenotes/notes/fix-kafka-consume-dispatch-48cd5912b1282ab9.yaml b/dd-trace-py/releasenotes/notes/fix-kafka-consume-dispatch-48cd5912b1282ab9.yaml
similarity index 100%
rename from releasenotes/notes/fix-kafka-consume-dispatch-48cd5912b1282ab9.yaml
rename to dd-trace-py/releasenotes/notes/fix-kafka-consume-dispatch-48cd5912b1282ab9.yaml
diff --git a/releasenotes/notes/fix-kafka-consumer-parenting-29acfd08e05d2350.yaml b/dd-trace-py/releasenotes/notes/fix-kafka-consumer-parenting-29acfd08e05d2350.yaml
similarity index 100%
rename from releasenotes/notes/fix-kafka-consumer-parenting-29acfd08e05d2350.yaml
rename to dd-trace-py/releasenotes/notes/fix-kafka-consumer-parenting-29acfd08e05d2350.yaml
diff --git a/releasenotes/notes/fix-kafka-header-injection-bug-4391778cd91b366a.yaml b/dd-trace-py/releasenotes/notes/fix-kafka-header-injection-bug-4391778cd91b366a.yaml
similarity index 100%
rename from releasenotes/notes/fix-kafka-header-injection-bug-4391778cd91b366a.yaml
rename to dd-trace-py/releasenotes/notes/fix-kafka-header-injection-bug-4391778cd91b366a.yaml
diff --git a/releasenotes/notes/fix-kafka-poll-default-31627d2fc9a83d95.yaml b/dd-trace-py/releasenotes/notes/fix-kafka-poll-default-31627d2fc9a83d95.yaml
similarity index 100%
rename from releasenotes/notes/fix-kafka-poll-default-31627d2fc9a83d95.yaml
rename to dd-trace-py/releasenotes/notes/fix-kafka-poll-default-31627d2fc9a83d95.yaml
diff --git a/releasenotes/notes/fix-kafka-subclass-b63931a9fd22ddaa.yaml b/dd-trace-py/releasenotes/notes/fix-kafka-subclass-b63931a9fd22ddaa.yaml
similarity index 100%
rename from releasenotes/notes/fix-kafka-subclass-b63931a9fd22ddaa.yaml
rename to dd-trace-py/releasenotes/notes/fix-kafka-subclass-b63931a9fd22ddaa.yaml
diff --git a/releasenotes/notes/fix-keep-copyreg-29c28bcc854e13bb.yaml b/dd-trace-py/releasenotes/notes/fix-keep-copyreg-29c28bcc854e13bb.yaml
similarity index 100%
rename from releasenotes/notes/fix-keep-copyreg-29c28bcc854e13bb.yaml
rename to dd-trace-py/releasenotes/notes/fix-keep-copyreg-29c28bcc854e13bb.yaml
diff --git a/releasenotes/notes/fix-kinesis-newline-strip-issue-3a2419b6f29fcab8.yaml b/dd-trace-py/releasenotes/notes/fix-kinesis-newline-strip-issue-3a2419b6f29fcab8.yaml
similarity index 100%
rename from releasenotes/notes/fix-kinesis-newline-strip-issue-3a2419b6f29fcab8.yaml
rename to dd-trace-py/releasenotes/notes/fix-kinesis-newline-strip-issue-3a2419b6f29fcab8.yaml
diff --git a/releasenotes/notes/fix-kinesis-span-parenting-506f1b1dc1fac8a6.yaml b/dd-trace-py/releasenotes/notes/fix-kinesis-span-parenting-506f1b1dc1fac8a6.yaml
similarity index 100%
rename from releasenotes/notes/fix-kinesis-span-parenting-506f1b1dc1fac8a6.yaml
rename to dd-trace-py/releasenotes/notes/fix-kinesis-span-parenting-506f1b1dc1fac8a6.yaml
diff --git a/releasenotes/notes/fix-ksr-scientific-notation-e7d1adabe548eb40.yaml b/dd-trace-py/releasenotes/notes/fix-ksr-scientific-notation-e7d1adabe548eb40.yaml
similarity index 100%
rename from releasenotes/notes/fix-ksr-scientific-notation-e7d1adabe548eb40.yaml
rename to dd-trace-py/releasenotes/notes/fix-ksr-scientific-notation-e7d1adabe548eb40.yaml
diff --git a/releasenotes/notes/fix-lambda-shared-memory-warning-4873867125814623.yaml b/dd-trace-py/releasenotes/notes/fix-lambda-shared-memory-warning-4873867125814623.yaml
similarity index 100%
rename from releasenotes/notes/fix-lambda-shared-memory-warning-4873867125814623.yaml
rename to dd-trace-py/releasenotes/notes/fix-lambda-shared-memory-warning-4873867125814623.yaml
diff --git a/releasenotes/notes/fix-langchain-auto-prompt-version-983dd20c5f070f9f.yaml b/dd-trace-py/releasenotes/notes/fix-langchain-auto-prompt-version-983dd20c5f070f9f.yaml
similarity index 100%
rename from releasenotes/notes/fix-langchain-auto-prompt-version-983dd20c5f070f9f.yaml
rename to dd-trace-py/releasenotes/notes/fix-langchain-auto-prompt-version-983dd20c5f070f9f.yaml
diff --git a/releasenotes/notes/fix-langchain-avoid-patching-partners-4c5fb04db6d083b0.yaml b/dd-trace-py/releasenotes/notes/fix-langchain-avoid-patching-partners-4c5fb04db6d083b0.yaml
similarity index 100%
rename from releasenotes/notes/fix-langchain-avoid-patching-partners-4c5fb04db6d083b0.yaml
rename to dd-trace-py/releasenotes/notes/fix-langchain-avoid-patching-partners-4c5fb04db6d083b0.yaml
diff --git a/releasenotes/notes/fix-langchain-chain-invoke-792219fb95ac1889.yaml b/dd-trace-py/releasenotes/notes/fix-langchain-chain-invoke-792219fb95ac1889.yaml
similarity index 100%
rename from releasenotes/notes/fix-langchain-chain-invoke-792219fb95ac1889.yaml
rename to dd-trace-py/releasenotes/notes/fix-langchain-chain-invoke-792219fb95ac1889.yaml
diff --git a/releasenotes/notes/fix-langchain-chat-messages-72b5292211c0044c.yaml b/dd-trace-py/releasenotes/notes/fix-langchain-chat-messages-72b5292211c0044c.yaml
similarity index 100%
rename from releasenotes/notes/fix-langchain-chat-messages-72b5292211c0044c.yaml
rename to dd-trace-py/releasenotes/notes/fix-langchain-chat-messages-72b5292211c0044c.yaml
diff --git a/releasenotes/notes/fix-langchain-openai-submodule-check-ea81685e31cb9720.yaml b/dd-trace-py/releasenotes/notes/fix-langchain-openai-submodule-check-ea81685e31cb9720.yaml
similarity index 100%
rename from releasenotes/notes/fix-langchain-openai-submodule-check-ea81685e31cb9720.yaml
rename to dd-trace-py/releasenotes/notes/fix-langchain-openai-submodule-check-ea81685e31cb9720.yaml
diff --git a/releasenotes/notes/fix-langchain-patching-800e4d50f4b2769a.yaml b/dd-trace-py/releasenotes/notes/fix-langchain-patching-800e4d50f4b2769a.yaml
similarity index 100%
rename from releasenotes/notes/fix-langchain-patching-800e4d50f4b2769a.yaml
rename to dd-trace-py/releasenotes/notes/fix-langchain-patching-800e4d50f4b2769a.yaml
diff --git a/releasenotes/notes/fix-langchain-pinecone-vectorstore-082c023ccae268e1.yaml b/dd-trace-py/releasenotes/notes/fix-langchain-pinecone-vectorstore-082c023ccae268e1.yaml
similarity index 100%
rename from releasenotes/notes/fix-langchain-pinecone-vectorstore-082c023ccae268e1.yaml
rename to dd-trace-py/releasenotes/notes/fix-langchain-pinecone-vectorstore-082c023ccae268e1.yaml
diff --git a/releasenotes/notes/fix-langchain-vision-apis-58e4de9b52198e43.yaml b/dd-trace-py/releasenotes/notes/fix-langchain-vision-apis-58e4de9b52198e43.yaml
similarity index 100%
rename from releasenotes/notes/fix-langchain-vision-apis-58e4de9b52198e43.yaml
rename to dd-trace-py/releasenotes/notes/fix-langchain-vision-apis-58e4de9b52198e43.yaml
diff --git a/releasenotes/notes/fix-lib-injection-denylist-d5478ecfef90fbcd.yaml b/dd-trace-py/releasenotes/notes/fix-lib-injection-denylist-d5478ecfef90fbcd.yaml
similarity index 100%
rename from releasenotes/notes/fix-lib-injection-denylist-d5478ecfef90fbcd.yaml
rename to dd-trace-py/releasenotes/notes/fix-lib-injection-denylist-d5478ecfef90fbcd.yaml
diff --git a/releasenotes/notes/fix-lib-injection-import-f0e5e2715854d3e0.yaml b/dd-trace-py/releasenotes/notes/fix-lib-injection-import-f0e5e2715854d3e0.yaml
similarity index 100%
rename from releasenotes/notes/fix-lib-injection-import-f0e5e2715854d3e0.yaml
rename to dd-trace-py/releasenotes/notes/fix-lib-injection-import-f0e5e2715854d3e0.yaml
diff --git a/releasenotes/notes/fix-lib-injection-python-json-logger-5248a251acb1adf4.yaml b/dd-trace-py/releasenotes/notes/fix-lib-injection-python-json-logger-5248a251acb1adf4.yaml
similarity index 100%
rename from releasenotes/notes/fix-lib-injection-python-json-logger-5248a251acb1adf4.yaml
rename to dd-trace-py/releasenotes/notes/fix-lib-injection-python-json-logger-5248a251acb1adf4.yaml
diff --git a/releasenotes/notes/fix-lib-injection-sys-argv-fefc775a4a262d86.yaml b/dd-trace-py/releasenotes/notes/fix-lib-injection-sys-argv-fefc775a4a262d86.yaml
similarity index 100%
rename from releasenotes/notes/fix-lib-injection-sys-argv-fefc775a4a262d86.yaml
rename to dd-trace-py/releasenotes/notes/fix-lib-injection-sys-argv-fefc775a4a262d86.yaml
diff --git a/releasenotes/notes/fix-lib-injection-telemetry-4fbea5e41ee1ff3e.yaml b/dd-trace-py/releasenotes/notes/fix-lib-injection-telemetry-4fbea5e41ee1ff3e.yaml
similarity index 100%
rename from releasenotes/notes/fix-lib-injection-telemetry-4fbea5e41ee1ff3e.yaml
rename to dd-trace-py/releasenotes/notes/fix-lib-injection-telemetry-4fbea5e41ee1ff3e.yaml
diff --git a/releasenotes/notes/fix-lib-injection-user-sitecustomize-4ebc76e1b722490f.yaml b/dd-trace-py/releasenotes/notes/fix-lib-injection-user-sitecustomize-4ebc76e1b722490f.yaml
similarity index 100%
rename from releasenotes/notes/fix-lib-injection-user-sitecustomize-4ebc76e1b722490f.yaml
rename to dd-trace-py/releasenotes/notes/fix-lib-injection-user-sitecustomize-4ebc76e1b722490f.yaml
diff --git a/releasenotes/notes/fix-lib-injection-version-support-ae2ff3a79ac1f6f2.yaml b/dd-trace-py/releasenotes/notes/fix-lib-injection-version-support-ae2ff3a79ac1f6f2.yaml
similarity index 100%
rename from releasenotes/notes/fix-lib-injection-version-support-ae2ff3a79ac1f6f2.yaml
rename to dd-trace-py/releasenotes/notes/fix-lib-injection-version-support-ae2ff3a79ac1f6f2.yaml
diff --git a/releasenotes/notes/fix-lib-injection-zombie-dc16ca6c8bf50edb.yaml b/dd-trace-py/releasenotes/notes/fix-lib-injection-zombie-dc16ca6c8bf50edb.yaml
similarity index 100%
rename from releasenotes/notes/fix-lib-injection-zombie-dc16ca6c8bf50edb.yaml
rename to dd-trace-py/releasenotes/notes/fix-lib-injection-zombie-dc16ca6c8bf50edb.yaml
diff --git a/releasenotes/notes/fix-llm-integrations-metrics-default-bc597eb5a5218b32.yaml b/dd-trace-py/releasenotes/notes/fix-llm-integrations-metrics-default-bc597eb5a5218b32.yaml
similarity index 100%
rename from releasenotes/notes/fix-llm-integrations-metrics-default-bc597eb5a5218b32.yaml
rename to dd-trace-py/releasenotes/notes/fix-llm-integrations-metrics-default-bc597eb5a5218b32.yaml
diff --git a/releasenotes/notes/fix-llmobs-activate-distributed-headers-432abd8e9efdf3bc.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-activate-distributed-headers-432abd8e9efdf3bc.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-activate-distributed-headers-432abd8e9efdf3bc.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-activate-distributed-headers-432abd8e9efdf3bc.yaml
diff --git a/releasenotes/notes/fix-llmobs-agentless-openai-metrics-cfeb4458555d51be.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-agentless-openai-metrics-cfeb4458555d51be.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-agentless-openai-metrics-cfeb4458555d51be.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-agentless-openai-metrics-cfeb4458555d51be.yaml
diff --git a/releasenotes/notes/fix-llmobs-anthropic-beta-tools-200099849fd61643.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-anthropic-beta-tools-200099849fd61643.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-anthropic-beta-tools-200099849fd61643.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-anthropic-beta-tools-200099849fd61643.yaml
diff --git a/releasenotes/notes/fix-llmobs-anthropic-stream-messages-tokens-ded23c37592f4621.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-anthropic-stream-messages-tokens-ded23c37592f4621.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-anthropic-stream-messages-tokens-ded23c37592f4621.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-anthropic-stream-messages-tokens-ded23c37592f4621.yaml
diff --git a/releasenotes/notes/fix-llmobs-apm-link-52431ae69f9a4623.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-apm-link-52431ae69f9a4623.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-apm-link-52431ae69f9a4623.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-apm-link-52431ae69f9a4623.yaml
diff --git a/releasenotes/notes/fix-llmobs-bedrock-patching-dbc2b3c7309ac8a1.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-bedrock-patching-dbc2b3c7309ac8a1.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-bedrock-patching-dbc2b3c7309ac8a1.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-bedrock-patching-dbc2b3c7309ac8a1.yaml
diff --git a/releasenotes/notes/fix-llmobs-decorator-error-acd76c96a9ee4a09.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-decorator-error-acd76c96a9ee4a09.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-decorator-error-acd76c96a9ee4a09.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-decorator-error-acd76c96a9ee4a09.yaml
diff --git a/releasenotes/notes/fix-llmobs-default-writer-hooks-5e456c2f7dfd4381.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-default-writer-hooks-5e456c2f7dfd4381.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-default-writer-hooks-5e456c2f7dfd4381.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-default-writer-hooks-5e456c2f7dfd4381.yaml
diff --git a/releasenotes/notes/fix-llmobs-do-not-ignore-global-patch-configs-a2adc4803f55b142.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-do-not-ignore-global-patch-configs-a2adc4803f55b142.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-do-not-ignore-global-patch-configs-a2adc4803f55b142.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-do-not-ignore-global-patch-configs-a2adc4803f55b142.yaml
diff --git a/releasenotes/notes/fix-llmobs-document-typing-5ff08feef2659220.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-document-typing-5ff08feef2659220.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-document-typing-5ff08feef2659220.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-document-typing-5ff08feef2659220.yaml
diff --git a/releasenotes/notes/fix-llmobs-enable-updates-config-45379a7a30e2e0e3.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-enable-updates-config-45379a7a30e2e0e3.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-enable-updates-config-45379a7a30e2e0e3.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-enable-updates-config-45379a7a30e2e0e3.yaml
diff --git a/releasenotes/notes/fix-llmobs-evals-assessment-98f964a9f249913e.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-evals-assessment-98f964a9f249913e.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-evals-assessment-98f964a9f249913e.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-evals-assessment-98f964a9f249913e.yaml
diff --git a/releasenotes/notes/fix-llmobs-experiment-null-metadata-6422fbcfa197f328.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-experiment-null-metadata-6422fbcfa197f328.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-experiment-null-metadata-6422fbcfa197f328.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-experiment-null-metadata-6422fbcfa197f328.yaml
diff --git a/releasenotes/notes/fix-llmobs-fork-custom-filters-5ba642f9395a0ddd.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-fork-custom-filters-5ba642f9395a0ddd.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-fork-custom-filters-5ba642f9395a0ddd.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-fork-custom-filters-5ba642f9395a0ddd.yaml
diff --git a/releasenotes/notes/fix-llmobs-forked-eval-metric-writer-55d50d1ed8fc10ea.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-forked-eval-metric-writer-55d50d1ed8fc10ea.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-forked-eval-metric-writer-55d50d1ed8fc10ea.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-forked-eval-metric-writer-55d50d1ed8fc10ea.yaml
diff --git a/releasenotes/notes/fix-llmobs-forked-writer-257b993bcf131af8.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-forked-writer-257b993bcf131af8.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-forked-writer-257b993bcf131af8.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-forked-writer-257b993bcf131af8.yaml
diff --git a/releasenotes/notes/fix-llmobs-integrations-safe-tagging-5e170868e5758510.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-integrations-safe-tagging-5e170868e5758510.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-integrations-safe-tagging-5e170868e5758510.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-integrations-safe-tagging-5e170868e5758510.yaml
diff --git a/releasenotes/notes/fix-llmobs-json-encoding-ascii-f8da77867a910de1.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-json-encoding-ascii-f8da77867a910de1.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-json-encoding-ascii-f8da77867a910de1.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-json-encoding-ascii-f8da77867a910de1.yaml
diff --git a/releasenotes/notes/fix-llmobs-langchain-azure-openai-e0ea489aafba7ffd.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-langchain-azure-openai-e0ea489aafba7ffd.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-langchain-azure-openai-e0ea489aafba7ffd.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-langchain-azure-openai-e0ea489aafba7ffd.yaml
diff --git a/releasenotes/notes/fix-llmobs-langchain-recolor-86bda941bfc39fdc.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-langchain-recolor-86bda941bfc39fdc.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-langchain-recolor-86bda941bfc39fdc.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-langchain-recolor-86bda941bfc39fdc.yaml
diff --git a/releasenotes/notes/fix-llmobs-ml-app-disabled-7879e1fcb2d1e0da.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-ml-app-disabled-7879e1fcb2d1e0da.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-ml-app-disabled-7879e1fcb2d1e0da.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-ml-app-disabled-7879e1fcb2d1e0da.yaml
diff --git a/releasenotes/notes/fix-llmobs-model-default-cebbde303bbae020.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-model-default-cebbde303bbae020.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-model-default-cebbde303bbae020.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-model-default-cebbde303bbae020.yaml
diff --git a/releasenotes/notes/fix-llmobs-multimodal-content-cc47fcad4474cb4b.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-multimodal-content-cc47fcad4474cb4b.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-multimodal-content-cc47fcad4474cb4b.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-multimodal-content-cc47fcad4474cb4b.yaml
diff --git a/releasenotes/notes/fix-llmobs-non-ascii-langchain-eb3263c79ad83ffb.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-non-ascii-langchain-eb3263c79ad83ffb.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-non-ascii-langchain-eb3263c79ad83ffb.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-non-ascii-langchain-eb3263c79ad83ffb.yaml
diff --git a/releasenotes/notes/fix-llmobs-openai-temperature-b939df0fb6ac2958.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-openai-temperature-b939df0fb6ac2958.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-openai-temperature-b939df0fb6ac2958.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-openai-temperature-b939df0fb6ac2958.yaml
diff --git a/releasenotes/notes/fix-llmobs-parenting-fa9b420d1c9c098e.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-parenting-fa9b420d1c9c098e.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-parenting-fa9b420d1c9c098e.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-parenting-fa9b420d1c9c098e.yaml
diff --git a/releasenotes/notes/fix-llmobs-processor-4afd715a84323d32.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-processor-4afd715a84323d32.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-processor-4afd715a84323d32.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-processor-4afd715a84323d32.yaml
diff --git a/releasenotes/notes/fix-llmobs-rc-default-disable-f3a7c9b1e2d04a5c.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-rc-default-disable-f3a7c9b1e2d04a5c.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-rc-default-disable-f3a7c9b1e2d04a5c.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-rc-default-disable-f3a7c9b1e2d04a5c.yaml
diff --git a/releasenotes/notes/fix-llmobs-safe-json-4aee3aacf05fd69f.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-safe-json-4aee3aacf05fd69f.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-safe-json-4aee3aacf05fd69f.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-safe-json-4aee3aacf05fd69f.yaml
diff --git a/releasenotes/notes/fix-llmobs-session-id-via-tags-6f6b0f7fca47e516.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-session-id-via-tags-6f6b0f7fca47e516.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-session-id-via-tags-6f6b0f7fca47e516.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-session-id-via-tags-6f6b0f7fca47e516.yaml
diff --git a/releasenotes/notes/fix-llmobs-unix-agent-2b959d436e6474c3.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-unix-agent-2b959d436e6474c3.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-unix-agent-2b959d436e6474c3.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-unix-agent-2b959d436e6474c3.yaml
diff --git a/releasenotes/notes/fix-llmobs-unserializable-default-690b5b29cbbe4cfa.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-unserializable-default-690b5b29cbbe4cfa.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-unserializable-default-690b5b29cbbe4cfa.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-unserializable-default-690b5b29cbbe4cfa.yaml
diff --git a/releasenotes/notes/fix-llmobs-writer-configtype-circular-import-bbe5ac187303d8d8.yaml b/dd-trace-py/releasenotes/notes/fix-llmobs-writer-configtype-circular-import-bbe5ac187303d8d8.yaml
similarity index 100%
rename from releasenotes/notes/fix-llmobs-writer-configtype-circular-import-bbe5ac187303d8d8.yaml
rename to dd-trace-py/releasenotes/notes/fix-llmobs-writer-configtype-circular-import-bbe5ac187303d8d8.yaml
diff --git a/releasenotes/notes/fix-lock-profiler-crash-in-shallow-stack-1db458e29331424d.yaml b/dd-trace-py/releasenotes/notes/fix-lock-profiler-crash-in-shallow-stack-1db458e29331424d.yaml
similarity index 100%
rename from releasenotes/notes/fix-lock-profiler-crash-in-shallow-stack-1db458e29331424d.yaml
rename to dd-trace-py/releasenotes/notes/fix-lock-profiler-crash-in-shallow-stack-1db458e29331424d.yaml
diff --git a/releasenotes/notes/fix-lock-profiler-macos-timeline-clock-mismatch-5c19ea4247e540fd.yaml b/dd-trace-py/releasenotes/notes/fix-lock-profiler-macos-timeline-clock-mismatch-5c19ea4247e540fd.yaml
similarity index 100%
rename from releasenotes/notes/fix-lock-profiler-macos-timeline-clock-mismatch-5c19ea4247e540fd.yaml
rename to dd-trace-py/releasenotes/notes/fix-lock-profiler-macos-timeline-clock-mismatch-5c19ea4247e540fd.yaml
diff --git a/releasenotes/notes/fix-lock-profiler-module-cloning-4c524e7d7d5c5967.yaml b/dd-trace-py/releasenotes/notes/fix-lock-profiler-module-cloning-4c524e7d7d5c5967.yaml
similarity index 100%
rename from releasenotes/notes/fix-lock-profiler-module-cloning-4c524e7d7d5c5967.yaml
rename to dd-trace-py/releasenotes/notes/fix-lock-profiler-module-cloning-4c524e7d7d5c5967.yaml
diff --git a/releasenotes/notes/fix-lock-profiler-pep604-type-union-d1c35175fbd78345.yaml b/dd-trace-py/releasenotes/notes/fix-lock-profiler-pep604-type-union-d1c35175fbd78345.yaml
similarity index 100%
rename from releasenotes/notes/fix-lock-profiler-pep604-type-union-d1c35175fbd78345.yaml
rename to dd-trace-py/releasenotes/notes/fix-lock-profiler-pep604-type-union-d1c35175fbd78345.yaml
diff --git a/releasenotes/notes/fix-log-correlation-service-ce734c2134125124.yaml b/dd-trace-py/releasenotes/notes/fix-log-correlation-service-ce734c2134125124.yaml
similarity index 100%
rename from releasenotes/notes/fix-log-correlation-service-ce734c2134125124.yaml
rename to dd-trace-py/releasenotes/notes/fix-log-correlation-service-ce734c2134125124.yaml
diff --git a/releasenotes/notes/fix-log-injection-structured-logs-7157452b11e8e0a4.yaml b/dd-trace-py/releasenotes/notes/fix-log-injection-structured-logs-7157452b11e8e0a4.yaml
similarity index 100%
rename from releasenotes/notes/fix-log-injection-structured-logs-7157452b11e8e0a4.yaml
rename to dd-trace-py/releasenotes/notes/fix-log-injection-structured-logs-7157452b11e8e0a4.yaml
diff --git a/releasenotes/notes/fix-logger-children-a5dddf8abbf7c159.yaml b/dd-trace-py/releasenotes/notes/fix-logger-children-a5dddf8abbf7c159.yaml
similarity index 100%
rename from releasenotes/notes/fix-logger-children-a5dddf8abbf7c159.yaml
rename to dd-trace-py/releasenotes/notes/fix-logger-children-a5dddf8abbf7c159.yaml
diff --git a/releasenotes/notes/fix-logger-standard-logging-rate-envvar-155e113deea71e85.yaml b/dd-trace-py/releasenotes/notes/fix-logger-standard-logging-rate-envvar-155e113deea71e85.yaml
similarity index 100%
rename from releasenotes/notes/fix-logger-standard-logging-rate-envvar-155e113deea71e85.yaml
rename to dd-trace-py/releasenotes/notes/fix-logger-standard-logging-rate-envvar-155e113deea71e85.yaml
diff --git a/releasenotes/notes/fix-logging-strformatstyle-9c02e1d024961c0f.yaml b/dd-trace-py/releasenotes/notes/fix-logging-strformatstyle-9c02e1d024961c0f.yaml
similarity index 100%
rename from releasenotes/notes/fix-logging-strformatstyle-9c02e1d024961c0f.yaml
rename to dd-trace-py/releasenotes/notes/fix-logging-strformatstyle-9c02e1d024961c0f.yaml
diff --git a/releasenotes/notes/fix-loguru-auto-patching-ec9b6a5dd3863ec7.yaml b/dd-trace-py/releasenotes/notes/fix-loguru-auto-patching-ec9b6a5dd3863ec7.yaml
similarity index 100%
rename from releasenotes/notes/fix-loguru-auto-patching-ec9b6a5dd3863ec7.yaml
rename to dd-trace-py/releasenotes/notes/fix-loguru-auto-patching-ec9b6a5dd3863ec7.yaml
diff --git a/releasenotes/notes/fix-make-tracer-acknowledge-agent-sampling-decisions-2919150951ed1b81.yaml b/dd-trace-py/releasenotes/notes/fix-make-tracer-acknowledge-agent-sampling-decisions-2919150951ed1b81.yaml
similarity index 100%
rename from releasenotes/notes/fix-make-tracer-acknowledge-agent-sampling-decisions-2919150951ed1b81.yaml
rename to dd-trace-py/releasenotes/notes/fix-make-tracer-acknowledge-agent-sampling-decisions-2919150951ed1b81.yaml
diff --git a/releasenotes/notes/fix-mako-template-filename-31efcdb8592758c6.yaml b/dd-trace-py/releasenotes/notes/fix-mako-template-filename-31efcdb8592758c6.yaml
similarity index 100%
rename from releasenotes/notes/fix-mako-template-filename-31efcdb8592758c6.yaml
rename to dd-trace-py/releasenotes/notes/fix-mako-template-filename-31efcdb8592758c6.yaml
diff --git a/releasenotes/notes/fix-malformed-package-metadata-3fbd4b0e87d2798e.yaml b/dd-trace-py/releasenotes/notes/fix-malformed-package-metadata-3fbd4b0e87d2798e.yaml
similarity index 100%
rename from releasenotes/notes/fix-malformed-package-metadata-3fbd4b0e87d2798e.yaml
rename to dd-trace-py/releasenotes/notes/fix-malformed-package-metadata-3fbd4b0e87d2798e.yaml
diff --git a/releasenotes/notes/fix-manual-runtime-metrics-0873e17de485f8b0.yaml b/dd-trace-py/releasenotes/notes/fix-manual-runtime-metrics-0873e17de485f8b0.yaml
similarity index 100%
rename from releasenotes/notes/fix-manual-runtime-metrics-0873e17de485f8b0.yaml
rename to dd-trace-py/releasenotes/notes/fix-manual-runtime-metrics-0873e17de485f8b0.yaml
diff --git a/releasenotes/notes/fix-memalloc-traceback-array-index-wraparound-f12e4da5a7de32f2.yaml b/dd-trace-py/releasenotes/notes/fix-memalloc-traceback-array-index-wraparound-f12e4da5a7de32f2.yaml
similarity index 100%
rename from releasenotes/notes/fix-memalloc-traceback-array-index-wraparound-f12e4da5a7de32f2.yaml
rename to dd-trace-py/releasenotes/notes/fix-memalloc-traceback-array-index-wraparound-f12e4da5a7de32f2.yaml
diff --git a/releasenotes/notes/fix-memory-leaks-and-segfaults-9fbdc8d66b32fb4f.yaml b/dd-trace-py/releasenotes/notes/fix-memory-leaks-and-segfaults-9fbdc8d66b32fb4f.yaml
similarity index 100%
rename from releasenotes/notes/fix-memory-leaks-and-segfaults-9fbdc8d66b32fb4f.yaml
rename to dd-trace-py/releasenotes/notes/fix-memory-leaks-and-segfaults-9fbdc8d66b32fb4f.yaml
diff --git a/releasenotes/notes/fix-metadata-redundancy-afc4dca3c5bb4a5a.yaml b/dd-trace-py/releasenotes/notes/fix-metadata-redundancy-afc4dca3c5bb4a5a.yaml
similarity index 100%
rename from releasenotes/notes/fix-metadata-redundancy-afc4dca3c5bb4a5a.yaml
rename to dd-trace-py/releasenotes/notes/fix-metadata-redundancy-afc4dca3c5bb4a5a.yaml
diff --git a/releasenotes/notes/fix-missing-lib_config-f2c0a6a40f525bff.yaml b/dd-trace-py/releasenotes/notes/fix-missing-lib_config-f2c0a6a40f525bff.yaml
similarity index 100%
rename from releasenotes/notes/fix-missing-lib_config-f2c0a6a40f525bff.yaml
rename to dd-trace-py/releasenotes/notes/fix-missing-lib_config-f2c0a6a40f525bff.yaml
diff --git a/releasenotes/notes/fix-module-callback-no-side-effects-df422ae52b87772d.yaml b/dd-trace-py/releasenotes/notes/fix-module-callback-no-side-effects-df422ae52b87772d.yaml
similarity index 100%
rename from releasenotes/notes/fix-module-callback-no-side-effects-df422ae52b87772d.yaml
rename to dd-trace-py/releasenotes/notes/fix-module-callback-no-side-effects-df422ae52b87772d.yaml
diff --git a/releasenotes/notes/fix-module-callback-type-error-ba5583fa8e2cf0fc.yaml b/dd-trace-py/releasenotes/notes/fix-module-callback-type-error-ba5583fa8e2cf0fc.yaml
similarity index 100%
rename from releasenotes/notes/fix-module-callback-type-error-ba5583fa8e2cf0fc.yaml
rename to dd-trace-py/releasenotes/notes/fix-module-callback-type-error-ba5583fa8e2cf0fc.yaml
diff --git a/releasenotes/notes/fix-module-getattribute-05b6c940d8ed153c.yaml b/dd-trace-py/releasenotes/notes/fix-module-getattribute-05b6c940d8ed153c.yaml
similarity index 100%
rename from releasenotes/notes/fix-module-getattribute-05b6c940d8ed153c.yaml
rename to dd-trace-py/releasenotes/notes/fix-module-getattribute-05b6c940d8ed153c.yaml
diff --git a/releasenotes/notes/fix-module-loader-pkg-resources-support-2bed675a1e1f793b.yaml b/dd-trace-py/releasenotes/notes/fix-module-loader-pkg-resources-support-2bed675a1e1f793b.yaml
similarity index 100%
rename from releasenotes/notes/fix-module-loader-pkg-resources-support-2bed675a1e1f793b.yaml
rename to dd-trace-py/releasenotes/notes/fix-module-loader-pkg-resources-support-2bed675a1e1f793b.yaml
diff --git a/releasenotes/notes/fix-module-namespace-package-support-90b326382951be19.yaml b/dd-trace-py/releasenotes/notes/fix-module-namespace-package-support-90b326382951be19.yaml
similarity index 100%
rename from releasenotes/notes/fix-module-namespace-package-support-90b326382951be19.yaml
rename to dd-trace-py/releasenotes/notes/fix-module-namespace-package-support-90b326382951be19.yaml
diff --git a/releasenotes/notes/fix-module-watchdog-no-sys-module-replacement-0e019c59ad745244.yaml b/dd-trace-py/releasenotes/notes/fix-module-watchdog-no-sys-module-replacement-0e019c59ad745244.yaml
similarity index 100%
rename from releasenotes/notes/fix-module-watchdog-no-sys-module-replacement-0e019c59ad745244.yaml
rename to dd-trace-py/releasenotes/notes/fix-module-watchdog-no-sys-module-replacement-0e019c59ad745244.yaml
diff --git a/releasenotes/notes/fix-monkey-patch-on-import-5cfb79bf2eea7c7e.yaml b/dd-trace-py/releasenotes/notes/fix-monkey-patch-on-import-5cfb79bf2eea7c7e.yaml
similarity index 100%
rename from releasenotes/notes/fix-monkey-patch-on-import-5cfb79bf2eea7c7e.yaml
rename to dd-trace-py/releasenotes/notes/fix-monkey-patch-on-import-5cfb79bf2eea7c7e.yaml
diff --git a/releasenotes/notes/fix-monkey-patch-on-import-7bbf81bcd2a86f11.yaml b/dd-trace-py/releasenotes/notes/fix-monkey-patch-on-import-7bbf81bcd2a86f11.yaml
similarity index 100%
rename from releasenotes/notes/fix-monkey-patch-on-import-7bbf81bcd2a86f11.yaml
rename to dd-trace-py/releasenotes/notes/fix-monkey-patch-on-import-7bbf81bcd2a86f11.yaml
diff --git a/releasenotes/notes/fix-monkey-patch-typing-ab13fc458c90a260.yaml b/dd-trace-py/releasenotes/notes/fix-monkey-patch-typing-ab13fc458c90a260.yaml
similarity index 100%
rename from releasenotes/notes/fix-monkey-patch-typing-ab13fc458c90a260.yaml
rename to dd-trace-py/releasenotes/notes/fix-monkey-patch-typing-ab13fc458c90a260.yaml
diff --git a/releasenotes/notes/fix-msgpack-errors-3fcf9f77a77c9786.yaml b/dd-trace-py/releasenotes/notes/fix-msgpack-errors-3fcf9f77a77c9786.yaml
similarity index 100%
rename from releasenotes/notes/fix-msgpack-errors-3fcf9f77a77c9786.yaml
rename to dd-trace-py/releasenotes/notes/fix-msgpack-errors-3fcf9f77a77c9786.yaml
diff --git a/releasenotes/notes/fix-msgpack-string-table-no-index-assert-620c0b0a1b363e86.yaml b/dd-trace-py/releasenotes/notes/fix-msgpack-string-table-no-index-assert-620c0b0a1b363e86.yaml
similarity index 100%
rename from releasenotes/notes/fix-msgpack-string-table-no-index-assert-620c0b0a1b363e86.yaml
rename to dd-trace-py/releasenotes/notes/fix-msgpack-string-table-no-index-assert-620c0b0a1b363e86.yaml
diff --git a/releasenotes/notes/fix-mypy-py2-redis-4c8d3b4e461c6074.yaml b/dd-trace-py/releasenotes/notes/fix-mypy-py2-redis-4c8d3b4e461c6074.yaml
similarity index 100%
rename from releasenotes/notes/fix-mypy-py2-redis-4c8d3b4e461c6074.yaml
rename to dd-trace-py/releasenotes/notes/fix-mypy-py2-redis-4c8d3b4e461c6074.yaml
diff --git a/releasenotes/notes/fix-nested-propagation-extraction-e3fa2a83b1c21f4c.yaml b/dd-trace-py/releasenotes/notes/fix-nested-propagation-extraction-e3fa2a83b1c21f4c.yaml
similarity index 100%
rename from releasenotes/notes/fix-nested-propagation-extraction-e3fa2a83b1c21f4c.yaml
rename to dd-trace-py/releasenotes/notes/fix-nested-propagation-extraction-e3fa2a83b1c21f4c.yaml
diff --git a/releasenotes/notes/fix-new-process-creation-7f997661cf5ace22.yaml b/dd-trace-py/releasenotes/notes/fix-new-process-creation-7f997661cf5ace22.yaml
similarity index 100%
rename from releasenotes/notes/fix-new-process-creation-7f997661cf5ace22.yaml
rename to dd-trace-py/releasenotes/notes/fix-new-process-creation-7f997661cf5ace22.yaml
diff --git a/releasenotes/notes/fix-numeric-annotations-7cf06b5ceb615282.yaml b/dd-trace-py/releasenotes/notes/fix-numeric-annotations-7cf06b5ceb615282.yaml
similarity index 100%
rename from releasenotes/notes/fix-numeric-annotations-7cf06b5ceb615282.yaml
rename to dd-trace-py/releasenotes/notes/fix-numeric-annotations-7cf06b5ceb615282.yaml
diff --git a/releasenotes/notes/fix-numeric-exception-profiling-memalloc-5ad925dbb60ad078.yaml b/dd-trace-py/releasenotes/notes/fix-numeric-exception-profiling-memalloc-5ad925dbb60ad078.yaml
similarity index 100%
rename from releasenotes/notes/fix-numeric-exception-profiling-memalloc-5ad925dbb60ad078.yaml
rename to dd-trace-py/releasenotes/notes/fix-numeric-exception-profiling-memalloc-5ad925dbb60ad078.yaml
diff --git a/releasenotes/notes/fix-oai-resp-bug-75e91a1061a66449.yaml b/dd-trace-py/releasenotes/notes/fix-oai-resp-bug-75e91a1061a66449.yaml
similarity index 100%
rename from releasenotes/notes/fix-oai-resp-bug-75e91a1061a66449.yaml
rename to dd-trace-py/releasenotes/notes/fix-oai-resp-bug-75e91a1061a66449.yaml
diff --git a/releasenotes/notes/fix-oci-denylist-080592ca52e45681.yaml b/dd-trace-py/releasenotes/notes/fix-oci-denylist-080592ca52e45681.yaml
similarity index 100%
rename from releasenotes/notes/fix-oci-denylist-080592ca52e45681.yaml
rename to dd-trace-py/releasenotes/notes/fix-oci-denylist-080592ca52e45681.yaml
diff --git a/releasenotes/notes/fix-openai-313-29ec43cbf2f35947.yaml b/dd-trace-py/releasenotes/notes/fix-openai-313-29ec43cbf2f35947.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-313-29ec43cbf2f35947.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-313-29ec43cbf2f35947.yaml
diff --git a/releasenotes/notes/fix-openai-agents-080-compat-41de292c2df92250.yaml b/dd-trace-py/releasenotes/notes/fix-openai-agents-080-compat-41de292c2df92250.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-agents-080-compat-41de292c2df92250.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-agents-080-compat-41de292c2df92250.yaml
diff --git a/releasenotes/notes/fix-openai-api-key-f7964ca702ddd126.yaml b/dd-trace-py/releasenotes/notes/fix-openai-api-key-f7964ca702ddd126.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-api-key-f7964ca702ddd126.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-api-key-f7964ca702ddd126.yaml
diff --git a/releasenotes/notes/fix-openai-async-pagination-f2135d64e0372efb.yaml b/dd-trace-py/releasenotes/notes/fix-openai-async-pagination-f2135d64e0372efb.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-async-pagination-f2135d64e0372efb.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-async-pagination-f2135d64e0372efb.yaml
diff --git a/releasenotes/notes/fix-openai-async-streaming-span-lifecycle-bdf04be937e24f07.yaml b/dd-trace-py/releasenotes/notes/fix-openai-async-streaming-span-lifecycle-bdf04be937e24f07.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-async-streaming-span-lifecycle-bdf04be937e24f07.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-async-streaming-span-lifecycle-bdf04be937e24f07.yaml
diff --git a/releasenotes/notes/fix-openai-catch-base-exception-a59c36fa8b0f40a0.yaml b/dd-trace-py/releasenotes/notes/fix-openai-catch-base-exception-a59c36fa8b0f40a0.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-catch-base-exception-a59c36fa8b0f40a0.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-catch-base-exception-a59c36fa8b0f40a0.yaml
diff --git a/releasenotes/notes/fix-openai-chat-completion-empty-message-fdd7c70643cf366f.yaml b/dd-trace-py/releasenotes/notes/fix-openai-chat-completion-empty-message-fdd7c70643cf366f.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-chat-completion-empty-message-fdd7c70643cf366f.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-chat-completion-empty-message-fdd7c70643cf366f.yaml
diff --git a/releasenotes/notes/fix-openai-chat-image-input-d664b6ef30492e2c.yaml b/dd-trace-py/releasenotes/notes/fix-openai-chat-image-input-d664b6ef30492e2c.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-chat-image-input-d664b6ef30492e2c.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-chat-image-input-d664b6ef30492e2c.yaml
diff --git a/releasenotes/notes/fix-openai-client-does-not-exist-06572c76555339a7.yaml b/dd-trace-py/releasenotes/notes/fix-openai-client-does-not-exist-06572c76555339a7.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-client-does-not-exist-06572c76555339a7.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-client-does-not-exist-06572c76555339a7.yaml
diff --git a/releasenotes/notes/fix-openai-compatibility-with-py37-78a2c63323c8c126.yaml b/dd-trace-py/releasenotes/notes/fix-openai-compatibility-with-py37-78a2c63323c8c126.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-compatibility-with-py37-78a2c63323c8c126.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-compatibility-with-py37-78a2c63323c8c126.yaml
diff --git a/releasenotes/notes/fix-openai-embeddings-input-7feb1198fabac31b.yaml b/dd-trace-py/releasenotes/notes/fix-openai-embeddings-input-7feb1198fabac31b.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-embeddings-input-7feb1198fabac31b.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-embeddings-input-7feb1198fabac31b.yaml
diff --git a/releasenotes/notes/fix-openai-embeddings-pc-sample-rate-52a8433eb22833e1.yaml b/dd-trace-py/releasenotes/notes/fix-openai-embeddings-pc-sample-rate-52a8433eb22833e1.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-embeddings-pc-sample-rate-52a8433eb22833e1.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-embeddings-pc-sample-rate-52a8433eb22833e1.yaml
diff --git a/releasenotes/notes/fix-openai-langchain-logs-trace-correlation-3f66b3880c354a54.yaml b/dd-trace-py/releasenotes/notes/fix-openai-langchain-logs-trace-correlation-3f66b3880c354a54.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-langchain-logs-trace-correlation-3f66b3880c354a54.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-langchain-logs-trace-correlation-3f66b3880c354a54.yaml
diff --git a/releasenotes/notes/fix-openai-llmobs-preserve-assistant-content-with-tool-calls-07fdde4269fea049.yaml b/dd-trace-py/releasenotes/notes/fix-openai-llmobs-preserve-assistant-content-with-tool-calls-07fdde4269fea049.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-llmobs-preserve-assistant-content-with-tool-calls-07fdde4269fea049.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-llmobs-preserve-assistant-content-with-tool-calls-07fdde4269fea049.yaml
diff --git a/releasenotes/notes/fix-openai-none-n-kwarg-04e0f81074a13191.yaml b/dd-trace-py/releasenotes/notes/fix-openai-none-n-kwarg-04e0f81074a13191.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-none-n-kwarg-04e0f81074a13191.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-none-n-kwarg-04e0f81074a13191.yaml
diff --git a/releasenotes/notes/fix-openai-patch-process-response-b52430a78751de24.yaml b/dd-trace-py/releasenotes/notes/fix-openai-patch-process-response-b52430a78751de24.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-patch-process-response-b52430a78751de24.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-patch-process-response-b52430a78751de24.yaml
diff --git a/releasenotes/notes/fix-openai-raw-response-c56359c484914fd5.yaml b/dd-trace-py/releasenotes/notes/fix-openai-raw-response-c56359c484914fd5.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-raw-response-c56359c484914fd5.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-raw-response-c56359c484914fd5.yaml
diff --git a/releasenotes/notes/fix-openai-remove-api-key-c372e143ca7f00f5.yaml b/dd-trace-py/releasenotes/notes/fix-openai-remove-api-key-c372e143ca7f00f5.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-remove-api-key-c372e143ca7f00f5.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-remove-api-key-c372e143ca7f00f5.yaml
diff --git a/releasenotes/notes/fix-openai-remove-edit-fine-tunes-0fc21266ef1cddb0.yaml b/dd-trace-py/releasenotes/notes/fix-openai-remove-edit-fine-tunes-0fc21266ef1cddb0.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-remove-edit-fine-tunes-0fc21266ef1cddb0.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-remove-edit-fine-tunes-0fc21266ef1cddb0.yaml
diff --git a/releasenotes/notes/fix-openai-responses-input-sdk-object-parsing-62a4780400953433.yaml b/dd-trace-py/releasenotes/notes/fix-openai-responses-input-sdk-object-parsing-62a4780400953433.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-responses-input-sdk-object-parsing-62a4780400953433.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-responses-input-sdk-object-parsing-62a4780400953433.yaml
diff --git a/releasenotes/notes/fix-openai-stream-error-unfinished-span-d62df398912b0f56.yaml b/dd-trace-py/releasenotes/notes/fix-openai-stream-error-unfinished-span-d62df398912b0f56.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-stream-error-unfinished-span-d62df398912b0f56.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-stream-error-unfinished-span-d62df398912b0f56.yaml
diff --git a/releasenotes/notes/fix-openai-streamed-none-resp-d9dd76e45d728d18.yaml b/dd-trace-py/releasenotes/notes/fix-openai-streamed-none-resp-d9dd76e45d728d18.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-streamed-none-resp-d9dd76e45d728d18.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-streamed-none-resp-d9dd76e45d728d18.yaml
diff --git a/releasenotes/notes/fix-openai-streamed-raw-response-requests-7309cdcfd65ed5a8.yaml b/dd-trace-py/releasenotes/notes/fix-openai-streamed-raw-response-requests-7309cdcfd65ed5a8.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-streamed-raw-response-requests-7309cdcfd65ed5a8.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-streamed-raw-response-requests-7309cdcfd65ed5a8.yaml
diff --git a/releasenotes/notes/fix-openai-streamed-responses-6db98c802c331b46.yaml b/dd-trace-py/releasenotes/notes/fix-openai-streamed-responses-6db98c802c331b46.yaml
similarity index 100%
rename from releasenotes/notes/fix-openai-streamed-responses-6db98c802c331b46.yaml
rename to dd-trace-py/releasenotes/notes/fix-openai-streamed-responses-6db98c802c331b46.yaml
diff --git a/releasenotes/notes/fix-ot-extract-5faf0276c75d033f.yaml b/dd-trace-py/releasenotes/notes/fix-ot-extract-5faf0276c75d033f.yaml
similarity index 100%
rename from releasenotes/notes/fix-ot-extract-5faf0276c75d033f.yaml
rename to dd-trace-py/releasenotes/notes/fix-ot-extract-5faf0276c75d033f.yaml
diff --git a/releasenotes/notes/fix-otel-circular-imports-66f6c926d8626751.yaml b/dd-trace-py/releasenotes/notes/fix-otel-circular-imports-66f6c926d8626751.yaml
similarity index 100%
rename from releasenotes/notes/fix-otel-circular-imports-66f6c926d8626751.yaml
rename to dd-trace-py/releasenotes/notes/fix-otel-circular-imports-66f6c926d8626751.yaml
diff --git a/releasenotes/notes/fix-otel-docs-formatting-1-5e555fa29a0c4ba4.yaml b/dd-trace-py/releasenotes/notes/fix-otel-docs-formatting-1-5e555fa29a0c4ba4.yaml
similarity index 100%
rename from releasenotes/notes/fix-otel-docs-formatting-1-5e555fa29a0c4ba4.yaml
rename to dd-trace-py/releasenotes/notes/fix-otel-docs-formatting-1-5e555fa29a0c4ba4.yaml
diff --git a/releasenotes/notes/fix-otel-get-tracer-args-0195cb8c1f7614ac.yaml b/dd-trace-py/releasenotes/notes/fix-otel-get-tracer-args-0195cb8c1f7614ac.yaml
similarity index 100%
rename from releasenotes/notes/fix-otel-get-tracer-args-0195cb8c1f7614ac.yaml
rename to dd-trace-py/releasenotes/notes/fix-otel-get-tracer-args-0195cb8c1f7614ac.yaml
diff --git a/releasenotes/notes/fix-otel-metrics-configuration-fallbacks-783433d0d6ffa5d3.yaml b/dd-trace-py/releasenotes/notes/fix-otel-metrics-configuration-fallbacks-783433d0d6ffa5d3.yaml
similarity index 100%
rename from releasenotes/notes/fix-otel-metrics-configuration-fallbacks-783433d0d6ffa5d3.yaml
rename to dd-trace-py/releasenotes/notes/fix-otel-metrics-configuration-fallbacks-783433d0d6ffa5d3.yaml
diff --git a/releasenotes/notes/fix-otel-multiple-signals-254a3a0abcc364f3.yaml b/dd-trace-py/releasenotes/notes/fix-otel-multiple-signals-254a3a0abcc364f3.yaml
similarity index 100%
rename from releasenotes/notes/fix-otel-multiple-signals-254a3a0abcc364f3.yaml
rename to dd-trace-py/releasenotes/notes/fix-otel-multiple-signals-254a3a0abcc364f3.yaml
diff --git a/releasenotes/notes/fix-partial-flush-indexerror-empty-list.yaml b/dd-trace-py/releasenotes/notes/fix-partial-flush-indexerror-empty-list.yaml
similarity index 100%
rename from releasenotes/notes/fix-partial-flush-indexerror-empty-list.yaml
rename to dd-trace-py/releasenotes/notes/fix-partial-flush-indexerror-empty-list.yaml
diff --git a/releasenotes/notes/fix-patching-error-asynctest-9b430f410cd9dfeb.yaml b/dd-trace-py/releasenotes/notes/fix-patching-error-asynctest-9b430f410cd9dfeb.yaml
similarity index 100%
rename from releasenotes/notes/fix-patching-error-asynctest-9b430f410cd9dfeb.yaml
rename to dd-trace-py/releasenotes/notes/fix-patching-error-asynctest-9b430f410cd9dfeb.yaml
diff --git a/releasenotes/notes/fix-path-issue-windows-d17b5d3ae2294834.yaml b/dd-trace-py/releasenotes/notes/fix-path-issue-windows-d17b5d3ae2294834.yaml
similarity index 100%
rename from releasenotes/notes/fix-path-issue-windows-d17b5d3ae2294834.yaml
rename to dd-trace-py/releasenotes/notes/fix-path-issue-windows-d17b5d3ae2294834.yaml
diff --git a/releasenotes/notes/fix-pathlib-no-clone-1704ffa623aa27fd.yaml b/dd-trace-py/releasenotes/notes/fix-pathlib-no-clone-1704ffa623aa27fd.yaml
similarity index 100%
rename from releasenotes/notes/fix-pathlib-no-clone-1704ffa623aa27fd.yaml
rename to dd-trace-py/releasenotes/notes/fix-pathlib-no-clone-1704ffa623aa27fd.yaml
diff --git a/releasenotes/notes/fix-peer-service-module-efec5b701bea2752.yaml b/dd-trace-py/releasenotes/notes/fix-peer-service-module-efec5b701bea2752.yaml
similarity index 100%
rename from releasenotes/notes/fix-peer-service-module-efec5b701bea2752.yaml
rename to dd-trace-py/releasenotes/notes/fix-peer-service-module-efec5b701bea2752.yaml
diff --git a/releasenotes/notes/fix-period-thread-shutdown-race-35244eeb6fc444bd.yaml b/dd-trace-py/releasenotes/notes/fix-period-thread-shutdown-race-35244eeb6fc444bd.yaml
similarity index 100%
rename from releasenotes/notes/fix-period-thread-shutdown-race-35244eeb6fc444bd.yaml
rename to dd-trace-py/releasenotes/notes/fix-period-thread-shutdown-race-35244eeb6fc444bd.yaml
diff --git a/releasenotes/notes/fix-periodic-thread-after-fork-cleanup-1544bd987a7a503d.yaml b/dd-trace-py/releasenotes/notes/fix-periodic-thread-after-fork-cleanup-1544bd987a7a503d.yaml
similarity index 100%
rename from releasenotes/notes/fix-periodic-thread-after-fork-cleanup-1544bd987a7a503d.yaml
rename to dd-trace-py/releasenotes/notes/fix-periodic-thread-after-fork-cleanup-1544bd987a7a503d.yaml
diff --git a/releasenotes/notes/fix-periodic-thread-eh-435a308cac97f6c4.yaml b/dd-trace-py/releasenotes/notes/fix-periodic-thread-eh-435a308cac97f6c4.yaml
similarity index 100%
rename from releasenotes/notes/fix-periodic-thread-eh-435a308cac97f6c4.yaml
rename to dd-trace-py/releasenotes/notes/fix-periodic-thread-eh-435a308cac97f6c4.yaml
diff --git a/releasenotes/notes/fix-periodic-thread-start-race-b9f4ef302d5e09d5.yaml b/dd-trace-py/releasenotes/notes/fix-periodic-thread-start-race-b9f4ef302d5e09d5.yaml
similarity index 100%
rename from releasenotes/notes/fix-periodic-thread-start-race-b9f4ef302d5e09d5.yaml
rename to dd-trace-py/releasenotes/notes/fix-periodic-thread-start-race-b9f4ef302d5e09d5.yaml
diff --git a/releasenotes/notes/fix-periodic-thread-start-restart-iteration-37b0e4ebc8b46dba.yaml b/dd-trace-py/releasenotes/notes/fix-periodic-thread-start-restart-iteration-37b0e4ebc8b46dba.yaml
similarity index 100%
rename from releasenotes/notes/fix-periodic-thread-start-restart-iteration-37b0e4ebc8b46dba.yaml
rename to dd-trace-py/releasenotes/notes/fix-periodic-thread-start-restart-iteration-37b0e4ebc8b46dba.yaml
diff --git a/releasenotes/notes/fix-pkg_resources-race-9e50201791f4cb98.yaml b/dd-trace-py/releasenotes/notes/fix-pkg_resources-race-9e50201791f4cb98.yaml
similarity index 100%
rename from releasenotes/notes/fix-pkg_resources-race-9e50201791f4cb98.yaml
rename to dd-trace-py/releasenotes/notes/fix-pkg_resources-race-9e50201791f4cb98.yaml
diff --git a/releasenotes/notes/fix-postgres-circular-req-0904bf22c32c785d.yaml b/dd-trace-py/releasenotes/notes/fix-postgres-circular-req-0904bf22c32c785d.yaml
similarity index 100%
rename from releasenotes/notes/fix-postgres-circular-req-0904bf22c32c785d.yaml
rename to dd-trace-py/releasenotes/notes/fix-postgres-circular-req-0904bf22c32c785d.yaml
diff --git a/releasenotes/notes/fix-potential-deadlock-in-writer-9372315daf885df5.yaml b/dd-trace-py/releasenotes/notes/fix-potential-deadlock-in-writer-9372315daf885df5.yaml
similarity index 100%
rename from releasenotes/notes/fix-potential-deadlock-in-writer-9372315daf885df5.yaml
rename to dd-trace-py/releasenotes/notes/fix-potential-deadlock-in-writer-9372315daf885df5.yaml
diff --git a/releasenotes/notes/fix-potential-thread-restart-timer-leak-6ba9eaa0cc4ca49a.yaml b/dd-trace-py/releasenotes/notes/fix-potential-thread-restart-timer-leak-6ba9eaa0cc4ca49a.yaml
similarity index 100%
rename from releasenotes/notes/fix-potential-thread-restart-timer-leak-6ba9eaa0cc4ca49a.yaml
rename to dd-trace-py/releasenotes/notes/fix-potential-thread-restart-timer-leak-6ba9eaa0cc4ca49a.yaml
diff --git a/releasenotes/notes/fix-prevent-dots-in-evaluation-metric-labels-ab5caab19d52d3e1.yaml b/dd-trace-py/releasenotes/notes/fix-prevent-dots-in-evaluation-metric-labels-ab5caab19d52d3e1.yaml
similarity index 100%
rename from releasenotes/notes/fix-prevent-dots-in-evaluation-metric-labels-ab5caab19d52d3e1.yaml
rename to dd-trace-py/releasenotes/notes/fix-prevent-dots-in-evaluation-metric-labels-ab5caab19d52d3e1.yaml
diff --git a/releasenotes/notes/fix-process-tags-compound-argv0-25cc53f54eba46c6.yaml b/dd-trace-py/releasenotes/notes/fix-process-tags-compound-argv0-25cc53f54eba46c6.yaml
similarity index 100%
rename from releasenotes/notes/fix-process-tags-compound-argv0-25cc53f54eba46c6.yaml
rename to dd-trace-py/releasenotes/notes/fix-process-tags-compound-argv0-25cc53f54eba46c6.yaml
diff --git a/releasenotes/notes/fix-process-tags-error-1341c4204b8b3f1f.yaml b/dd-trace-py/releasenotes/notes/fix-process-tags-error-1341c4204b8b3f1f.yaml
similarity index 100%
rename from releasenotes/notes/fix-process-tags-error-1341c4204b8b3f1f.yaml
rename to dd-trace-py/releasenotes/notes/fix-process-tags-error-1341c4204b8b3f1f.yaml
diff --git a/releasenotes/notes/fix-profiler-3-11-memory-leak-stack-collector-9131642011ee5ce8.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-3-11-memory-leak-stack-collector-9131642011ee5ce8.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-3-11-memory-leak-stack-collector-9131642011ee5ce8.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-3-11-memory-leak-stack-collector-9131642011ee5ce8.yaml
diff --git a/releasenotes/notes/fix-profiler-allocation-metrics-96b88193d7810065.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-allocation-metrics-96b88193d7810065.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-allocation-metrics-96b88193d7810065.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-allocation-metrics-96b88193d7810065.yaml
diff --git a/releasenotes/notes/fix-profiler-frame-strings-24a10dad43f25bc7.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-frame-strings-24a10dad43f25bc7.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-frame-strings-24a10dad43f25bc7.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-frame-strings-24a10dad43f25bc7.yaml
diff --git a/releasenotes/notes/fix-profiler-gevent-dummy-threads-bfef39da4976aa4b.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-gevent-dummy-threads-bfef39da4976aa4b.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-gevent-dummy-threads-bfef39da4976aa4b.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-gevent-dummy-threads-bfef39da4976aa4b.yaml
diff --git a/releasenotes/notes/fix-profiler-gevent-tasks-76ed862362210cb7.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-gevent-tasks-76ed862362210cb7.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-gevent-tasks-76ed862362210cb7.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-gevent-tasks-76ed862362210cb7.yaml
diff --git a/releasenotes/notes/fix-profiler-greenlet-lock-contention-74ad94719d4343fc.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-greenlet-lock-contention-74ad94719d4343fc.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-greenlet-lock-contention-74ad94719d4343fc.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-greenlet-lock-contention-74ad94719d4343fc.yaml
diff --git a/releasenotes/notes/fix-profiler-gunicorn-threading-ab10ed4ddbb30f10.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-gunicorn-threading-ab10ed4ddbb30f10.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-gunicorn-threading-ab10ed4ddbb30f10.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-gunicorn-threading-ab10ed4ddbb30f10.yaml
diff --git a/releasenotes/notes/fix-profiler-handle-request-errors-45a1917365c5b512.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-handle-request-errors-45a1917365c5b512.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-handle-request-errors-45a1917365c5b512.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-handle-request-errors-45a1917365c5b512.yaml
diff --git a/releasenotes/notes/fix-profiler-int-ptr-conversion-4377fbd8724eeaec.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-int-ptr-conversion-4377fbd8724eeaec.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-int-ptr-conversion-4377fbd8724eeaec.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-int-ptr-conversion-4377fbd8724eeaec.yaml
diff --git a/releasenotes/notes/fix-profiler-memory-collector-reinit-after-fork-2e6fa30cb75e03a6.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-memory-collector-reinit-after-fork-2e6fa30cb75e03a6.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-memory-collector-reinit-after-fork-2e6fa30cb75e03a6.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-memory-collector-reinit-after-fork-2e6fa30cb75e03a6.yaml
diff --git a/releasenotes/notes/fix-profiler-memory-collector-shutdown-118642abe59f8ae3.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-memory-collector-shutdown-118642abe59f8ae3.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-memory-collector-shutdown-118642abe59f8ae3.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-memory-collector-shutdown-118642abe59f8ae3.yaml
diff --git a/releasenotes/notes/fix-profiler-postfork-hook-ordering.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-postfork-hook-ordering.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-postfork-hook-ordering.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-postfork-hook-ordering.yaml
diff --git a/releasenotes/notes/fix-profiler-protobuf-if-needed-9c64068ab27e7352.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-protobuf-if-needed-9c64068ab27e7352.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-protobuf-if-needed-9c64068ab27e7352.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-protobuf-if-needed-9c64068ab27e7352.yaml
diff --git a/releasenotes/notes/fix-profiler-recorder-rrlock-3c16195829e29acd.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-recorder-rrlock-3c16195829e29acd.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-recorder-rrlock-3c16195829e29acd.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-recorder-rrlock-3c16195829e29acd.yaml
diff --git a/releasenotes/notes/fix-profiler-release-gil-internal-mutation-2f0fc19f83759a72.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-release-gil-internal-mutation-2f0fc19f83759a72.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-release-gil-internal-mutation-2f0fc19f83759a72.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-release-gil-internal-mutation-2f0fc19f83759a72.yaml
diff --git a/releasenotes/notes/fix-profiler-segfault-in-protobuf-apps-032558829864cdfe.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-segfault-in-protobuf-apps-032558829864cdfe.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-segfault-in-protobuf-apps-032558829864cdfe.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-segfault-in-protobuf-apps-032558829864cdfe.yaml
diff --git a/releasenotes/notes/fix-profiler-segv-pygenobject-raw-dereference-6ac21aa1da2048c6.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-segv-pygenobject-raw-dereference-6ac21aa1da2048c6.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-segv-pygenobject-raw-dereference-6ac21aa1da2048c6.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-segv-pygenobject-raw-dereference-6ac21aa1da2048c6.yaml
diff --git a/releasenotes/notes/fix-profiler-shutdown-race-a4540e18ce2af993.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-shutdown-race-a4540e18ce2af993.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-shutdown-race-a4540e18ce2af993.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-shutdown-race-a4540e18ce2af993.yaml
diff --git a/releasenotes/notes/fix-profiler-shutdown-race2-feab8e703c92c52a.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-shutdown-race2-feab8e703c92c52a.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-shutdown-race2-feab8e703c92c52a.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-shutdown-race2-feab8e703c92c52a.yaml
diff --git a/releasenotes/notes/fix-profiler-thread-link-cbe14bf53e6071db.yaml b/dd-trace-py/releasenotes/notes/fix-profiler-thread-link-cbe14bf53e6071db.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiler-thread-link-cbe14bf53e6071db.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiler-thread-link-cbe14bf53e6071db.yaml
diff --git a/releasenotes/notes/fix-profilier-unicode-py27-170d078ba5712f2d.yaml b/dd-trace-py/releasenotes/notes/fix-profilier-unicode-py27-170d078ba5712f2d.yaml
similarity index 100%
rename from releasenotes/notes/fix-profilier-unicode-py27-170d078ba5712f2d.yaml
rename to dd-trace-py/releasenotes/notes/fix-profilier-unicode-py27-170d078ba5712f2d.yaml
diff --git a/releasenotes/notes/fix-profiling-class-name-exceptions-6538651a21ca00d6.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-class-name-exceptions-6538651a21ca00d6.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-class-name-exceptions-6538651a21ca00d6.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-class-name-exceptions-6538651a21ca00d6.yaml
diff --git a/releasenotes/notes/fix-profiling-class-name-system-error-75df13d59d9974ee.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-class-name-system-error-75df13d59d9974ee.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-class-name-system-error-75df13d59d9974ee.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-class-name-system-error-75df13d59d9974ee.yaml
diff --git a/releasenotes/notes/fix-profiling-exporter-tags-f19c6cf93cbe1502.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-exporter-tags-f19c6cf93cbe1502.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-exporter-tags-f19c6cf93cbe1502.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-exporter-tags-f19c6cf93cbe1502.yaml
diff --git a/releasenotes/notes/fix-profiling-fork-crash-lru-cache-b80e6574fc304037.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-fork-crash-lru-cache-b80e6574fc304037.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-fork-crash-lru-cache-b80e6574fc304037.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-fork-crash-lru-cache-b80e6574fc304037.yaml
diff --git a/releasenotes/notes/fix-profiling-gevent-joinall-return-593d22628a25fd99.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-gevent-joinall-return-593d22628a25fd99.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-gevent-joinall-return-593d22628a25fd99.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-gevent-joinall-return-593d22628a25fd99.yaml
diff --git a/releasenotes/notes/fix-profiling-gevent-locks-da09ae3fe468d86e.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-gevent-locks-da09ae3fe468d86e.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-gevent-locks-da09ae3fe468d86e.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-gevent-locks-da09ae3fe468d86e.yaml
diff --git a/releasenotes/notes/fix-profiling-gevent-untrack-keyerror-7f3a9b2c1d4e5f60.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-gevent-untrack-keyerror-7f3a9b2c1d4e5f60.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-gevent-untrack-keyerror-7f3a9b2c1d4e5f60.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-gevent-untrack-keyerror-7f3a9b2c1d4e5f60.yaml
diff --git a/releasenotes/notes/fix-profiling-greenlet-support-4a873a43e9c4b047.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-greenlet-support-4a873a43e9c4b047.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-greenlet-support-4a873a43e9c4b047.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-greenlet-support-4a873a43e9c4b047.yaml
diff --git a/releasenotes/notes/fix-profiling-lock-spurious-acquire-sample-on-failed-acquire.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-lock-spurious-acquire-sample-on-failed-acquire.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-lock-spurious-acquire-sample-on-failed-acquire.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-lock-spurious-acquire-sample-on-failed-acquire.yaml
diff --git a/releasenotes/notes/fix-profiling-memalloc-null-alloc-ptr-9a0f27f69acb56fc.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-memalloc-null-alloc-ptr-9a0f27f69acb56fc.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-memalloc-null-alloc-ptr-9a0f27f69acb56fc.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-memalloc-null-alloc-ptr-9a0f27f69acb56fc.yaml
diff --git a/releasenotes/notes/fix-profiling-memalloc-segfault-5593ad951405a75d.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-memalloc-segfault-5593ad951405a75d.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-memalloc-segfault-5593ad951405a75d.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-memalloc-segfault-5593ad951405a75d.yaml
diff --git a/releasenotes/notes/fix-profiling-native-mutices-62440b5a3d9d6c4b.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-native-mutices-62440b5a3d9d6c4b.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-native-mutices-62440b5a3d9d6c4b.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-native-mutices-62440b5a3d9d6c4b.yaml
diff --git a/releasenotes/notes/fix-profiling-sample-pool-stale-data-2fc2c1345d6e6f43.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-sample-pool-stale-data-2fc2c1345d6e6f43.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-sample-pool-stale-data-2fc2c1345d6e6f43.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-sample-pool-stale-data-2fc2c1345d6e6f43.yaml
diff --git a/releasenotes/notes/fix-profiling-stack-event-data-dc50c8e7663718cc.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-stack-event-data-dc50c8e7663718cc.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-stack-event-data-dc50c8e7663718cc.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-stack-event-data-dc50c8e7663718cc.yaml
diff --git a/releasenotes/notes/fix-profiling-thread-lock-d18f104a9f479be3.yaml b/dd-trace-py/releasenotes/notes/fix-profiling-thread-lock-d18f104a9f479be3.yaml
similarity index 100%
rename from releasenotes/notes/fix-profiling-thread-lock-d18f104a9f479be3.yaml
rename to dd-trace-py/releasenotes/notes/fix-profiling-thread-lock-d18f104a9f479be3.yaml
diff --git a/releasenotes/notes/fix-protocol-check-62ad7d096b1f36a9.yaml b/dd-trace-py/releasenotes/notes/fix-protocol-check-62ad7d096b1f36a9.yaml
similarity index 100%
rename from releasenotes/notes/fix-protocol-check-62ad7d096b1f36a9.yaml
rename to dd-trace-py/releasenotes/notes/fix-protocol-check-62ad7d096b1f36a9.yaml
diff --git a/releasenotes/notes/fix-psutil-macos-0cd7d0f93b34e3e4.yaml b/dd-trace-py/releasenotes/notes/fix-psutil-macos-0cd7d0f93b34e3e4.yaml
similarity index 100%
rename from releasenotes/notes/fix-psutil-macos-0cd7d0f93b34e3e4.yaml
rename to dd-trace-py/releasenotes/notes/fix-psutil-macos-0cd7d0f93b34e3e4.yaml
diff --git a/releasenotes/notes/fix-psycopg-async-iteration-d48a62f8aa597457.yaml b/dd-trace-py/releasenotes/notes/fix-psycopg-async-iteration-d48a62f8aa597457.yaml
similarity index 100%
rename from releasenotes/notes/fix-psycopg-async-iteration-d48a62f8aa597457.yaml
rename to dd-trace-py/releasenotes/notes/fix-psycopg-async-iteration-d48a62f8aa597457.yaml
diff --git a/releasenotes/notes/fix-psycopg-parse-dsn-f645bc9f056305c7.yaml b/dd-trace-py/releasenotes/notes/fix-psycopg-parse-dsn-f645bc9f056305c7.yaml
similarity index 100%
rename from releasenotes/notes/fix-psycopg-parse-dsn-f645bc9f056305c7.yaml
rename to dd-trace-py/releasenotes/notes/fix-psycopg-parse-dsn-f645bc9f056305c7.yaml
diff --git a/releasenotes/notes/fix-psycopg3-patched-connection-bug-ecdf7204467b0848.yaml b/dd-trace-py/releasenotes/notes/fix-psycopg3-patched-connection-bug-ecdf7204467b0848.yaml
similarity index 100%
rename from releasenotes/notes/fix-psycopg3-patched-connection-bug-ecdf7204467b0848.yaml
rename to dd-trace-py/releasenotes/notes/fix-psycopg3-patched-connection-bug-ecdf7204467b0848.yaml
diff --git a/releasenotes/notes/fix-py311-closure-wrapping-fed33b584d65a844.yaml b/dd-trace-py/releasenotes/notes/fix-py311-closure-wrapping-fed33b584d65a844.yaml
similarity index 100%
rename from releasenotes/notes/fix-py311-closure-wrapping-fed33b584d65a844.yaml
rename to dd-trace-py/releasenotes/notes/fix-py311-closure-wrapping-fed33b584d65a844.yaml
diff --git a/releasenotes/notes/fix-py311-wrapping-50ad976978cc315e.yaml b/dd-trace-py/releasenotes/notes/fix-py311-wrapping-50ad976978cc315e.yaml
similarity index 100%
rename from releasenotes/notes/fix-py311-wrapping-50ad976978cc315e.yaml
rename to dd-trace-py/releasenotes/notes/fix-py311-wrapping-50ad976978cc315e.yaml
diff --git a/releasenotes/notes/fix-pydantic-tool-tracing-16708c11c27f8a92.yaml b/dd-trace-py/releasenotes/notes/fix-pydantic-tool-tracing-16708c11c27f8a92.yaml
similarity index 100%
rename from releasenotes/notes/fix-pydantic-tool-tracing-16708c11c27f8a92.yaml
rename to dd-trace-py/releasenotes/notes/fix-pydantic-tool-tracing-16708c11c27f8a92.yaml
diff --git a/releasenotes/notes/fix-pylibmc-none-span-bug-473849fca820162d.yaml b/dd-trace-py/releasenotes/notes/fix-pylibmc-none-span-bug-473849fca820162d.yaml
similarity index 100%
rename from releasenotes/notes/fix-pylibmc-none-span-bug-473849fca820162d.yaml
rename to dd-trace-py/releasenotes/notes/fix-pylibmc-none-span-bug-473849fca820162d.yaml
diff --git a/releasenotes/notes/fix-pymongo-missing-traces-4-12-967a8bba1187.yaml b/dd-trace-py/releasenotes/notes/fix-pymongo-missing-traces-4-12-967a8bba1187.yaml
similarity index 100%
rename from releasenotes/notes/fix-pymongo-missing-traces-4-12-967a8bba1187.yaml
rename to dd-trace-py/releasenotes/notes/fix-pymongo-missing-traces-4-12-967a8bba1187.yaml
diff --git a/releasenotes/notes/fix-pymongo-mongodb-query-span-tag-for-agent-230c3205d683ffd2.yaml b/dd-trace-py/releasenotes/notes/fix-pymongo-mongodb-query-span-tag-for-agent-230c3205d683ffd2.yaml
similarity index 100%
rename from releasenotes/notes/fix-pymongo-mongodb-query-span-tag-for-agent-230c3205d683ffd2.yaml
rename to dd-trace-py/releasenotes/notes/fix-pymongo-mongodb-query-span-tag-for-agent-230c3205d683ffd2.yaml
diff --git a/releasenotes/notes/fix-pyston-memalloc-e8f4002e5c11df8c.yaml b/dd-trace-py/releasenotes/notes/fix-pyston-memalloc-e8f4002e5c11df8c.yaml
similarity index 100%
rename from releasenotes/notes/fix-pyston-memalloc-e8f4002e5c11df8c.yaml
rename to dd-trace-py/releasenotes/notes/fix-pyston-memalloc-e8f4002e5c11df8c.yaml
diff --git a/releasenotes/notes/fix-pytest-always-create-module-971348889d0cdf36.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-always-create-module-971348889d0cdf36.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-always-create-module-971348889d0cdf36.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-always-create-module-971348889d0cdf36.yaml
diff --git a/releasenotes/notes/fix-pytest-bdd-6-88421928af50dc42.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-bdd-6-88421928af50dc42.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-bdd-6-88421928af50dc42.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-bdd-6-88421928af50dc42.yaml
diff --git a/releasenotes/notes/fix-pytest-bdd-plugin-6.1.x-a51a78661a9a434e.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-bdd-plugin-6.1.x-a51a78661a9a434e.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-bdd-plugin-6.1.x-a51a78661a9a434e.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-bdd-plugin-6.1.x-a51a78661a9a434e.yaml
diff --git a/releasenotes/notes/fix-pytest-doctest-4918b724f736ef88.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-doctest-4918b724f736ef88.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-doctest-4918b724f736ef88.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-doctest-4918b724f736ef88.yaml
diff --git a/releasenotes/notes/fix-pytest-inferred-service-naming-5ba12e991d040a1b.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-inferred-service-naming-5ba12e991d040a1b.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-inferred-service-naming-5ba12e991d040a1b.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-inferred-service-naming-5ba12e991d040a1b.yaml
diff --git a/releasenotes/notes/fix-pytest-parameterize-encoding-b8711d2d7dbb282a.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-parameterize-encoding-b8711d2d7dbb282a.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-parameterize-encoding-b8711d2d7dbb282a.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-parameterize-encoding-b8711d2d7dbb282a.yaml
diff --git a/releasenotes/notes/fix-pytest-parameterized-606fbc3a574c67c6.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-parameterized-606fbc3a574c67c6.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-parameterized-606fbc3a574c67c6.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-parameterized-606fbc3a574c67c6.yaml
diff --git a/releasenotes/notes/fix-pytest-plugin-disable-module-cloning-b86dce8ee693e02d.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-plugin-disable-module-cloning-b86dce8ee693e02d.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-plugin-disable-module-cloning-b86dce8ee693e02d.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-plugin-disable-module-cloning-b86dce8ee693e02d.yaml
diff --git a/releasenotes/notes/fix-pytest-skip-fail-information-if-testcase-used-f8ccd7bf90615d78.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-skip-fail-information-if-testcase-used-f8ccd7bf90615d78.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-skip-fail-information-if-testcase-used-f8ccd7bf90615d78.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-skip-fail-information-if-testcase-used-f8ccd7bf90615d78.yaml
diff --git a/releasenotes/notes/fix-pytest-test-parameter-encoding-90f3806f19438ead.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-test-parameter-encoding-90f3806f19438ead.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-test-parameter-encoding-90f3806f19438ead.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-test-parameter-encoding-90f3806f19438ead.yaml
diff --git a/releasenotes/notes/fix-pytest-test-status-dcdef93ac5b988d7.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-test-status-dcdef93ac5b988d7.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-test-status-dcdef93ac5b988d7.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-test-status-dcdef93ac5b988d7.yaml
diff --git a/releasenotes/notes/fix-pytest-xfail-skip-module-20028429433b47d4.yaml b/dd-trace-py/releasenotes/notes/fix-pytest-xfail-skip-module-20028429433b47d4.yaml
similarity index 100%
rename from releasenotes/notes/fix-pytest-xfail-skip-module-20028429433b47d4.yaml
rename to dd-trace-py/releasenotes/notes/fix-pytest-xfail-skip-module-20028429433b47d4.yaml
diff --git a/releasenotes/notes/fix-rasp-stack-trace-crop-813dfa157c359846.yaml b/dd-trace-py/releasenotes/notes/fix-rasp-stack-trace-crop-813dfa157c359846.yaml
similarity index 100%
rename from releasenotes/notes/fix-rasp-stack-trace-crop-813dfa157c359846.yaml
rename to dd-trace-py/releasenotes/notes/fix-rasp-stack-trace-crop-813dfa157c359846.yaml
diff --git a/releasenotes/notes/fix-rate-limiter-borrow-263dedb6e46ba74e.yaml b/dd-trace-py/releasenotes/notes/fix-rate-limiter-borrow-263dedb6e46ba74e.yaml
similarity index 100%
rename from releasenotes/notes/fix-rate-limiter-borrow-263dedb6e46ba74e.yaml
rename to dd-trace-py/releasenotes/notes/fix-rate-limiter-borrow-263dedb6e46ba74e.yaml
diff --git a/releasenotes/notes/fix-rate_limiter-second-hit-reset-53948313b375d1c6.yaml b/dd-trace-py/releasenotes/notes/fix-rate_limiter-second-hit-reset-53948313b375d1c6.yaml
similarity index 100%
rename from releasenotes/notes/fix-rate_limiter-second-hit-reset-53948313b375d1c6.yaml
rename to dd-trace-py/releasenotes/notes/fix-rate_limiter-second-hit-reset-53948313b375d1c6.yaml
diff --git a/releasenotes/notes/fix-ray-no-error-on-child-spans-beb6239ab269b0d9.yaml b/dd-trace-py/releasenotes/notes/fix-ray-no-error-on-child-spans-beb6239ab269b0d9.yaml
similarity index 100%
rename from releasenotes/notes/fix-ray-no-error-on-child-spans-beb6239ab269b0d9.yaml
rename to dd-trace-py/releasenotes/notes/fix-ray-no-error-on-child-spans-beb6239ab269b0d9.yaml
diff --git a/releasenotes/notes/fix-ray-none-metadata-af38b39b38d918b4.yaml b/dd-trace-py/releasenotes/notes/fix-ray-none-metadata-af38b39b38d918b4.yaml
similarity index 100%
rename from releasenotes/notes/fix-ray-none-metadata-af38b39b38d918b4.yaml
rename to dd-trace-py/releasenotes/notes/fix-ray-none-metadata-af38b39b38d918b4.yaml
diff --git a/releasenotes/notes/fix-ray-none-runtime-068a35befe0d2533.yaml b/dd-trace-py/releasenotes/notes/fix-ray-none-runtime-068a35befe0d2533.yaml
similarity index 100%
rename from releasenotes/notes/fix-ray-none-runtime-068a35befe0d2533.yaml
rename to dd-trace-py/releasenotes/notes/fix-ray-none-runtime-068a35befe0d2533.yaml
diff --git a/releasenotes/notes/fix-ray-ressource-name-d97bda5a3e62eabe.yaml b/dd-trace-py/releasenotes/notes/fix-ray-ressource-name-d97bda5a3e62eabe.yaml
similarity index 100%
rename from releasenotes/notes/fix-ray-ressource-name-d97bda5a3e62eabe.yaml
rename to dd-trace-py/releasenotes/notes/fix-ray-ressource-name-d97bda5a3e62eabe.yaml
diff --git a/releasenotes/notes/fix-ray-without-init-5e21fcf5117afd0c.yaml b/dd-trace-py/releasenotes/notes/fix-ray-without-init-5e21fcf5117afd0c.yaml
similarity index 100%
rename from releasenotes/notes/fix-ray-without-init-5e21fcf5117afd0c.yaml
rename to dd-trace-py/releasenotes/notes/fix-ray-without-init-5e21fcf5117afd0c.yaml
diff --git a/releasenotes/notes/fix-rc-enable-co-db94fa6e88f1fc46.yaml b/dd-trace-py/releasenotes/notes/fix-rc-enable-co-db94fa6e88f1fc46.yaml
similarity index 100%
rename from releasenotes/notes/fix-rc-enable-co-db94fa6e88f1fc46.yaml
rename to dd-trace-py/releasenotes/notes/fix-rc-enable-co-db94fa6e88f1fc46.yaml
diff --git a/releasenotes/notes/fix-rc-git-metadata-in-request-bc95d730be17831a.yaml b/dd-trace-py/releasenotes/notes/fix-rc-git-metadata-in-request-bc95d730be17831a.yaml
similarity index 100%
rename from releasenotes/notes/fix-rc-git-metadata-in-request-bc95d730be17831a.yaml
rename to dd-trace-py/releasenotes/notes/fix-rc-git-metadata-in-request-bc95d730be17831a.yaml
diff --git a/releasenotes/notes/fix-rc-reset-flow-82c6bc51d1e6724a.yaml b/dd-trace-py/releasenotes/notes/fix-rc-reset-flow-82c6bc51d1e6724a.yaml
similarity index 100%
rename from releasenotes/notes/fix-rc-reset-flow-82c6bc51d1e6724a.yaml
rename to dd-trace-py/releasenotes/notes/fix-rc-reset-flow-82c6bc51d1e6724a.yaml
diff --git a/releasenotes/notes/fix-rc-warning-log-agent-config-ca76bd948e1355b6.yaml b/dd-trace-py/releasenotes/notes/fix-rc-warning-log-agent-config-ca76bd948e1355b6.yaml
similarity index 100%
rename from releasenotes/notes/fix-rc-warning-log-agent-config-ca76bd948e1355b6.yaml
rename to dd-trace-py/releasenotes/notes/fix-rc-warning-log-agent-config-ca76bd948e1355b6.yaml
diff --git a/releasenotes/notes/fix-rcm-soft-forksafe-7e6d6b59495e097c.yaml b/dd-trace-py/releasenotes/notes/fix-rcm-soft-forksafe-7e6d6b59495e097c.yaml
similarity index 100%
rename from releasenotes/notes/fix-rcm-soft-forksafe-7e6d6b59495e097c.yaml
rename to dd-trace-py/releasenotes/notes/fix-rcm-soft-forksafe-7e6d6b59495e097c.yaml
diff --git a/releasenotes/notes/fix-re-unload-8770a3d497234243.yaml b/dd-trace-py/releasenotes/notes/fix-re-unload-8770a3d497234243.yaml
similarity index 100%
rename from releasenotes/notes/fix-re-unload-8770a3d497234243.yaml
rename to dd-trace-py/releasenotes/notes/fix-re-unload-8770a3d497234243.yaml
diff --git a/releasenotes/notes/fix-redis-catch-cancelled-error-c39431f98276a0b0.yaml b/dd-trace-py/releasenotes/notes/fix-redis-catch-cancelled-error-c39431f98276a0b0.yaml
similarity index 100%
rename from releasenotes/notes/fix-redis-catch-cancelled-error-c39431f98276a0b0.yaml
rename to dd-trace-py/releasenotes/notes/fix-redis-catch-cancelled-error-c39431f98276a0b0.yaml
diff --git a/releasenotes/notes/fix-redis-command-stack-2ef2be7f28c2e9ee.yaml b/dd-trace-py/releasenotes/notes/fix-redis-command-stack-2ef2be7f28c2e9ee.yaml
similarity index 100%
rename from releasenotes/notes/fix-redis-command-stack-2ef2be7f28c2e9ee.yaml
rename to dd-trace-py/releasenotes/notes/fix-redis-command-stack-2ef2be7f28c2e9ee.yaml
diff --git a/releasenotes/notes/fix-redis-cross-import-40590b3d41f96dcc.yaml b/dd-trace-py/releasenotes/notes/fix-redis-cross-import-40590b3d41f96dcc.yaml
similarity index 100%
rename from releasenotes/notes/fix-redis-cross-import-40590b3d41f96dcc.yaml
rename to dd-trace-py/releasenotes/notes/fix-redis-cross-import-40590b3d41f96dcc.yaml
diff --git a/releasenotes/notes/fix-redis-exception-handling-32964d6cc673c7bc.yaml b/dd-trace-py/releasenotes/notes/fix-redis-exception-handling-32964d6cc673c7bc.yaml
similarity index 100%
rename from releasenotes/notes/fix-redis-exception-handling-32964d6cc673c7bc.yaml
rename to dd-trace-py/releasenotes/notes/fix-redis-exception-handling-32964d6cc673c7bc.yaml
diff --git a/releasenotes/notes/fix-remoteconfig-importerror-fallback-5f73ed40f3c6a8ab.yaml b/dd-trace-py/releasenotes/notes/fix-remoteconfig-importerror-fallback-5f73ed40f3c6a8ab.yaml
similarity index 100%
rename from releasenotes/notes/fix-remoteconfig-importerror-fallback-5f73ed40f3c6a8ab.yaml
rename to dd-trace-py/releasenotes/notes/fix-remoteconfig-importerror-fallback-5f73ed40f3c6a8ab.yaml
diff --git a/releasenotes/notes/fix-remove-w3c-tracecontext-whitespace-76e3940e11de1745.yaml b/dd-trace-py/releasenotes/notes/fix-remove-w3c-tracecontext-whitespace-76e3940e11de1745.yaml
similarity index 100%
rename from releasenotes/notes/fix-remove-w3c-tracecontext-whitespace-76e3940e11de1745.yaml
rename to dd-trace-py/releasenotes/notes/fix-remove-w3c-tracecontext-whitespace-76e3940e11de1745.yaml
diff --git a/releasenotes/notes/fix-requests-propagation-apm-opt-out-bee8409e28cbe48f.yaml b/dd-trace-py/releasenotes/notes/fix-requests-propagation-apm-opt-out-bee8409e28cbe48f.yaml
similarity index 100%
rename from releasenotes/notes/fix-requests-propagation-apm-opt-out-bee8409e28cbe48f.yaml
rename to dd-trace-py/releasenotes/notes/fix-requests-propagation-apm-opt-out-bee8409e28cbe48f.yaml
diff --git a/releasenotes/notes/fix-resource-name-when-fastapi-starlette-use-subapps-95ac82b038e6cbf9.yaml b/dd-trace-py/releasenotes/notes/fix-resource-name-when-fastapi-starlette-use-subapps-95ac82b038e6cbf9.yaml
similarity index 100%
rename from releasenotes/notes/fix-resource-name-when-fastapi-starlette-use-subapps-95ac82b038e6cbf9.yaml
rename to dd-trace-py/releasenotes/notes/fix-resource-name-when-fastapi-starlette-use-subapps-95ac82b038e6cbf9.yaml
diff --git a/releasenotes/notes/fix-responses-stream-84dfe439b0d9f635.yaml b/dd-trace-py/releasenotes/notes/fix-responses-stream-84dfe439b0d9f635.yaml
similarity index 100%
rename from releasenotes/notes/fix-responses-stream-84dfe439b0d9f635.yaml
rename to dd-trace-py/releasenotes/notes/fix-responses-stream-84dfe439b0d9f635.yaml
diff --git a/releasenotes/notes/fix-revert-rust-rate-limiter-e61ca589aa24105b.yaml b/dd-trace-py/releasenotes/notes/fix-revert-rust-rate-limiter-e61ca589aa24105b.yaml
similarity index 100%
rename from releasenotes/notes/fix-revert-rust-rate-limiter-e61ca589aa24105b.yaml
rename to dd-trace-py/releasenotes/notes/fix-revert-rust-rate-limiter-e61ca589aa24105b.yaml
diff --git a/releasenotes/notes/fix-rq-job-id-compat-4ede9da7ed63e754.yaml b/dd-trace-py/releasenotes/notes/fix-rq-job-id-compat-4ede9da7ed63e754.yaml
similarity index 100%
rename from releasenotes/notes/fix-rq-job-id-compat-4ede9da7ed63e754.yaml
rename to dd-trace-py/releasenotes/notes/fix-rq-job-id-compat-4ede9da7ed63e754.yaml
diff --git a/releasenotes/notes/fix-runtime-default-interval-e3afb49f45296877.yaml b/dd-trace-py/releasenotes/notes/fix-runtime-default-interval-e3afb49f45296877.yaml
similarity index 100%
rename from releasenotes/notes/fix-runtime-default-interval-e3afb49f45296877.yaml
rename to dd-trace-py/releasenotes/notes/fix-runtime-default-interval-e3afb49f45296877.yaml
diff --git a/releasenotes/notes/fix-runtime-error-in-meta-propagate-7621b24f5492df1e.yaml b/dd-trace-py/releasenotes/notes/fix-runtime-error-in-meta-propagate-7621b24f5492df1e.yaml
similarity index 100%
rename from releasenotes/notes/fix-runtime-error-in-meta-propagate-7621b24f5492df1e.yaml
rename to dd-trace-py/releasenotes/notes/fix-runtime-error-in-meta-propagate-7621b24f5492df1e.yaml
diff --git a/releasenotes/notes/fix-runtime-metrics-procfs-7a5487d3606a65b0.yaml b/dd-trace-py/releasenotes/notes/fix-runtime-metrics-procfs-7a5487d3606a65b0.yaml
similarity index 100%
rename from releasenotes/notes/fix-runtime-metrics-procfs-7a5487d3606a65b0.yaml
rename to dd-trace-py/releasenotes/notes/fix-runtime-metrics-procfs-7a5487d3606a65b0.yaml
diff --git a/releasenotes/notes/fix-runtimeerror-on-get-metas-to-propagate-25f9c44ac4137fb9.yaml b/dd-trace-py/releasenotes/notes/fix-runtimeerror-on-get-metas-to-propagate-25f9c44ac4137fb9.yaml
similarity index 100%
rename from releasenotes/notes/fix-runtimeerror-on-get-metas-to-propagate-25f9c44ac4137fb9.yaml
rename to dd-trace-py/releasenotes/notes/fix-runtimeerror-on-get-metas-to-propagate-25f9c44ac4137fb9.yaml
diff --git a/releasenotes/notes/fix-sampler_sample_rate_bug-b93ffc6036982ba8.yaml b/dd-trace-py/releasenotes/notes/fix-sampler_sample_rate_bug-b93ffc6036982ba8.yaml
similarity index 100%
rename from releasenotes/notes/fix-sampler_sample_rate_bug-b93ffc6036982ba8.yaml
rename to dd-trace-py/releasenotes/notes/fix-sampler_sample_rate_bug-b93ffc6036982ba8.yaml
diff --git a/releasenotes/notes/fix-sampling-in-spanlink-dt-6eb088879f75cdba.yaml b/dd-trace-py/releasenotes/notes/fix-sampling-in-spanlink-dt-6eb088879f75cdba.yaml
similarity index 100%
rename from releasenotes/notes/fix-sampling-in-spanlink-dt-6eb088879f75cdba.yaml
rename to dd-trace-py/releasenotes/notes/fix-sampling-in-spanlink-dt-6eb088879f75cdba.yaml
diff --git a/releasenotes/notes/fix-sampling-on-tags-17b90f67a74b91e9.yaml b/dd-trace-py/releasenotes/notes/fix-sampling-on-tags-17b90f67a74b91e9.yaml
similarity index 100%
rename from releasenotes/notes/fix-sampling-on-tags-17b90f67a74b91e9.yaml
rename to dd-trace-py/releasenotes/notes/fix-sampling-on-tags-17b90f67a74b91e9.yaml
diff --git a/releasenotes/notes/fix-sampling-rule-service-name-null-8f92890710897305.yaml b/dd-trace-py/releasenotes/notes/fix-sampling-rule-service-name-null-8f92890710897305.yaml
similarity index 100%
rename from releasenotes/notes/fix-sampling-rule-service-name-null-8f92890710897305.yaml
rename to dd-trace-py/releasenotes/notes/fix-sampling-rule-service-name-null-8f92890710897305.yaml
diff --git a/releasenotes/notes/fix-sanic-21-2d24b817e010ed84.yaml b/dd-trace-py/releasenotes/notes/fix-sanic-21-2d24b817e010ed84.yaml
similarity index 100%
rename from releasenotes/notes/fix-sanic-21-2d24b817e010ed84.yaml
rename to dd-trace-py/releasenotes/notes/fix-sanic-21-2d24b817e010ed84.yaml
diff --git a/releasenotes/notes/fix-sanic-dont-send-error-traces-on-non-500s-b194927b887ad9d9.yaml b/dd-trace-py/releasenotes/notes/fix-sanic-dont-send-error-traces-on-non-500s-b194927b887ad9d9.yaml
similarity index 100%
rename from releasenotes/notes/fix-sanic-dont-send-error-traces-on-non-500s-b194927b887ad9d9.yaml
rename to dd-trace-py/releasenotes/notes/fix-sanic-dont-send-error-traces-on-non-500s-b194927b887ad9d9.yaml
diff --git a/releasenotes/notes/fix-sanic-non-str-args-4d1b0f506bee3436.yaml b/dd-trace-py/releasenotes/notes/fix-sanic-non-str-args-4d1b0f506bee3436.yaml
similarity index 100%
rename from releasenotes/notes/fix-sanic-non-str-args-4d1b0f506bee3436.yaml
rename to dd-trace-py/releasenotes/notes/fix-sanic-non-str-args-4d1b0f506bee3436.yaml
diff --git a/releasenotes/notes/fix-sanic-resource-name-e9f5b0417f3cda13.yaml b/dd-trace-py/releasenotes/notes/fix-sanic-resource-name-e9f5b0417f3cda13.yaml
similarity index 100%
rename from releasenotes/notes/fix-sanic-resource-name-e9f5b0417f3cda13.yaml
rename to dd-trace-py/releasenotes/notes/fix-sanic-resource-name-e9f5b0417f3cda13.yaml
diff --git a/releasenotes/notes/fix-serverless-service-representation-b1f81fe0553a7a45.yaml b/dd-trace-py/releasenotes/notes/fix-serverless-service-representation-b1f81fe0553a7a45.yaml
similarity index 100%
rename from releasenotes/notes/fix-serverless-service-representation-b1f81fe0553a7a45.yaml
rename to dd-trace-py/releasenotes/notes/fix-serverless-service-representation-b1f81fe0553a7a45.yaml
diff --git a/releasenotes/notes/fix-service-name-computation-2add40f7ef3ef2bd.yaml b/dd-trace-py/releasenotes/notes/fix-service-name-computation-2add40f7ef3ef2bd.yaml
similarity index 100%
rename from releasenotes/notes/fix-service-name-computation-2add40f7ef3ef2bd.yaml
rename to dd-trace-py/releasenotes/notes/fix-service-name-computation-2add40f7ef3ef2bd.yaml
diff --git a/releasenotes/notes/fix-setuptools-license-c061c22889799c6c.yaml b/dd-trace-py/releasenotes/notes/fix-setuptools-license-c061c22889799c6c.yaml
similarity index 100%
rename from releasenotes/notes/fix-setuptools-license-c061c22889799c6c.yaml
rename to dd-trace-py/releasenotes/notes/fix-setuptools-license-c061c22889799c6c.yaml
diff --git a/releasenotes/notes/fix-shutdown-wrap-and-context-a25f3fbefb0d77a9.yaml b/dd-trace-py/releasenotes/notes/fix-shutdown-wrap-and-context-a25f3fbefb0d77a9.yaml
similarity index 100%
rename from releasenotes/notes/fix-shutdown-wrap-and-context-a25f3fbefb0d77a9.yaml
rename to dd-trace-py/releasenotes/notes/fix-shutdown-wrap-and-context-a25f3fbefb0d77a9.yaml
diff --git a/releasenotes/notes/fix-span-cyclic-gc-leak-1786a40d86ea8e6a.yaml b/dd-trace-py/releasenotes/notes/fix-span-cyclic-gc-leak-1786a40d86ea8e6a.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-cyclic-gc-leak-1786a40d86ea8e6a.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-cyclic-gc-leak-1786a40d86ea8e6a.yaml
diff --git a/releasenotes/notes/fix-span-decoration-probe-timing-dc4ce0664fa645b9.yaml b/dd-trace-py/releasenotes/notes/fix-span-decoration-probe-timing-dc4ce0664fa645b9.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-decoration-probe-timing-dc4ce0664fa645b9.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-decoration-probe-timing-dc4ce0664fa645b9.yaml
diff --git a/releasenotes/notes/fix-span-encoding-bytes-5c285cf9e55db509.yaml b/dd-trace-py/releasenotes/notes/fix-span-encoding-bytes-5c285cf9e55db509.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-encoding-bytes-5c285cf9e55db509.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-encoding-bytes-5c285cf9e55db509.yaml
diff --git a/releasenotes/notes/fix-span-finish-signature-b0c1073b56c3b559.yaml b/dd-trace-py/releasenotes/notes/fix-span-finish-signature-b0c1073b56c3b559.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-finish-signature-b0c1073b56c3b559.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-finish-signature-b0c1073b56c3b559.yaml
diff --git a/releasenotes/notes/fix-span-link-ids-e8161faabb39f5ee.yaml b/dd-trace-py/releasenotes/notes/fix-span-link-ids-e8161faabb39f5ee.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-link-ids-e8161faabb39f5ee.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-link-ids-e8161faabb39f5ee.yaml
diff --git a/releasenotes/notes/fix-span-link-trace-id-encoding-errror-abe142ac4a6c5fc3.yaml b/dd-trace-py/releasenotes/notes/fix-span-link-trace-id-encoding-errror-abe142ac4a6c5fc3.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-link-trace-id-encoding-errror-abe142ac4a6c5fc3.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-link-trace-id-encoding-errror-abe142ac4a6c5fc3.yaml
diff --git a/releasenotes/notes/fix-span-pointer-deserialized-dynamodb-requests-39b1235a102dab7c.yaml b/dd-trace-py/releasenotes/notes/fix-span-pointer-deserialized-dynamodb-requests-39b1235a102dab7c.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-pointer-deserialized-dynamodb-requests-39b1235a102dab7c.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-pointer-deserialized-dynamodb-requests-39b1235a102dab7c.yaml
diff --git a/releasenotes/notes/fix-span-type-web-20122b5c57c50341.yaml b/dd-trace-py/releasenotes/notes/fix-span-type-web-20122b5c57c50341.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-type-web-20122b5c57c50341.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-type-web-20122b5c57c50341.yaml
diff --git a/releasenotes/notes/fix-span-unnecessary-gc.yaml b/dd-trace-py/releasenotes/notes/fix-span-unnecessary-gc.yaml
similarity index 100%
rename from releasenotes/notes/fix-span-unnecessary-gc.yaml
rename to dd-trace-py/releasenotes/notes/fix-span-unnecessary-gc.yaml
diff --git a/releasenotes/notes/fix-spanpointer-repr-565ebb8e6679ebde.yaml b/dd-trace-py/releasenotes/notes/fix-spanpointer-repr-565ebb8e6679ebde.yaml
similarity index 100%
rename from releasenotes/notes/fix-spanpointer-repr-565ebb8e6679ebde.yaml
rename to dd-trace-py/releasenotes/notes/fix-spanpointer-repr-565ebb8e6679ebde.yaml
diff --git a/releasenotes/notes/fix-split-by-domain-requests-978e1f51a5b3f77d.yaml b/dd-trace-py/releasenotes/notes/fix-split-by-domain-requests-978e1f51a5b3f77d.yaml
similarity index 100%
rename from releasenotes/notes/fix-split-by-domain-requests-978e1f51a5b3f77d.yaml
rename to dd-trace-py/releasenotes/notes/fix-split-by-domain-requests-978e1f51a5b3f77d.yaml
diff --git a/releasenotes/notes/fix-sqlite3-backup-bf92c698567237b9.yaml b/dd-trace-py/releasenotes/notes/fix-sqlite3-backup-bf92c698567237b9.yaml
similarity index 100%
rename from releasenotes/notes/fix-sqlite3-backup-bf92c698567237b9.yaml
rename to dd-trace-py/releasenotes/notes/fix-sqlite3-backup-bf92c698567237b9.yaml
diff --git a/releasenotes/notes/fix-ssi-telemetry-events-a0a01ad0b6ef63b5.yaml b/dd-trace-py/releasenotes/notes/fix-ssi-telemetry-events-a0a01ad0b6ef63b5.yaml
similarity index 100%
rename from releasenotes/notes/fix-ssi-telemetry-events-a0a01ad0b6ef63b5.yaml
rename to dd-trace-py/releasenotes/notes/fix-ssi-telemetry-events-a0a01ad0b6ef63b5.yaml
diff --git a/releasenotes/notes/fix-stack-profiler-string-table-crash-cf4e7a9ec1af48bd.yaml b/dd-trace-py/releasenotes/notes/fix-stack-profiler-string-table-crash-cf4e7a9ec1af48bd.yaml
similarity index 100%
rename from releasenotes/notes/fix-stack-profiler-string-table-crash-cf4e7a9ec1af48bd.yaml
rename to dd-trace-py/releasenotes/notes/fix-stack-profiler-string-table-crash-cf4e7a9ec1af48bd.yaml
diff --git a/releasenotes/notes/fix-stack-v2-task-encoding-447f39478749027c.yaml b/dd-trace-py/releasenotes/notes/fix-stack-v2-task-encoding-447f39478749027c.yaml
similarity index 100%
rename from releasenotes/notes/fix-stack-v2-task-encoding-447f39478749027c.yaml
rename to dd-trace-py/releasenotes/notes/fix-stack-v2-task-encoding-447f39478749027c.yaml
diff --git a/releasenotes/notes/fix-stackv2-musl-stack-size-7c265de9939ce2ce.yaml b/dd-trace-py/releasenotes/notes/fix-stackv2-musl-stack-size-7c265de9939ce2ce.yaml
similarity index 100%
rename from releasenotes/notes/fix-stackv2-musl-stack-size-7c265de9939ce2ce.yaml
rename to dd-trace-py/releasenotes/notes/fix-stackv2-musl-stack-size-7c265de9939ce2ce.yaml
diff --git a/releasenotes/notes/fix-starlette-background-67d4822042028d6b.yaml b/dd-trace-py/releasenotes/notes/fix-starlette-background-67d4822042028d6b.yaml
similarity index 100%
rename from releasenotes/notes/fix-starlette-background-67d4822042028d6b.yaml
rename to dd-trace-py/releasenotes/notes/fix-starlette-background-67d4822042028d6b.yaml
diff --git a/releasenotes/notes/fix-starlette-fastapi-api-2f72701e2b179f02.yaml b/dd-trace-py/releasenotes/notes/fix-starlette-fastapi-api-2f72701e2b179f02.yaml
similarity index 100%
rename from releasenotes/notes/fix-starlette-fastapi-api-2f72701e2b179f02.yaml
rename to dd-trace-py/releasenotes/notes/fix-starlette-fastapi-api-2f72701e2b179f02.yaml
diff --git a/releasenotes/notes/fix-starlette-unpatch-24829144874afc6d.yaml b/dd-trace-py/releasenotes/notes/fix-starlette-unpatch-24829144874afc6d.yaml
similarity index 100%
rename from releasenotes/notes/fix-starlette-unpatch-24829144874afc6d.yaml
rename to dd-trace-py/releasenotes/notes/fix-starlette-unpatch-24829144874afc6d.yaml
diff --git a/releasenotes/notes/fix-stream-response-django-cd92556cc2a082bb.yaml b/dd-trace-py/releasenotes/notes/fix-stream-response-django-cd92556cc2a082bb.yaml
similarity index 100%
rename from releasenotes/notes/fix-stream-response-django-cd92556cc2a082bb.yaml
rename to dd-trace-py/releasenotes/notes/fix-stream-response-django-cd92556cc2a082bb.yaml
diff --git a/releasenotes/notes/fix-subprocess-debug-logging-d6eb35359abdbda5.yaml b/dd-trace-py/releasenotes/notes/fix-subprocess-debug-logging-d6eb35359abdbda5.yaml
similarity index 100%
rename from releasenotes/notes/fix-subprocess-debug-logging-d6eb35359abdbda5.yaml
rename to dd-trace-py/releasenotes/notes/fix-subprocess-debug-logging-d6eb35359abdbda5.yaml
diff --git a/releasenotes/notes/fix-subprocess-error-c90edf09a8ca57f3.yaml b/dd-trace-py/releasenotes/notes/fix-subprocess-error-c90edf09a8ca57f3.yaml
similarity index 100%
rename from releasenotes/notes/fix-subprocess-error-c90edf09a8ca57f3.yaml
rename to dd-trace-py/releasenotes/notes/fix-subprocess-error-c90edf09a8ca57f3.yaml
diff --git a/releasenotes/notes/fix-svc-auto-process-tag-attribution-0ca80bff847d2be1.yaml b/dd-trace-py/releasenotes/notes/fix-svc-auto-process-tag-attribution-0ca80bff847d2be1.yaml
similarity index 100%
rename from releasenotes/notes/fix-svc-auto-process-tag-attribution-0ca80bff847d2be1.yaml
rename to dd-trace-py/releasenotes/notes/fix-svc-auto-process-tag-attribution-0ca80bff847d2be1.yaml
diff --git a/releasenotes/notes/fix-symdb-child-check-f26b630125d6c55d.yaml b/dd-trace-py/releasenotes/notes/fix-symdb-child-check-f26b630125d6c55d.yaml
similarity index 100%
rename from releasenotes/notes/fix-symdb-child-check-f26b630125d6c55d.yaml
rename to dd-trace-py/releasenotes/notes/fix-symdb-child-check-f26b630125d6c55d.yaml
diff --git a/releasenotes/notes/fix-symdb-readonly-crash-dbb650dc62944cd5.yaml b/dd-trace-py/releasenotes/notes/fix-symdb-readonly-crash-dbb650dc62944cd5.yaml
similarity index 100%
rename from releasenotes/notes/fix-symdb-readonly-crash-dbb650dc62944cd5.yaml
rename to dd-trace-py/releasenotes/notes/fix-symdb-readonly-crash-dbb650dc62944cd5.yaml
diff --git a/releasenotes/notes/fix-symdb-uploads-cfff7f4d568ff882.yaml b/dd-trace-py/releasenotes/notes/fix-symdb-uploads-cfff7f4d568ff882.yaml
similarity index 100%
rename from releasenotes/notes/fix-symdb-uploads-cfff7f4d568ff882.yaml
rename to dd-trace-py/releasenotes/notes/fix-symdb-uploads-cfff7f4d568ff882.yaml
diff --git a/releasenotes/notes/fix-task-submission-without-ray-init-ccac8820c43b3505.yaml b/dd-trace-py/releasenotes/notes/fix-task-submission-without-ray-init-ccac8820c43b3505.yaml
similarity index 100%
rename from releasenotes/notes/fix-task-submission-without-ray-init-ccac8820c43b3505.yaml
rename to dd-trace-py/releasenotes/notes/fix-task-submission-without-ray-init-ccac8820c43b3505.yaml
diff --git a/releasenotes/notes/fix-telemetry-import-error-336544027399603d.yaml b/dd-trace-py/releasenotes/notes/fix-telemetry-import-error-336544027399603d.yaml
similarity index 100%
rename from releasenotes/notes/fix-telemetry-import-error-336544027399603d.yaml
rename to dd-trace-py/releasenotes/notes/fix-telemetry-import-error-336544027399603d.yaml
diff --git a/releasenotes/notes/fix-telemetry-platform-libc-ver-call-8872bde91bcc8765.yaml b/dd-trace-py/releasenotes/notes/fix-telemetry-platform-libc-ver-call-8872bde91bcc8765.yaml
similarity index 100%
rename from releasenotes/notes/fix-telemetry-platform-libc-ver-call-8872bde91bcc8765.yaml
rename to dd-trace-py/releasenotes/notes/fix-telemetry-platform-libc-ver-call-8872bde91bcc8765.yaml
diff --git a/releasenotes/notes/fix-telemetry-writer-initialization-163b1effc09d948f.yaml b/dd-trace-py/releasenotes/notes/fix-telemetry-writer-initialization-163b1effc09d948f.yaml
similarity index 100%
rename from releasenotes/notes/fix-telemetry-writer-initialization-163b1effc09d948f.yaml
rename to dd-trace-py/releasenotes/notes/fix-telemetry-writer-initialization-163b1effc09d948f.yaml
diff --git a/releasenotes/notes/fix-thread-safe-cache-b3ccf646feb364c6.yaml b/dd-trace-py/releasenotes/notes/fix-thread-safe-cache-b3ccf646feb364c6.yaml
similarity index 100%
rename from releasenotes/notes/fix-thread-safe-cache-b3ccf646feb364c6.yaml
rename to dd-trace-py/releasenotes/notes/fix-thread-safe-cache-b3ccf646feb364c6.yaml
diff --git a/releasenotes/notes/fix-threads-shared-stopping-event-f3cc4bfc9114c855.yaml b/dd-trace-py/releasenotes/notes/fix-threads-shared-stopping-event-f3cc4bfc9114c855.yaml
similarity index 100%
rename from releasenotes/notes/fix-threads-shared-stopping-event-f3cc4bfc9114c855.yaml
rename to dd-trace-py/releasenotes/notes/fix-threads-shared-stopping-event-f3cc4bfc9114c855.yaml
diff --git a/releasenotes/notes/fix-token-extraction-0133808742374ef4.yaml b/dd-trace-py/releasenotes/notes/fix-token-extraction-0133808742374ef4.yaml
similarity index 100%
rename from releasenotes/notes/fix-token-extraction-0133808742374ef4.yaml
rename to dd-trace-py/releasenotes/notes/fix-token-extraction-0133808742374ef4.yaml
diff --git a/releasenotes/notes/fix-tool-calling-3d7dc093fa4b04a0.yaml b/dd-trace-py/releasenotes/notes/fix-tool-calling-3d7dc093fa4b04a0.yaml
similarity index 100%
rename from releasenotes/notes/fix-tool-calling-3d7dc093fa4b04a0.yaml
rename to dd-trace-py/releasenotes/notes/fix-tool-calling-3d7dc093fa4b04a0.yaml
diff --git a/releasenotes/notes/fix-tornado-nested-app-route-order-225fe3c3566c9253.yaml b/dd-trace-py/releasenotes/notes/fix-tornado-nested-app-route-order-225fe3c3566c9253.yaml
similarity index 100%
rename from releasenotes/notes/fix-tornado-nested-app-route-order-225fe3c3566c9253.yaml
rename to dd-trace-py/releasenotes/notes/fix-tornado-nested-app-route-order-225fe3c3566c9253.yaml
diff --git a/releasenotes/notes/fix-tornado-set-span-error-2e82f62e94e31791.yaml b/dd-trace-py/releasenotes/notes/fix-tornado-set-span-error-2e82f62e94e31791.yaml
similarity index 100%
rename from releasenotes/notes/fix-tornado-set-span-error-2e82f62e94e31791.yaml
rename to dd-trace-py/releasenotes/notes/fix-tornado-set-span-error-2e82f62e94e31791.yaml
diff --git a/releasenotes/notes/fix-trace-buffer-size-issues-807e63bfd8a3c57f.yaml b/dd-trace-py/releasenotes/notes/fix-trace-buffer-size-issues-807e63bfd8a3c57f.yaml
similarity index 100%
rename from releasenotes/notes/fix-trace-buffer-size-issues-807e63bfd8a3c57f.yaml
rename to dd-trace-py/releasenotes/notes/fix-trace-buffer-size-issues-807e63bfd8a3c57f.yaml
diff --git a/releasenotes/notes/fix-trace-payload-counts-dba81b9fa3ef51b7.yaml b/dd-trace-py/releasenotes/notes/fix-trace-payload-counts-dba81b9fa3ef51b7.yaml
similarity index 100%
rename from releasenotes/notes/fix-trace-payload-counts-dba81b9fa3ef51b7.yaml
rename to dd-trace-py/releasenotes/notes/fix-trace-payload-counts-dba81b9fa3ef51b7.yaml
diff --git a/releasenotes/notes/fix-trace-tag-config-e1bc9c83f066eb51.yaml b/dd-trace-py/releasenotes/notes/fix-trace-tag-config-e1bc9c83f066eb51.yaml
similarity index 100%
rename from releasenotes/notes/fix-trace-tag-config-e1bc9c83f066eb51.yaml
rename to dd-trace-py/releasenotes/notes/fix-trace-tag-config-e1bc9c83f066eb51.yaml
diff --git a/releasenotes/notes/fix-trace_id_lock-profiling-585779e8713144f3.yaml b/dd-trace-py/releasenotes/notes/fix-trace_id_lock-profiling-585779e8713144f3.yaml
similarity index 100%
rename from releasenotes/notes/fix-trace_id_lock-profiling-585779e8713144f3.yaml
rename to dd-trace-py/releasenotes/notes/fix-trace_id_lock-profiling-585779e8713144f3.yaml
diff --git a/releasenotes/notes/fix-traceback-in-span-a9481b15907d9887.yaml b/dd-trace-py/releasenotes/notes/fix-traceback-in-span-a9481b15907d9887.yaml
similarity index 100%
rename from releasenotes/notes/fix-traceback-in-span-a9481b15907d9887.yaml
rename to dd-trace-py/releasenotes/notes/fix-traceback-in-span-a9481b15907d9887.yaml
diff --git a/releasenotes/notes/fix-traceflag-serialization-e9d3e0d6a7c40ef1.yaml b/dd-trace-py/releasenotes/notes/fix-traceflag-serialization-e9d3e0d6a7c40ef1.yaml
similarity index 100%
rename from releasenotes/notes/fix-traceflag-serialization-e9d3e0d6a7c40ef1.yaml
rename to dd-trace-py/releasenotes/notes/fix-traceflag-serialization-e9d3e0d6a7c40ef1.yaml
diff --git a/releasenotes/notes/fix-tracer-flare-default-url-fc1232a153f60b45.yaml b/dd-trace-py/releasenotes/notes/fix-tracer-flare-default-url-fc1232a153f60b45.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracer-flare-default-url-fc1232a153f60b45.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracer-flare-default-url-fc1232a153f60b45.yaml
diff --git a/releasenotes/notes/fix-tracer-flare-e4003d01b434267a.yaml b/dd-trace-py/releasenotes/notes/fix-tracer-flare-e4003d01b434267a.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracer-flare-e4003d01b434267a.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracer-flare-e4003d01b434267a.yaml
diff --git a/releasenotes/notes/fix-tracer-logging-init-25e8de1dd9d09ac9.yaml b/dd-trace-py/releasenotes/notes/fix-tracer-logging-init-25e8de1dd9d09ac9.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracer-logging-init-25e8de1dd9d09ac9.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracer-logging-init-25e8de1dd9d09ac9.yaml
diff --git a/releasenotes/notes/fix-tracer-parse-pg-dsn-take2-7ef89362545b2721.yaml b/dd-trace-py/releasenotes/notes/fix-tracer-parse-pg-dsn-take2-7ef89362545b2721.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracer-parse-pg-dsn-take2-7ef89362545b2721.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracer-parse-pg-dsn-take2-7ef89362545b2721.yaml
diff --git a/releasenotes/notes/fix-tracer-wrap-generator-return-value-fbaec09a9670e06b.yaml b/dd-trace-py/releasenotes/notes/fix-tracer-wrap-generator-return-value-fbaec09a9670e06b.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracer-wrap-generator-return-value-fbaec09a9670e06b.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracer-wrap-generator-return-value-fbaec09a9670e06b.yaml
diff --git a/releasenotes/notes/fix-tracer-wrap-return-type-c9436d6861451dab.yaml b/dd-trace-py/releasenotes/notes/fix-tracer-wrap-return-type-c9436d6861451dab.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracer-wrap-return-type-c9436d6861451dab.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracer-wrap-return-type-c9436d6861451dab.yaml
diff --git a/releasenotes/notes/fix-tracing-dont_raise_exception_on_empty_partial_flush-131cd3268101f255.yaml b/dd-trace-py/releasenotes/notes/fix-tracing-dont_raise_exception_on_empty_partial_flush-131cd3268101f255.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracing-dont_raise_exception_on_empty_partial_flush-131cd3268101f255.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracing-dont_raise_exception_on_empty_partial_flush-131cd3268101f255.yaml
diff --git a/releasenotes/notes/fix-tracing-generator-043422ae1d1974aa.yaml b/dd-trace-py/releasenotes/notes/fix-tracing-generator-043422ae1d1974aa.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracing-generator-043422ae1d1974aa.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracing-generator-043422ae1d1974aa.yaml
diff --git a/releasenotes/notes/fix-tracing-traceback-size-for-exceptions-3739fa96d09290fd.yaml b/dd-trace-py/releasenotes/notes/fix-tracing-traceback-size-for-exceptions-3739fa96d09290fd.yaml
similarity index 100%
rename from releasenotes/notes/fix-tracing-traceback-size-for-exceptions-3739fa96d09290fd.yaml
rename to dd-trace-py/releasenotes/notes/fix-tracing-traceback-size-for-exceptions-3739fa96d09290fd.yaml
diff --git a/releasenotes/notes/fix-try-line-injection-7fdfc03e478066f9.yaml b/dd-trace-py/releasenotes/notes/fix-try-line-injection-7fdfc03e478066f9.yaml
similarity index 100%
rename from releasenotes/notes/fix-try-line-injection-7fdfc03e478066f9.yaml
rename to dd-trace-py/releasenotes/notes/fix-try-line-injection-7fdfc03e478066f9.yaml
diff --git a/releasenotes/notes/fix-undefined-var-in-otel-docs-508ff00a82264aef.yaml b/dd-trace-py/releasenotes/notes/fix-undefined-var-in-otel-docs-508ff00a82264aef.yaml
similarity index 100%
rename from releasenotes/notes/fix-undefined-var-in-otel-docs-508ff00a82264aef.yaml
rename to dd-trace-py/releasenotes/notes/fix-undefined-var-in-otel-docs-508ff00a82264aef.yaml
diff --git a/releasenotes/notes/fix-unicode-decode-errors-pylons-52d28b22f82e184a.yaml b/dd-trace-py/releasenotes/notes/fix-unicode-decode-errors-pylons-52d28b22f82e184a.yaml
similarity index 100%
rename from releasenotes/notes/fix-unicode-decode-errors-pylons-52d28b22f82e184a.yaml
rename to dd-trace-py/releasenotes/notes/fix-unicode-decode-errors-pylons-52d28b22f82e184a.yaml
diff --git a/releasenotes/notes/fix-unittest-data-not-initialized-4c08983165adcfc1.yaml b/dd-trace-py/releasenotes/notes/fix-unittest-data-not-initialized-4c08983165adcfc1.yaml
similarity index 100%
rename from releasenotes/notes/fix-unittest-data-not-initialized-4c08983165adcfc1.yaml
rename to dd-trace-py/releasenotes/notes/fix-unittest-data-not-initialized-4c08983165adcfc1.yaml
diff --git a/releasenotes/notes/fix-unittest-git-patch-887a3963d4f58d8b.yaml b/dd-trace-py/releasenotes/notes/fix-unittest-git-patch-887a3963d4f58d8b.yaml
similarity index 100%
rename from releasenotes/notes/fix-unittest-git-patch-887a3963d4f58d8b.yaml
rename to dd-trace-py/releasenotes/notes/fix-unittest-git-patch-887a3963d4f58d8b.yaml
diff --git a/releasenotes/notes/fix-unloading-google-module-013ca2799f0964e2.yaml b/dd-trace-py/releasenotes/notes/fix-unloading-google-module-013ca2799f0964e2.yaml
similarity index 100%
rename from releasenotes/notes/fix-unloading-google-module-013ca2799f0964e2.yaml
rename to dd-trace-py/releasenotes/notes/fix-unloading-google-module-013ca2799f0964e2.yaml
diff --git a/releasenotes/notes/fix-unresolved-pending-probe-removal-80fbf85a9c068122.yaml b/dd-trace-py/releasenotes/notes/fix-unresolved-pending-probe-removal-80fbf85a9c068122.yaml
similarity index 100%
rename from releasenotes/notes/fix-unresolved-pending-probe-removal-80fbf85a9c068122.yaml
rename to dd-trace-py/releasenotes/notes/fix-unresolved-pending-probe-removal-80fbf85a9c068122.yaml
diff --git a/releasenotes/notes/fix-unwrap-silent-error-2de7513089b6ccfe.yaml b/dd-trace-py/releasenotes/notes/fix-unwrap-silent-error-2de7513089b6ccfe.yaml
similarity index 100%
rename from releasenotes/notes/fix-unwrap-silent-error-2de7513089b6ccfe.yaml
rename to dd-trace-py/releasenotes/notes/fix-unwrap-silent-error-2de7513089b6ccfe.yaml
diff --git a/releasenotes/notes/fix-update-logging-module-after-cleanup-60d90b0e11a6dc3a.yaml b/dd-trace-py/releasenotes/notes/fix-update-logging-module-after-cleanup-60d90b0e11a6dc3a.yaml
similarity index 100%
rename from releasenotes/notes/fix-update-logging-module-after-cleanup-60d90b0e11a6dc3a.yaml
rename to dd-trace-py/releasenotes/notes/fix-update-logging-module-after-cleanup-60d90b0e11a6dc3a.yaml
diff --git a/releasenotes/notes/fix-use-mapped-service-name-dc107848fd53a51e.yaml b/dd-trace-py/releasenotes/notes/fix-use-mapped-service-name-dc107848fd53a51e.yaml
similarity index 100%
rename from releasenotes/notes/fix-use-mapped-service-name-dc107848fd53a51e.yaml
rename to dd-trace-py/releasenotes/notes/fix-use-mapped-service-name-dc107848fd53a51e.yaml
diff --git a/releasenotes/notes/fix-utils-import-c0f574d76de77261.yaml b/dd-trace-py/releasenotes/notes/fix-utils-import-c0f574d76de77261.yaml
similarity index 100%
rename from releasenotes/notes/fix-utils-import-c0f574d76de77261.yaml
rename to dd-trace-py/releasenotes/notes/fix-utils-import-c0f574d76de77261.yaml
diff --git a/releasenotes/notes/fix-validate-sampling-decision-logging-561e2ef1c0156b5e.yaml b/dd-trace-py/releasenotes/notes/fix-validate-sampling-decision-logging-561e2ef1c0156b5e.yaml
similarity index 100%
rename from releasenotes/notes/fix-validate-sampling-decision-logging-561e2ef1c0156b5e.yaml
rename to dd-trace-py/releasenotes/notes/fix-validate-sampling-decision-logging-561e2ef1c0156b5e.yaml
diff --git a/releasenotes/notes/fix-verify-url-7d0dd6b0ab53306f.yaml b/dd-trace-py/releasenotes/notes/fix-verify-url-7d0dd6b0ab53306f.yaml
similarity index 100%
rename from releasenotes/notes/fix-verify-url-7d0dd6b0ab53306f.yaml
rename to dd-trace-py/releasenotes/notes/fix-verify-url-7d0dd6b0ab53306f.yaml
diff --git a/releasenotes/notes/fix-vertexai-content-extraction-b216207bd8192e5f.yaml b/dd-trace-py/releasenotes/notes/fix-vertexai-content-extraction-b216207bd8192e5f.yaml
similarity index 100%
rename from releasenotes/notes/fix-vertexai-content-extraction-b216207bd8192e5f.yaml
rename to dd-trace-py/releasenotes/notes/fix-vertexai-content-extraction-b216207bd8192e5f.yaml
diff --git a/releasenotes/notes/fix-warning-import-54de769abd54f7b6.yaml b/dd-trace-py/releasenotes/notes/fix-warning-import-54de769abd54f7b6.yaml
similarity index 100%
rename from releasenotes/notes/fix-warning-import-54de769abd54f7b6.yaml
rename to dd-trace-py/releasenotes/notes/fix-warning-import-54de769abd54f7b6.yaml
diff --git a/releasenotes/notes/fix-websocket-durations-0e0b07916912294d.yaml b/dd-trace-py/releasenotes/notes/fix-websocket-durations-0e0b07916912294d.yaml
similarity index 100%
rename from releasenotes/notes/fix-websocket-durations-0e0b07916912294d.yaml
rename to dd-trace-py/releasenotes/notes/fix-websocket-durations-0e0b07916912294d.yaml
diff --git a/releasenotes/notes/fix-wheel-file-permissions-59b497ed8163e885.yaml b/dd-trace-py/releasenotes/notes/fix-wheel-file-permissions-59b497ed8163e885.yaml
similarity index 100%
rename from releasenotes/notes/fix-wheel-file-permissions-59b497ed8163e885.yaml
rename to dd-trace-py/releasenotes/notes/fix-wheel-file-permissions-59b497ed8163e885.yaml
diff --git a/releasenotes/notes/fix-wrapping-context-memory-leak-ad3d8f27586ba662.yaml b/dd-trace-py/releasenotes/notes/fix-wrapping-context-memory-leak-ad3d8f27586ba662.yaml
similarity index 100%
rename from releasenotes/notes/fix-wrapping-context-memory-leak-ad3d8f27586ba662.yaml
rename to dd-trace-py/releasenotes/notes/fix-wrapping-context-memory-leak-ad3d8f27586ba662.yaml
diff --git a/releasenotes/notes/fix-writer-concurrent-dictionary-modification-d37e2f918c51578c.yaml b/dd-trace-py/releasenotes/notes/fix-writer-concurrent-dictionary-modification-d37e2f918c51578c.yaml
similarity index 100%
rename from releasenotes/notes/fix-writer-concurrent-dictionary-modification-d37e2f918c51578c.yaml
rename to dd-trace-py/releasenotes/notes/fix-writer-concurrent-dictionary-modification-d37e2f918c51578c.yaml
diff --git a/releasenotes/notes/fix-writer-recreate-8780a0713812efeb.yaml b/dd-trace-py/releasenotes/notes/fix-writer-recreate-8780a0713812efeb.yaml
similarity index 100%
rename from releasenotes/notes/fix-writer-recreate-8780a0713812efeb.yaml
rename to dd-trace-py/releasenotes/notes/fix-writer-recreate-8780a0713812efeb.yaml
diff --git a/releasenotes/notes/fix-wrong-entrypoint-name-process-tags-77ae503b686b9e96.yaml b/dd-trace-py/releasenotes/notes/fix-wrong-entrypoint-name-process-tags-77ae503b686b9e96.yaml
similarity index 100%
rename from releasenotes/notes/fix-wrong-entrypoint-name-process-tags-77ae503b686b9e96.yaml
rename to dd-trace-py/releasenotes/notes/fix-wrong-entrypoint-name-process-tags-77ae503b686b9e96.yaml
diff --git a/releasenotes/notes/fix-wsgi-doubling-cc8714d413ac8d80.yaml b/dd-trace-py/releasenotes/notes/fix-wsgi-doubling-cc8714d413ac8d80.yaml
similarity index 100%
rename from releasenotes/notes/fix-wsgi-doubling-cc8714d413ac8d80.yaml
rename to dd-trace-py/releasenotes/notes/fix-wsgi-doubling-cc8714d413ac8d80.yaml
diff --git a/releasenotes/notes/fix-wsgi-exception-handling-fe30f2652b30933d.yaml b/dd-trace-py/releasenotes/notes/fix-wsgi-exception-handling-fe30f2652b30933d.yaml
similarity index 100%
rename from releasenotes/notes/fix-wsgi-exception-handling-fe30f2652b30933d.yaml
rename to dd-trace-py/releasenotes/notes/fix-wsgi-exception-handling-fe30f2652b30933d.yaml
diff --git a/releasenotes/notes/fix-wsgi-header-extract-https-on-de3d657da3843d1f.yaml b/dd-trace-py/releasenotes/notes/fix-wsgi-header-extract-https-on-de3d657da3843d1f.yaml
similarity index 100%
rename from releasenotes/notes/fix-wsgi-header-extract-https-on-de3d657da3843d1f.yaml
rename to dd-trace-py/releasenotes/notes/fix-wsgi-header-extract-https-on-de3d657da3843d1f.yaml
diff --git a/releasenotes/notes/fix-wsgi-iterable-len-14777de93b723b00.yaml b/dd-trace-py/releasenotes/notes/fix-wsgi-iterable-len-14777de93b723b00.yaml
similarity index 100%
rename from releasenotes/notes/fix-wsgi-iterable-len-14777de93b723b00.yaml
rename to dd-trace-py/releasenotes/notes/fix-wsgi-iterable-len-14777de93b723b00.yaml
diff --git a/releasenotes/notes/fix.urllib3.integration-610312498fcdce86.yaml b/dd-trace-py/releasenotes/notes/fix.urllib3.integration-610312498fcdce86.yaml
similarity index 100%
rename from releasenotes/notes/fix.urllib3.integration-610312498fcdce86.yaml
rename to dd-trace-py/releasenotes/notes/fix.urllib3.integration-610312498fcdce86.yaml
diff --git a/releasenotes/notes/fix_asgi_receive_wrapper-685522a1af75d59d.yaml b/dd-trace-py/releasenotes/notes/fix_asgi_receive_wrapper-685522a1af75d59d.yaml
similarity index 100%
rename from releasenotes/notes/fix_asgi_receive_wrapper-685522a1af75d59d.yaml
rename to dd-trace-py/releasenotes/notes/fix_asgi_receive_wrapper-685522a1af75d59d.yaml
diff --git a/releasenotes/notes/fix_asm_standalone_span_tag-60b38c1d9d2efbaa.yaml b/dd-trace-py/releasenotes/notes/fix_asm_standalone_span_tag-60b38c1d9d2efbaa.yaml
similarity index 100%
rename from releasenotes/notes/fix_asm_standalone_span_tag-60b38c1d9d2efbaa.yaml
rename to dd-trace-py/releasenotes/notes/fix_asm_standalone_span_tag-60b38c1d9d2efbaa.yaml
diff --git a/releasenotes/notes/fix_blocking_on_fastapi_with_middleware-08ac58a6b112e29f.yaml b/dd-trace-py/releasenotes/notes/fix_blocking_on_fastapi_with_middleware-08ac58a6b112e29f.yaml
similarity index 100%
rename from releasenotes/notes/fix_blocking_on_fastapi_with_middleware-08ac58a6b112e29f.yaml
rename to dd-trace-py/releasenotes/notes/fix_blocking_on_fastapi_with_middleware-08ac58a6b112e29f.yaml
diff --git a/releasenotes/notes/fix_bool_report_for_appsec_custom_event-da5503b0fbb78c95.yaml b/dd-trace-py/releasenotes/notes/fix_bool_report_for_appsec_custom_event-da5503b0fbb78c95.yaml
similarity index 100%
rename from releasenotes/notes/fix_bool_report_for_appsec_custom_event-da5503b0fbb78c95.yaml
rename to dd-trace-py/releasenotes/notes/fix_bool_report_for_appsec_custom_event-da5503b0fbb78c95.yaml
diff --git a/releasenotes/notes/fix_civisibility_py27-62e8bb558f4c6e47.yaml b/dd-trace-py/releasenotes/notes/fix_civisibility_py27-62e8bb558f4c6e47.yaml
similarity index 100%
rename from releasenotes/notes/fix_civisibility_py27-62e8bb558f4c6e47.yaml
rename to dd-trace-py/releasenotes/notes/fix_civisibility_py27-62e8bb558f4c6e47.yaml
diff --git a/releasenotes/notes/fix_client_ip_header_with_case_insensitive_headers-6b70d45d0a541c23.yaml b/dd-trace-py/releasenotes/notes/fix_client_ip_header_with_case_insensitive_headers-6b70d45d0a541c23.yaml
similarity index 100%
rename from releasenotes/notes/fix_client_ip_header_with_case_insensitive_headers-6b70d45d0a541c23.yaml
rename to dd-trace-py/releasenotes/notes/fix_client_ip_header_with_case_insensitive_headers-6b70d45d0a541c23.yaml
diff --git a/releasenotes/notes/fix_decision_manager-952c44f0560c3ad1.yaml b/dd-trace-py/releasenotes/notes/fix_decision_manager-952c44f0560c3ad1.yaml
similarity index 100%
rename from releasenotes/notes/fix_decision_manager-952c44f0560c3ad1.yaml
rename to dd-trace-py/releasenotes/notes/fix_decision_manager-952c44f0560c3ad1.yaml
diff --git a/releasenotes/notes/fix_django_db_connection_instrumentation-c23defb666caff3c.yaml b/dd-trace-py/releasenotes/notes/fix_django_db_connection_instrumentation-c23defb666caff3c.yaml
similarity index 100%
rename from releasenotes/notes/fix_django_db_connection_instrumentation-c23defb666caff3c.yaml
rename to dd-trace-py/releasenotes/notes/fix_django_db_connection_instrumentation-c23defb666caff3c.yaml
diff --git a/releasenotes/notes/fix_exploit_prevention_on_redirection-fc2c0c73abb50b7b.yaml b/dd-trace-py/releasenotes/notes/fix_exploit_prevention_on_redirection-fc2c0c73abb50b7b.yaml
similarity index 100%
rename from releasenotes/notes/fix_exploit_prevention_on_redirection-fc2c0c73abb50b7b.yaml
rename to dd-trace-py/releasenotes/notes/fix_exploit_prevention_on_redirection-fc2c0c73abb50b7b.yaml
diff --git a/releasenotes/notes/fix_file_queue_on_readonly_file_systems-02bb11edeecf52e9.yaml b/dd-trace-py/releasenotes/notes/fix_file_queue_on_readonly_file_systems-02bb11edeecf52e9.yaml
similarity index 100%
rename from releasenotes/notes/fix_file_queue_on_readonly_file_systems-02bb11edeecf52e9.yaml
rename to dd-trace-py/releasenotes/notes/fix_file_queue_on_readonly_file_systems-02bb11edeecf52e9.yaml
diff --git a/releasenotes/notes/fix_incident_25768-043ae458e46c9620.yaml b/dd-trace-py/releasenotes/notes/fix_incident_25768-043ae458e46c9620.yaml
similarity index 100%
rename from releasenotes/notes/fix_incident_25768-043ae458e46c9620.yaml
rename to dd-trace-py/releasenotes/notes/fix_incident_25768-043ae458e46c9620.yaml
diff --git a/releasenotes/notes/fix_incorrect_sampler_match_on_none-c6e04cc4dfdf9007.yaml b/dd-trace-py/releasenotes/notes/fix_incorrect_sampler_match_on_none-c6e04cc4dfdf9007.yaml
similarity index 100%
rename from releasenotes/notes/fix_incorrect_sampler_match_on_none-c6e04cc4dfdf9007.yaml
rename to dd-trace-py/releasenotes/notes/fix_incorrect_sampler_match_on_none-c6e04cc4dfdf9007.yaml
diff --git a/releasenotes/notes/fix_kafka_add_timeout_and_cache-3860fe98aea500bd.yaml b/dd-trace-py/releasenotes/notes/fix_kafka_add_timeout_and_cache-3860fe98aea500bd.yaml
similarity index 100%
rename from releasenotes/notes/fix_kafka_add_timeout_and_cache-3860fe98aea500bd.yaml
rename to dd-trace-py/releasenotes/notes/fix_kafka_add_timeout_and_cache-3860fe98aea500bd.yaml
diff --git a/releasenotes/notes/fix_packages_oserror-b8da190cea6997de.yaml b/dd-trace-py/releasenotes/notes/fix_packages_oserror-b8da190cea6997de.yaml
similarity index 100%
rename from releasenotes/notes/fix_packages_oserror-b8da190cea6997de.yaml
rename to dd-trace-py/releasenotes/notes/fix_packages_oserror-b8da190cea6997de.yaml
diff --git a/releasenotes/notes/fix_path_parameters_for_flask_srb-bdac4910826d9c93.yaml b/dd-trace-py/releasenotes/notes/fix_path_parameters_for_flask_srb-bdac4910826d9c93.yaml
similarity index 100%
rename from releasenotes/notes/fix_path_parameters_for_flask_srb-bdac4910826d9c93.yaml
rename to dd-trace-py/releasenotes/notes/fix_path_parameters_for_flask_srb-bdac4910826d9c93.yaml
diff --git a/releasenotes/notes/fix_pyramid_caller_package_level-220f67c8063c2d25.yaml b/dd-trace-py/releasenotes/notes/fix_pyramid_caller_package_level-220f67c8063c2d25.yaml
similarity index 100%
rename from releasenotes/notes/fix_pyramid_caller_package_level-220f67c8063c2d25.yaml
rename to dd-trace-py/releasenotes/notes/fix_pyramid_caller_package_level-220f67c8063c2d25.yaml
diff --git a/releasenotes/notes/fix_rc_asm_dd_no_file-37e6f733583e334c.yaml b/dd-trace-py/releasenotes/notes/fix_rc_asm_dd_no_file-37e6f733583e334c.yaml
similarity index 100%
rename from releasenotes/notes/fix_rc_asm_dd_no_file-37e6f733583e334c.yaml
rename to dd-trace-py/releasenotes/notes/fix_rc_asm_dd_no_file-37e6f733583e334c.yaml
diff --git a/releasenotes/notes/fix_required_waf_addresses-6c51ddbcaca95129.yaml b/dd-trace-py/releasenotes/notes/fix_required_waf_addresses-6c51ddbcaca95129.yaml
similarity index 100%
rename from releasenotes/notes/fix_required_waf_addresses-6c51ddbcaca95129.yaml
rename to dd-trace-py/releasenotes/notes/fix_required_waf_addresses-6c51ddbcaca95129.yaml
diff --git a/releasenotes/notes/fix_rule_override_in_rc-ca88baccda452486.yaml b/dd-trace-py/releasenotes/notes/fix_rule_override_in_rc-ca88baccda452486.yaml
similarity index 100%
rename from releasenotes/notes/fix_rule_override_in_rc-ca88baccda452486.yaml
rename to dd-trace-py/releasenotes/notes/fix_rule_override_in_rc-ca88baccda452486.yaml
diff --git a/releasenotes/notes/fix_sbom_package_name-7b340f4b3fcda0f7.yaml b/dd-trace-py/releasenotes/notes/fix_sbom_package_name-7b340f4b3fcda0f7.yaml
similarity index 100%
rename from releasenotes/notes/fix_sbom_package_name-7b340f4b3fcda0f7.yaml
rename to dd-trace-py/releasenotes/notes/fix_sbom_package_name-7b340f4b3fcda0f7.yaml
diff --git a/releasenotes/notes/fix_structlog_processor_list-037c90b391dbfbc2.yaml b/dd-trace-py/releasenotes/notes/fix_structlog_processor_list-037c90b391dbfbc2.yaml
similarity index 100%
rename from releasenotes/notes/fix_structlog_processor_list-037c90b391dbfbc2.yaml
rename to dd-trace-py/releasenotes/notes/fix_structlog_processor_list-037c90b391dbfbc2.yaml
diff --git a/releasenotes/notes/fix_track_user_missing_data-6267b4a000f6bbed.yaml b/dd-trace-py/releasenotes/notes/fix_track_user_missing_data-6267b4a000f6bbed.yaml
similarity index 100%
rename from releasenotes/notes/fix_track_user_missing_data-6267b4a000f6bbed.yaml
rename to dd-trace-py/releasenotes/notes/fix_track_user_missing_data-6267b4a000f6bbed.yaml
diff --git a/releasenotes/notes/fixed-silent-suppression-of-AssertionError-exceptions-in-Lock-profiler-20645079ab43b23d.yaml b/dd-trace-py/releasenotes/notes/fixed-silent-suppression-of-AssertionError-exceptions-in-Lock-profiler-20645079ab43b23d.yaml
similarity index 100%
rename from releasenotes/notes/fixed-silent-suppression-of-AssertionError-exceptions-in-Lock-profiler-20645079ab43b23d.yaml
rename to dd-trace-py/releasenotes/notes/fixed-silent-suppression-of-AssertionError-exceptions-in-Lock-profiler-20645079ab43b23d.yaml
diff --git a/releasenotes/notes/fixing_route_error_in_django_view-a169a77c53200055.yaml b/dd-trace-py/releasenotes/notes/fixing_route_error_in_django_view-a169a77c53200055.yaml
similarity index 100%
rename from releasenotes/notes/fixing_route_error_in_django_view-a169a77c53200055.yaml
rename to dd-trace-py/releasenotes/notes/fixing_route_error_in_django_view-a169a77c53200055.yaml
diff --git a/releasenotes/notes/flask-241a6dd8c17e2c12.yaml b/dd-trace-py/releasenotes/notes/flask-241a6dd8c17e2c12.yaml
similarity index 100%
rename from releasenotes/notes/flask-241a6dd8c17e2c12.yaml
rename to dd-trace-py/releasenotes/notes/flask-241a6dd8c17e2c12.yaml
diff --git a/releasenotes/notes/flask-caching-c23ec5c1218a8bf3.yaml b/dd-trace-py/releasenotes/notes/flask-caching-c23ec5c1218a8bf3.yaml
similarity index 100%
rename from releasenotes/notes/flask-caching-c23ec5c1218a8bf3.yaml
rename to dd-trace-py/releasenotes/notes/flask-caching-c23ec5c1218a8bf3.yaml
diff --git a/releasenotes/notes/flask-codes-f0841d78ec847807.yaml b/dd-trace-py/releasenotes/notes/flask-codes-f0841d78ec847807.yaml
similarity index 100%
rename from releasenotes/notes/flask-codes-f0841d78ec847807.yaml
rename to dd-trace-py/releasenotes/notes/flask-codes-f0841d78ec847807.yaml
diff --git a/releasenotes/notes/flask-fix-crashes-with-add-url-rule-536f1d1194182bf6.yaml b/dd-trace-py/releasenotes/notes/flask-fix-crashes-with-add-url-rule-536f1d1194182bf6.yaml
similarity index 100%
rename from releasenotes/notes/flask-fix-crashes-with-add-url-rule-536f1d1194182bf6.yaml
rename to dd-trace-py/releasenotes/notes/flask-fix-crashes-with-add-url-rule-536f1d1194182bf6.yaml
diff --git a/releasenotes/notes/flask-fix-query-encoding-ef177f8c9c7a679a.yaml b/dd-trace-py/releasenotes/notes/flask-fix-query-encoding-ef177f8c9c7a679a.yaml
similarity index 100%
rename from releasenotes/notes/flask-fix-query-encoding-ef177f8c9c7a679a.yaml
rename to dd-trace-py/releasenotes/notes/flask-fix-query-encoding-ef177f8c9c7a679a.yaml
diff --git a/releasenotes/notes/flask-fix-template-parameter-capture-4b877496ca810226.yaml b/dd-trace-py/releasenotes/notes/flask-fix-template-parameter-capture-4b877496ca810226.yaml
similarity index 100%
rename from releasenotes/notes/flask-fix-template-parameter-capture-4b877496ca810226.yaml
rename to dd-trace-py/releasenotes/notes/flask-fix-template-parameter-capture-4b877496ca810226.yaml
diff --git a/releasenotes/notes/flask-http-helpers-0167071f46a36e00.yaml b/dd-trace-py/releasenotes/notes/flask-http-helpers-0167071f46a36e00.yaml
similarity index 100%
rename from releasenotes/notes/flask-http-helpers-0167071f46a36e00.yaml
rename to dd-trace-py/releasenotes/notes/flask-http-helpers-0167071f46a36e00.yaml
diff --git a/releasenotes/notes/flask-streaming-e6dad359a155fdb3.yaml b/dd-trace-py/releasenotes/notes/flask-streaming-e6dad359a155fdb3.yaml
similarity index 100%
rename from releasenotes/notes/flask-streaming-e6dad359a155fdb3.yaml
rename to dd-trace-py/releasenotes/notes/flask-streaming-e6dad359a155fdb3.yaml
diff --git a/releasenotes/notes/flask_caching-dc23b94171041b4f.yaml b/dd-trace-py/releasenotes/notes/flask_caching-dc23b94171041b4f.yaml
similarity index 100%
rename from releasenotes/notes/flask_caching-dc23b94171041b4f.yaml
rename to dd-trace-py/releasenotes/notes/flask_caching-dc23b94171041b4f.yaml
diff --git a/releasenotes/notes/flask_endpoint_discovery_fix-7f98200c2fa342c4.yaml b/dd-trace-py/releasenotes/notes/flask_endpoint_discovery_fix-7f98200c2fa342c4.yaml
similarity index 100%
rename from releasenotes/notes/flask_endpoint_discovery_fix-7f98200c2fa342c4.yaml
rename to dd-trace-py/releasenotes/notes/flask_endpoint_discovery_fix-7f98200c2fa342c4.yaml
diff --git a/releasenotes/notes/flask_improve_resource_naming_when_error_occurs-ea094145551e4ec7.yaml b/dd-trace-py/releasenotes/notes/flask_improve_resource_naming_when_error_occurs-ea094145551e4ec7.yaml
similarity index 100%
rename from releasenotes/notes/flask_improve_resource_naming_when_error_occurs-ea094145551e4ec7.yaml
rename to dd-trace-py/releasenotes/notes/flask_improve_resource_naming_when_error_occurs-ea094145551e4ec7.yaml
diff --git a/releasenotes/notes/flush-buffer-payload-limit-b4d717085b04ea1f.yaml b/dd-trace-py/releasenotes/notes/flush-buffer-payload-limit-b4d717085b04ea1f.yaml
similarity index 100%
rename from releasenotes/notes/flush-buffer-payload-limit-b4d717085b04ea1f.yaml
rename to dd-trace-py/releasenotes/notes/flush-buffer-payload-limit-b4d717085b04ea1f.yaml
diff --git a/releasenotes/notes/flush-spans-before-writer-recreate-627b3f1c5b9670dd.yaml b/dd-trace-py/releasenotes/notes/flush-spans-before-writer-recreate-627b3f1c5b9670dd.yaml
similarity index 100%
rename from releasenotes/notes/flush-spans-before-writer-recreate-627b3f1c5b9670dd.yaml
rename to dd-trace-py/releasenotes/notes/flush-spans-before-writer-recreate-627b3f1c5b9670dd.yaml
diff --git a/releasenotes/notes/fork-leak-74288f3ce2a2bc28.yaml b/dd-trace-py/releasenotes/notes/fork-leak-74288f3ce2a2bc28.yaml
similarity index 100%
rename from releasenotes/notes/fork-leak-74288f3ce2a2bc28.yaml
rename to dd-trace-py/releasenotes/notes/fork-leak-74288f3ce2a2bc28.yaml
diff --git a/releasenotes/notes/forksafe-lock-06ca188ef798c1f8.yaml b/dd-trace-py/releasenotes/notes/forksafe-lock-06ca188ef798c1f8.yaml
similarity index 100%
rename from releasenotes/notes/forksafe-lock-06ca188ef798c1f8.yaml
rename to dd-trace-py/releasenotes/notes/forksafe-lock-06ca188ef798c1f8.yaml
diff --git a/releasenotes/notes/freezegun-remove-44312810d30f9e0b.yaml b/dd-trace-py/releasenotes/notes/freezegun-remove-44312810d30f9e0b.yaml
similarity index 100%
rename from releasenotes/notes/freezegun-remove-44312810d30f9e0b.yaml
rename to dd-trace-py/releasenotes/notes/freezegun-remove-44312810d30f9e0b.yaml
diff --git a/releasenotes/notes/futures-f485da98a50c9d50.yaml b/dd-trace-py/releasenotes/notes/futures-f485da98a50c9d50.yaml
similarity index 100%
rename from releasenotes/notes/futures-f485da98a50c9d50.yaml
rename to dd-trace-py/releasenotes/notes/futures-f485da98a50c9d50.yaml
diff --git a/releasenotes/notes/gab-fix-periodic-thread-at-exit-detection-63fbe01e4f3bf267.yaml b/dd-trace-py/releasenotes/notes/gab-fix-periodic-thread-at-exit-detection-63fbe01e4f3bf267.yaml
similarity index 100%
rename from releasenotes/notes/gab-fix-periodic-thread-at-exit-detection-63fbe01e4f3bf267.yaml
rename to dd-trace-py/releasenotes/notes/gab-fix-periodic-thread-at-exit-detection-63fbe01e4f3bf267.yaml
diff --git a/releasenotes/notes/gen-unwind-f0ae0e22900495c1.yaml b/dd-trace-py/releasenotes/notes/gen-unwind-f0ae0e22900495c1.yaml
similarity index 100%
rename from releasenotes/notes/gen-unwind-f0ae0e22900495c1.yaml
rename to dd-trace-py/releasenotes/notes/gen-unwind-f0ae0e22900495c1.yaml
diff --git a/releasenotes/notes/gevent-compatibility-0fe0623c602d7617.yaml b/dd-trace-py/releasenotes/notes/gevent-compatibility-0fe0623c602d7617.yaml
similarity index 100%
rename from releasenotes/notes/gevent-compatibility-0fe0623c602d7617.yaml
rename to dd-trace-py/releasenotes/notes/gevent-compatibility-0fe0623c602d7617.yaml
diff --git a/releasenotes/notes/gevent-crash-at-exit-fix-432a658e9151af0a.yaml b/dd-trace-py/releasenotes/notes/gevent-crash-at-exit-fix-432a658e9151af0a.yaml
similarity index 100%
rename from releasenotes/notes/gevent-crash-at-exit-fix-432a658e9151af0a.yaml
rename to dd-trace-py/releasenotes/notes/gevent-crash-at-exit-fix-432a658e9151af0a.yaml
diff --git a/releasenotes/notes/gevent-pynamodb-fix-72ac7017e51fd4f9.yaml b/dd-trace-py/releasenotes/notes/gevent-pynamodb-fix-72ac7017e51fd4f9.yaml
similarity index 100%
rename from releasenotes/notes/gevent-pynamodb-fix-72ac7017e51fd4f9.yaml
rename to dd-trace-py/releasenotes/notes/gevent-pynamodb-fix-72ac7017e51fd4f9.yaml
diff --git a/releasenotes/notes/gevent-warning-f91ed0e6cac71a21.yaml b/dd-trace-py/releasenotes/notes/gevent-warning-f91ed0e6cac71a21.yaml
similarity index 100%
rename from releasenotes/notes/gevent-warning-f91ed0e6cac71a21.yaml
rename to dd-trace-py/releasenotes/notes/gevent-warning-f91ed0e6cac71a21.yaml
diff --git a/releasenotes/notes/google-adk-tools-agent-manifest-fix-eff58eaeeaeef567.yaml b/dd-trace-py/releasenotes/notes/google-adk-tools-agent-manifest-fix-eff58eaeeaeef567.yaml
similarity index 100%
rename from releasenotes/notes/google-adk-tools-agent-manifest-fix-eff58eaeeaeef567.yaml
rename to dd-trace-py/releasenotes/notes/google-adk-tools-agent-manifest-fix-eff58eaeeaeef567.yaml
diff --git a/releasenotes/notes/google-cloud-pubsub-admin-operations-4ea156113882ccb7.yaml b/dd-trace-py/releasenotes/notes/google-cloud-pubsub-admin-operations-4ea156113882ccb7.yaml
similarity index 100%
rename from releasenotes/notes/google-cloud-pubsub-admin-operations-4ea156113882ccb7.yaml
rename to dd-trace-py/releasenotes/notes/google-cloud-pubsub-admin-operations-4ea156113882ccb7.yaml
diff --git a/releasenotes/notes/google-cloud-pubsub-integration-5a3099a459710a78.yaml b/dd-trace-py/releasenotes/notes/google-cloud-pubsub-integration-5a3099a459710a78.yaml
similarity index 100%
rename from releasenotes/notes/google-cloud-pubsub-integration-5a3099a459710a78.yaml
rename to dd-trace-py/releasenotes/notes/google-cloud-pubsub-integration-5a3099a459710a78.yaml
diff --git a/releasenotes/notes/google-cloud-pubsub-push-subscription-1c2f3810f7db2d82.yaml b/dd-trace-py/releasenotes/notes/google-cloud-pubsub-push-subscription-1c2f3810f7db2d82.yaml
similarity index 100%
rename from releasenotes/notes/google-cloud-pubsub-push-subscription-1c2f3810f7db2d82.yaml
rename to dd-trace-py/releasenotes/notes/google-cloud-pubsub-push-subscription-1c2f3810f7db2d82.yaml
diff --git a/releasenotes/notes/google-genai-code-execution-annotations-87f398ee698437a2.yaml b/dd-trace-py/releasenotes/notes/google-genai-code-execution-annotations-87f398ee698437a2.yaml
similarity index 100%
rename from releasenotes/notes/google-genai-code-execution-annotations-87f398ee698437a2.yaml
rename to dd-trace-py/releasenotes/notes/google-genai-code-execution-annotations-87f398ee698437a2.yaml
diff --git a/releasenotes/notes/google-genai-reasoing-token-69a626d868b0231e.yaml b/dd-trace-py/releasenotes/notes/google-genai-reasoing-token-69a626d868b0231e.yaml
similarity index 100%
rename from releasenotes/notes/google-genai-reasoing-token-69a626d868b0231e.yaml
rename to dd-trace-py/releasenotes/notes/google-genai-reasoing-token-69a626d868b0231e.yaml
diff --git a/releasenotes/notes/google-sdk-denylist-0619f1734507019a.yaml b/dd-trace-py/releasenotes/notes/google-sdk-denylist-0619f1734507019a.yaml
similarity index 100%
rename from releasenotes/notes/google-sdk-denylist-0619f1734507019a.yaml
rename to dd-trace-py/releasenotes/notes/google-sdk-denylist-0619f1734507019a.yaml
diff --git a/releasenotes/notes/google_genai_apm_tracing-a88d4a4dada947d6.yaml b/dd-trace-py/releasenotes/notes/google_genai_apm_tracing-a88d4a4dada947d6.yaml
similarity index 100%
rename from releasenotes/notes/google_genai_apm_tracing-a88d4a4dada947d6.yaml
rename to dd-trace-py/releasenotes/notes/google_genai_apm_tracing-a88d4a4dada947d6.yaml
diff --git a/releasenotes/notes/google_genai_embed_content_submissions-5824ec6d6ce45895.yaml b/dd-trace-py/releasenotes/notes/google_genai_embed_content_submissions-5824ec6d6ce45895.yaml
similarity index 100%
rename from releasenotes/notes/google_genai_embed_content_submissions-5824ec6d6ce45895.yaml
rename to dd-trace-py/releasenotes/notes/google_genai_embed_content_submissions-5824ec6d6ce45895.yaml
diff --git a/releasenotes/notes/google_genai_llmobs_submissions-041e72a005514a40.yaml b/dd-trace-py/releasenotes/notes/google_genai_llmobs_submissions-041e72a005514a40.yaml
similarity index 100%
rename from releasenotes/notes/google_genai_llmobs_submissions-041e72a005514a40.yaml
rename to dd-trace-py/releasenotes/notes/google_genai_llmobs_submissions-041e72a005514a40.yaml
diff --git a/releasenotes/notes/google_genai_tool_usage-872034ed37cdd93e.yaml b/dd-trace-py/releasenotes/notes/google_genai_tool_usage-872034ed37cdd93e.yaml
similarity index 100%
rename from releasenotes/notes/google_genai_tool_usage-872034ed37cdd93e.yaml
rename to dd-trace-py/releasenotes/notes/google_genai_tool_usage-872034ed37cdd93e.yaml
diff --git a/releasenotes/notes/graphql-add-span-events-errors-a0fb733673ff1f58.yaml b/dd-trace-py/releasenotes/notes/graphql-add-span-events-errors-a0fb733673ff1f58.yaml
similarity index 100%
rename from releasenotes/notes/graphql-add-span-events-errors-a0fb733673ff1f58.yaml
rename to dd-trace-py/releasenotes/notes/graphql-add-span-events-errors-a0fb733673ff1f58.yaml
diff --git a/releasenotes/notes/graphql-document-fix-ef580e19ff2c4db4.yaml b/dd-trace-py/releasenotes/notes/graphql-document-fix-ef580e19ff2c4db4.yaml
similarity index 100%
rename from releasenotes/notes/graphql-document-fix-ef580e19ff2c4db4.yaml
rename to dd-trace-py/releasenotes/notes/graphql-document-fix-ef580e19ff2c4db4.yaml
diff --git a/releasenotes/notes/graphql-error-span-events-add-extensions-5eece423cc8ff93e.yaml b/dd-trace-py/releasenotes/notes/graphql-error-span-events-add-extensions-5eece423cc8ff93e.yaml
similarity index 100%
rename from releasenotes/notes/graphql-error-span-events-add-extensions-5eece423cc8ff93e.yaml
rename to dd-trace-py/releasenotes/notes/graphql-error-span-events-add-extensions-5eece423cc8ff93e.yaml
diff --git a/releasenotes/notes/graphql-location-parsing-8df82593800e2aa2.yaml b/dd-trace-py/releasenotes/notes/graphql-location-parsing-8df82593800e2aa2.yaml
similarity index 100%
rename from releasenotes/notes/graphql-location-parsing-8df82593800e2aa2.yaml
rename to dd-trace-py/releasenotes/notes/graphql-location-parsing-8df82593800e2aa2.yaml
diff --git a/releasenotes/notes/graphql-measured-d512e43de27d7ae3.yaml b/dd-trace-py/releasenotes/notes/graphql-measured-d512e43de27d7ae3.yaml
similarity index 100%
rename from releasenotes/notes/graphql-measured-d512e43de27d7ae3.yaml
rename to dd-trace-py/releasenotes/notes/graphql-measured-d512e43de27d7ae3.yaml
diff --git a/releasenotes/notes/grpc-client-measured-span-aa043d35bfe71238.yaml b/dd-trace-py/releasenotes/notes/grpc-client-measured-span-aa043d35bfe71238.yaml
similarity index 100%
rename from releasenotes/notes/grpc-client-measured-span-aa043d35bfe71238.yaml
rename to dd-trace-py/releasenotes/notes/grpc-client-measured-span-aa043d35bfe71238.yaml
diff --git a/releasenotes/notes/grpc-fix-interceptors-f596e028ef9dbcd5.yaml b/dd-trace-py/releasenotes/notes/grpc-fix-interceptors-f596e028ef9dbcd5.yaml
similarity index 100%
rename from releasenotes/notes/grpc-fix-interceptors-f596e028ef9dbcd5.yaml
rename to dd-trace-py/releasenotes/notes/grpc-fix-interceptors-f596e028ef9dbcd5.yaml
diff --git a/releasenotes/notes/grpc-future-callback-a3cc27b11df34eef.yaml b/dd-trace-py/releasenotes/notes/grpc-future-callback-a3cc27b11df34eef.yaml
similarity index 100%
rename from releasenotes/notes/grpc-future-callback-a3cc27b11df34eef.yaml
rename to dd-trace-py/releasenotes/notes/grpc-future-callback-a3cc27b11df34eef.yaml
diff --git a/releasenotes/notes/grpc-use-ServicerContext-context-to-get-metadata-84c144a247267893.yaml b/dd-trace-py/releasenotes/notes/grpc-use-ServicerContext-context-to-get-metadata-84c144a247267893.yaml
similarity index 100%
rename from releasenotes/notes/grpc-use-ServicerContext-context-to-get-metadata-84c144a247267893.yaml
rename to dd-trace-py/releasenotes/notes/grpc-use-ServicerContext-context-to-get-metadata-84c144a247267893.yaml
diff --git a/releasenotes/notes/guard-against-django-cache-result-errors-6ed2fe989f96eaf9.yaml b/dd-trace-py/releasenotes/notes/guard-against-django-cache-result-errors-6ed2fe989f96eaf9.yaml
similarity index 100%
rename from releasenotes/notes/guard-against-django-cache-result-errors-6ed2fe989f96eaf9.yaml
rename to dd-trace-py/releasenotes/notes/guard-against-django-cache-result-errors-6ed2fe989f96eaf9.yaml
diff --git a/releasenotes/notes/gunicorn-issue-09308901fa00e76c.yaml b/dd-trace-py/releasenotes/notes/gunicorn-issue-09308901fa00e76c.yaml
similarity index 100%
rename from releasenotes/notes/gunicorn-issue-09308901fa00e76c.yaml
rename to dd-trace-py/releasenotes/notes/gunicorn-issue-09308901fa00e76c.yaml
diff --git a/releasenotes/notes/gunicorn-support-debugmode-py27-74c0b8ca63cc7d9f.yaml b/dd-trace-py/releasenotes/notes/gunicorn-support-debugmode-py27-74c0b8ca63cc7d9f.yaml
similarity index 100%
rename from releasenotes/notes/gunicorn-support-debugmode-py27-74c0b8ca63cc7d9f.yaml
rename to dd-trace-py/releasenotes/notes/gunicorn-support-debugmode-py27-74c0b8ca63cc7d9f.yaml
diff --git a/releasenotes/notes/handle-empty-openai-model-be224ae61d71f5ea.yaml b/dd-trace-py/releasenotes/notes/handle-empty-openai-model-be224ae61d71f5ea.yaml
similarity index 100%
rename from releasenotes/notes/handle-empty-openai-model-be224ae61d71f5ea.yaml
rename to dd-trace-py/releasenotes/notes/handle-empty-openai-model-be224ae61d71f5ea.yaml
diff --git a/releasenotes/notes/handle_ensure_text_errors_gracefully-63bcee9f2c3f3d96.yaml b/dd-trace-py/releasenotes/notes/handle_ensure_text_errors_gracefully-63bcee9f2c3f3d96.yaml
similarity index 100%
rename from releasenotes/notes/handle_ensure_text_errors_gracefully-63bcee9f2c3f3d96.yaml
rename to dd-trace-py/releasenotes/notes/handle_ensure_text_errors_gracefully-63bcee9f2c3f3d96.yaml
diff --git a/releasenotes/notes/harden-telemetry-dependency-tracker-shutdown-5f4e28e1bc971470.yaml b/dd-trace-py/releasenotes/notes/harden-telemetry-dependency-tracker-shutdown-5f4e28e1bc971470.yaml
similarity index 100%
rename from releasenotes/notes/harden-telemetry-dependency-tracker-shutdown-5f4e28e1bc971470.yaml
rename to dd-trace-py/releasenotes/notes/harden-telemetry-dependency-tracker-shutdown-5f4e28e1bc971470.yaml
diff --git a/releasenotes/notes/http-writer-reset-090a35e52645e36e.yaml b/dd-trace-py/releasenotes/notes/http-writer-reset-090a35e52645e36e.yaml
similarity index 100%
rename from releasenotes/notes/http-writer-reset-090a35e52645e36e.yaml
rename to dd-trace-py/releasenotes/notes/http-writer-reset-090a35e52645e36e.yaml
diff --git a/releasenotes/notes/httplib-3b8917c90d162170.yaml b/dd-trace-py/releasenotes/notes/httplib-3b8917c90d162170.yaml
similarity index 100%
rename from releasenotes/notes/httplib-3b8917c90d162170.yaml
rename to dd-trace-py/releasenotes/notes/httplib-3b8917c90d162170.yaml
diff --git a/releasenotes/notes/httpx-service-ensure-text-03dbf31d2ff29fc2.yaml b/dd-trace-py/releasenotes/notes/httpx-service-ensure-text-03dbf31d2ff29fc2.yaml
similarity index 100%
rename from releasenotes/notes/httpx-service-ensure-text-03dbf31d2ff29fc2.yaml
rename to dd-trace-py/releasenotes/notes/httpx-service-ensure-text-03dbf31d2ff29fc2.yaml
diff --git a/releasenotes/notes/httpx-update-min-version-757db6db4823a366.yaml b/dd-trace-py/releasenotes/notes/httpx-update-min-version-757db6db4823a366.yaml
similarity index 100%
rename from releasenotes/notes/httpx-update-min-version-757db6db4823a366.yaml
rename to dd-trace-py/releasenotes/notes/httpx-update-min-version-757db6db4823a366.yaml
diff --git a/releasenotes/notes/iast-aspects-partial-matches-f43dc04584ca6788.yaml b/dd-trace-py/releasenotes/notes/iast-aspects-partial-matches-f43dc04584ca6788.yaml
similarity index 100%
rename from releasenotes/notes/iast-aspects-partial-matches-f43dc04584ca6788.yaml
rename to dd-trace-py/releasenotes/notes/iast-aspects-partial-matches-f43dc04584ca6788.yaml
diff --git a/releasenotes/notes/iast-cmdi-langchain-863be95c1160e50f.yaml b/dd-trace-py/releasenotes/notes/iast-cmdi-langchain-863be95c1160e50f.yaml
similarity index 100%
rename from releasenotes/notes/iast-cmdi-langchain-863be95c1160e50f.yaml
rename to dd-trace-py/releasenotes/notes/iast-cmdi-langchain-863be95c1160e50f.yaml
diff --git a/releasenotes/notes/iast-dont-throw-native-a1d1adcf209dc529.yaml b/dd-trace-py/releasenotes/notes/iast-dont-throw-native-a1d1adcf209dc529.yaml
similarity index 100%
rename from releasenotes/notes/iast-dont-throw-native-a1d1adcf209dc529.yaml
rename to dd-trace-py/releasenotes/notes/iast-dont-throw-native-a1d1adcf209dc529.yaml
diff --git a/releasenotes/notes/iast-fastapi-header-injection-ce4805c91e87ebe2.yaml b/dd-trace-py/releasenotes/notes/iast-fastapi-header-injection-ce4805c91e87ebe2.yaml
similarity index 100%
rename from releasenotes/notes/iast-fastapi-header-injection-ce4805c91e87ebe2.yaml
rename to dd-trace-py/releasenotes/notes/iast-fastapi-header-injection-ce4805c91e87ebe2.yaml
diff --git a/releasenotes/notes/iast-feat-code-injection-0213a27bc3340505.yaml b/dd-trace-py/releasenotes/notes/iast-feat-code-injection-0213a27bc3340505.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-code-injection-0213a27bc3340505.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-code-injection-0213a27bc3340505.yaml
diff --git a/releasenotes/notes/iast-feat-iast-patch-all-d7c67efc374338dd.yaml b/dd-trace-py/releasenotes/notes/iast-feat-iast-patch-all-d7c67efc374338dd.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-iast-patch-all-d7c67efc374338dd.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-iast-patch-all-d7c67efc374338dd.yaml
diff --git a/releasenotes/notes/iast-feat-iast-telemetry-error-f6ba4a6aadf96ec9.yaml b/dd-trace-py/releasenotes/notes/iast-feat-iast-telemetry-error-f6ba4a6aadf96ec9.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-iast-telemetry-error-f6ba4a6aadf96ec9.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-iast-telemetry-error-f6ba4a6aadf96ec9.yaml
diff --git a/releasenotes/notes/iast-feat-ssrf-974f42da9b06ff84.yaml b/dd-trace-py/releasenotes/notes/iast-feat-ssrf-974f42da9b06ff84.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-ssrf-974f42da9b06ff84.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-ssrf-974f42da9b06ff84.yaml
diff --git a/releasenotes/notes/iast-feat-untrusted-serialization-6e702b92672c9442.yaml b/dd-trace-py/releasenotes/notes/iast-feat-untrusted-serialization-6e702b92672c9442.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-untrusted-serialization-6e702b92672c9442.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-untrusted-serialization-6e702b92672c9442.yaml
diff --git a/releasenotes/notes/iast-feat-unvalidated-redirect-7d1fcbe25889589a.yaml b/dd-trace-py/releasenotes/notes/iast-feat-unvalidated-redirect-7d1fcbe25889589a.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-unvalidated-redirect-7d1fcbe25889589a.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-unvalidated-redirect-7d1fcbe25889589a.yaml
diff --git a/releasenotes/notes/iast-feat-weak-hash-false-positives-7517d68b3a279f95.yaml b/dd-trace-py/releasenotes/notes/iast-feat-weak-hash-false-positives-7517d68b3a279f95.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-weak-hash-false-positives-7517d68b3a279f95.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-weak-hash-false-positives-7517d68b3a279f95.yaml
diff --git a/releasenotes/notes/iast-feat-weak-randomness-3c095863b2fddee8.yaml b/dd-trace-py/releasenotes/notes/iast-feat-weak-randomness-3c095863b2fddee8.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-weak-randomness-3c095863b2fddee8.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-weak-randomness-3c095863b2fddee8.yaml
diff --git a/releasenotes/notes/iast-feat-xss-django-6781a8b9a4092832.yaml b/dd-trace-py/releasenotes/notes/iast-feat-xss-django-6781a8b9a4092832.yaml
similarity index 100%
rename from releasenotes/notes/iast-feat-xss-django-6781a8b9a4092832.yaml
rename to dd-trace-py/releasenotes/notes/iast-feat-xss-django-6781a8b9a4092832.yaml
diff --git a/releasenotes/notes/iast-fi-import-error-google-37815bda58036c08.yaml b/dd-trace-py/releasenotes/notes/iast-fi-import-error-google-37815bda58036c08.yaml
similarity index 100%
rename from releasenotes/notes/iast-fi-import-error-google-37815bda58036c08.yaml
rename to dd-trace-py/releasenotes/notes/iast-fi-import-error-google-37815bda58036c08.yaml
diff --git a/releasenotes/notes/iast-fix-aspects-empty-parameters-d488c044d562a4cd.yaml b/dd-trace-py/releasenotes/notes/iast-fix-aspects-empty-parameters-d488c044d562a4cd.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-aspects-empty-parameters-d488c044d562a4cd.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-aspects-empty-parameters-d488c044d562a4cd.yaml
diff --git a/releasenotes/notes/iast-fix-ast-patching-arguments-67b838a27a6c01f8.yaml b/dd-trace-py/releasenotes/notes/iast-fix-ast-patching-arguments-67b838a27a6c01f8.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-ast-patching-arguments-67b838a27a6c01f8.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-ast-patching-arguments-67b838a27a6c01f8.yaml
diff --git a/releasenotes/notes/iast-fix-avoid-native-module-load-ccb79bd350dc3621.yaml b/dd-trace-py/releasenotes/notes/iast-fix-avoid-native-module-load-ccb79bd350dc3621.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-avoid-native-module-load-ccb79bd350dc3621.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-avoid-native-module-load-ccb79bd350dc3621.yaml
diff --git a/releasenotes/notes/iast-fix-awsgi-368c173e1f012400.yaml b/dd-trace-py/releasenotes/notes/iast-fix-awsgi-368c173e1f012400.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-awsgi-368c173e1f012400.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-awsgi-368c173e1f012400.yaml
diff --git a/releasenotes/notes/iast-fix-cipher-error-48882bb289eb4353.yaml b/dd-trace-py/releasenotes/notes/iast-fix-cipher-error-48882bb289eb4353.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-cipher-error-48882bb289eb4353.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-cipher-error-48882bb289eb4353.yaml
diff --git a/releasenotes/notes/iast-fix-code-injection-eval-827d51948f29b52a.yaml b/dd-trace-py/releasenotes/notes/iast-fix-code-injection-eval-827d51948f29b52a.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-code-injection-eval-827d51948f29b52a.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-code-injection-eval-827d51948f29b52a.yaml
diff --git a/releasenotes/notes/iast-fix-context-creation-2d0dee033723514c.yaml b/dd-trace-py/releasenotes/notes/iast-fix-context-creation-2d0dee033723514c.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-context-creation-2d0dee033723514c.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-context-creation-2d0dee033723514c.yaml
diff --git a/releasenotes/notes/iast-fix-context-rework-3b0f1b54ab4f4156.yaml b/dd-trace-py/releasenotes/notes/iast-fix-context-rework-3b0f1b54ab4f4156.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-context-rework-3b0f1b54ab4f4156.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-context-rework-3b0f1b54ab4f4156.yaml
diff --git a/releasenotes/notes/iast-fix-cookie-report-573f444827a1f3f5.yaml b/dd-trace-py/releasenotes/notes/iast-fix-cookie-report-573f444827a1f3f5.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-cookie-report-573f444827a1f3f5.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-cookie-report-573f444827a1f3f5.yaml
diff --git a/releasenotes/notes/iast-fix-cookies-cardinality-f1fd2eb17f36e730.yaml b/dd-trace-py/releasenotes/notes/iast-fix-cookies-cardinality-f1fd2eb17f36e730.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-cookies-cardinality-f1fd2eb17f36e730.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-cookies-cardinality-f1fd2eb17f36e730.yaml
diff --git a/releasenotes/notes/iast-fix-cookies-error-2084dea1413104bd.yaml b/dd-trace-py/releasenotes/notes/iast-fix-cookies-error-2084dea1413104bd.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-cookies-error-2084dea1413104bd.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-cookies-error-2084dea1413104bd.yaml
diff --git a/releasenotes/notes/iast-fix-cookies-name-report-d5c3381d8c951bab.yaml b/dd-trace-py/releasenotes/notes/iast-fix-cookies-name-report-d5c3381d8c951bab.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-cookies-name-report-d5c3381d8c951bab.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-cookies-name-report-d5c3381d8c951bab.yaml
diff --git a/releasenotes/notes/iast-fix-error-with-no-context-4b805f224001601f.yaml b/dd-trace-py/releasenotes/notes/iast-fix-error-with-no-context-4b805f224001601f.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-error-with-no-context-4b805f224001601f.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-error-with-no-context-4b805f224001601f.yaml
diff --git a/releasenotes/notes/iast-fix-flask-duplicated-headers-565e6d8ebb75a883.yaml b/dd-trace-py/releasenotes/notes/iast-fix-flask-duplicated-headers-565e6d8ebb75a883.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-flask-duplicated-headers-565e6d8ebb75a883.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-flask-duplicated-headers-565e6d8ebb75a883.yaml
diff --git a/releasenotes/notes/iast-fix-fstring-format-d8f0fc1533c75cdb.yaml b/dd-trace-py/releasenotes/notes/iast-fix-fstring-format-d8f0fc1533c75cdb.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-fstring-format-d8f0fc1533c75cdb.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-fstring-format-d8f0fc1533c75cdb.yaml
diff --git a/releasenotes/notes/iast-fix-gevent-0cdc996892bb59c2.yaml b/dd-trace-py/releasenotes/notes/iast-fix-gevent-0cdc996892bb59c2.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-gevent-0cdc996892bb59c2.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-gevent-0cdc996892bb59c2.yaml
diff --git a/releasenotes/notes/iast-fix-iast-import-error-2eedea126bb9d92d.yaml b/dd-trace-py/releasenotes/notes/iast-fix-iast-import-error-2eedea126bb9d92d.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-iast-import-error-2eedea126bb9d92d.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-iast-import-error-2eedea126bb9d92d.yaml
diff --git a/releasenotes/notes/iast-fix-iast-import-error-f26e1451571ecbae.yaml b/dd-trace-py/releasenotes/notes/iast-fix-iast-import-error-f26e1451571ecbae.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-iast-import-error-f26e1451571ecbae.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-iast-import-error-f26e1451571ecbae.yaml
diff --git a/releasenotes/notes/iast-fix-iast-propagation-error-2-ba4a998133269a7c.yaml b/dd-trace-py/releasenotes/notes/iast-fix-iast-propagation-error-2-ba4a998133269a7c.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-iast-propagation-error-2-ba4a998133269a7c.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-iast-propagation-error-2-ba4a998133269a7c.yaml
diff --git a/releasenotes/notes/iast-fix-iast-propagation-error-6a36612724b8c84c.yaml b/dd-trace-py/releasenotes/notes/iast-fix-iast-propagation-error-6a36612724b8c84c.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-iast-propagation-error-6a36612724b8c84c.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-iast-propagation-error-6a36612724b8c84c.yaml
diff --git a/releasenotes/notes/iast-fix-id-collisions-87da1c4229876398.yaml b/dd-trace-py/releasenotes/notes/iast-fix-id-collisions-87da1c4229876398.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-id-collisions-87da1c4229876398.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-id-collisions-87da1c4229876398.yaml
diff --git a/releasenotes/notes/iast-fix-infinite-loop-path-traversal-55ce63190ea5b97b.yaml b/dd-trace-py/releasenotes/notes/iast-fix-infinite-loop-path-traversal-55ce63190ea5b97b.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-infinite-loop-path-traversal-55ce63190ea5b97b.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-infinite-loop-path-traversal-55ce63190ea5b97b.yaml
diff --git a/releasenotes/notes/iast-fix-lazy-taint-json-encoder-89cdd9aba0351d96.yaml b/dd-trace-py/releasenotes/notes/iast-fix-lazy-taint-json-encoder-89cdd9aba0351d96.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-lazy-taint-json-encoder-89cdd9aba0351d96.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-lazy-taint-json-encoder-89cdd9aba0351d96.yaml
diff --git a/releasenotes/notes/iast-fix-lazy-taint-simplejson-encoder-b505689790784882.yaml b/dd-trace-py/releasenotes/notes/iast-fix-lazy-taint-simplejson-encoder-b505689790784882.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-lazy-taint-simplejson-encoder-b505689790784882.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-lazy-taint-simplejson-encoder-b505689790784882.yaml
diff --git a/releasenotes/notes/iast-fix-mysqlsh-b397bf8415716ba3.yaml b/dd-trace-py/releasenotes/notes/iast-fix-mysqlsh-b397bf8415716ba3.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-mysqlsh-b397bf8415716ba3.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-mysqlsh-b397bf8415716ba3.yaml
diff --git a/releasenotes/notes/iast-fix-native-exceptions-e6299dc2b9ad54d3.yaml b/dd-trace-py/releasenotes/notes/iast-fix-native-exceptions-e6299dc2b9ad54d3.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-native-exceptions-e6299dc2b9ad54d3.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-native-exceptions-e6299dc2b9ad54d3.yaml
diff --git a/releasenotes/notes/iast-fix-oce-logic-4369ebeed72759fc.yaml b/dd-trace-py/releasenotes/notes/iast-fix-oce-logic-4369ebeed72759fc.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-oce-logic-4369ebeed72759fc.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-oce-logic-4369ebeed72759fc.yaml
diff --git a/releasenotes/notes/iast-fix-patching-compile-errors-2dae59d3d9eefb37.yaml b/dd-trace-py/releasenotes/notes/iast-fix-patching-compile-errors-2dae59d3d9eefb37.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-patching-compile-errors-2dae59d3d9eefb37.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-patching-compile-errors-2dae59d3d9eefb37.yaml
diff --git a/releasenotes/notes/iast-fix-patching-side-effect-56d0b168e74839fc.yaml b/dd-trace-py/releasenotes/notes/iast-fix-patching-side-effect-56d0b168e74839fc.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-patching-side-effect-56d0b168e74839fc.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-patching-side-effect-56d0b168e74839fc.yaml
diff --git a/releasenotes/notes/iast-fix-patching-subscript-store-6baf9627164eeec6.yaml b/dd-trace-py/releasenotes/notes/iast-fix-patching-subscript-store-6baf9627164eeec6.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-patching-subscript-store-6baf9627164eeec6.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-patching-subscript-store-6baf9627164eeec6.yaml
diff --git a/releasenotes/notes/iast-fix-propagation-error-b59b1b0db93c0f23.yaml b/dd-trace-py/releasenotes/notes/iast-fix-propagation-error-b59b1b0db93c0f23.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-propagation-error-b59b1b0db93c0f23.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-propagation-error-b59b1b0db93c0f23.yaml
diff --git a/releasenotes/notes/iast-fix-re-finditer-aspect-8925b30073169222.yaml b/dd-trace-py/releasenotes/notes/iast-fix-re-finditer-aspect-8925b30073169222.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-re-finditer-aspect-8925b30073169222.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-re-finditer-aspect-8925b30073169222.yaml
diff --git a/releasenotes/notes/iast-fix-remove-unneeded-atexit-handler-2a2f7e193c457666.yaml b/dd-trace-py/releasenotes/notes/iast-fix-remove-unneeded-atexit-handler-2a2f7e193c457666.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-remove-unneeded-atexit-handler-2a2f7e193c457666.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-remove-unneeded-atexit-handler-2a2f7e193c457666.yaml
diff --git a/releasenotes/notes/iast-fix-report-line-number-0-c951395b4e5d6dc4.yaml b/dd-trace-py/releasenotes/notes/iast-fix-report-line-number-0-c951395b4e5d6dc4.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-report-line-number-0-c951395b4e5d6dc4.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-report-line-number-0-c951395b4e5d6dc4.yaml
diff --git a/releasenotes/notes/iast-fix-side-effects-aad844523a335cae.yaml b/dd-trace-py/releasenotes/notes/iast-fix-side-effects-aad844523a335cae.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-side-effects-aad844523a335cae.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-side-effects-aad844523a335cae.yaml
diff --git a/releasenotes/notes/iast-fix-sqlalchemy-error-4dc7222cb609b6c1.yaml b/dd-trace-py/releasenotes/notes/iast-fix-sqlalchemy-error-4dc7222cb609b6c1.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-sqlalchemy-error-4dc7222cb609b6c1.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-sqlalchemy-error-4dc7222cb609b6c1.yaml
diff --git a/releasenotes/notes/iast-fix-ssrf-queryparam-redaction-78834d2fedfa6bdf.yaml b/dd-trace-py/releasenotes/notes/iast-fix-ssrf-queryparam-redaction-78834d2fedfa6bdf.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-ssrf-queryparam-redaction-78834d2fedfa6bdf.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-ssrf-queryparam-redaction-78834d2fedfa6bdf.yaml
diff --git a/releasenotes/notes/iast-fix-stacktrace-leak-82032de411963780.yaml b/dd-trace-py/releasenotes/notes/iast-fix-stacktrace-leak-82032de411963780.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-stacktrace-leak-82032de411963780.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-stacktrace-leak-82032de411963780.yaml
diff --git a/releasenotes/notes/iast-fix-str-aspect-4c8ccb47fcc8b6cc.yaml b/dd-trace-py/releasenotes/notes/iast-fix-str-aspect-4c8ccb47fcc8b6cc.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-str-aspect-4c8ccb47fcc8b6cc.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-str-aspect-4c8ccb47fcc8b6cc.yaml
diff --git a/releasenotes/notes/iast-fix-type-hint-patching-f13fbde78d71bd53.yaml b/dd-trace-py/releasenotes/notes/iast-fix-type-hint-patching-f13fbde78d71bd53.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-type-hint-patching-f13fbde78d71bd53.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-type-hint-patching-f13fbde78d71bd53.yaml
diff --git a/releasenotes/notes/iast-fix-valueerror-on-ast-function-a06975ec55afc26b.yaml b/dd-trace-py/releasenotes/notes/iast-fix-valueerror-on-ast-function-a06975ec55afc26b.yaml
similarity index 100%
rename from releasenotes/notes/iast-fix-valueerror-on-ast-function-a06975ec55afc26b.yaml
rename to dd-trace-py/releasenotes/notes/iast-fix-valueerror-on-ast-function-a06975ec55afc26b.yaml
diff --git a/releasenotes/notes/iast-fstring-exception-d460a37b6e44f972.yaml b/dd-trace-py/releasenotes/notes/iast-fstring-exception-d460a37b6e44f972.yaml
similarity index 100%
rename from releasenotes/notes/iast-fstring-exception-d460a37b6e44f972.yaml
rename to dd-trace-py/releasenotes/notes/iast-fstring-exception-d460a37b6e44f972.yaml
diff --git a/releasenotes/notes/iast-langchain-0.1.0-e437ea90fe66ad31.yaml b/dd-trace-py/releasenotes/notes/iast-langchain-0.1.0-e437ea90fe66ad31.yaml
similarity index 100%
rename from releasenotes/notes/iast-langchain-0.1.0-e437ea90fe66ad31.yaml
rename to dd-trace-py/releasenotes/notes/iast-langchain-0.1.0-e437ea90fe66ad31.yaml
diff --git a/releasenotes/notes/iast-new-pyobject-check-6aecf9c4f22e2ae9.yaml b/dd-trace-py/releasenotes/notes/iast-new-pyobject-check-6aecf9c4f22e2ae9.yaml
similarity index 100%
rename from releasenotes/notes/iast-new-pyobject-check-6aecf9c4f22e2ae9.yaml
rename to dd-trace-py/releasenotes/notes/iast-new-pyobject-check-6aecf9c4f22e2ae9.yaml
diff --git a/releasenotes/notes/iast-posixpath-error-d186b1596893098f.yaml b/dd-trace-py/releasenotes/notes/iast-posixpath-error-d186b1596893098f.yaml
similarity index 100%
rename from releasenotes/notes/iast-posixpath-error-d186b1596893098f.yaml
rename to dd-trace-py/releasenotes/notes/iast-posixpath-error-d186b1596893098f.yaml
diff --git a/releasenotes/notes/iast-private-beta-20fe19c2dff7862e.yaml b/dd-trace-py/releasenotes/notes/iast-private-beta-20fe19c2dff7862e.yaml
similarity index 100%
rename from releasenotes/notes/iast-private-beta-20fe19c2dff7862e.yaml
rename to dd-trace-py/releasenotes/notes/iast-private-beta-20fe19c2dff7862e.yaml
diff --git a/releasenotes/notes/iast-python-312-2eaf8161a9f9d6e7.yaml b/dd-trace-py/releasenotes/notes/iast-python-312-2eaf8161a9f9d6e7.yaml
similarity index 100%
rename from releasenotes/notes/iast-python-312-2eaf8161a9f9d6e7.yaml
rename to dd-trace-py/releasenotes/notes/iast-python-312-2eaf8161a9f9d6e7.yaml
diff --git a/releasenotes/notes/iast-python314-template-strings-support-7d65e20974fc42bf.yaml b/dd-trace-py/releasenotes/notes/iast-python314-template-strings-support-7d65e20974fc42bf.yaml
similarity index 100%
rename from releasenotes/notes/iast-python314-template-strings-support-7d65e20974fc42bf.yaml
rename to dd-trace-py/releasenotes/notes/iast-python314-template-strings-support-7d65e20974fc42bf.yaml
diff --git a/releasenotes/notes/iast-security-controls-9cb913d485cd5e4b.yaml b/dd-trace-py/releasenotes/notes/iast-security-controls-9cb913d485cd5e4b.yaml
similarity index 100%
rename from releasenotes/notes/iast-security-controls-9cb913d485cd5e4b.yaml
rename to dd-trace-py/releasenotes/notes/iast-security-controls-9cb913d485cd5e4b.yaml
diff --git a/releasenotes/notes/iast-segfaults-fix-d25c5c132dd8482e.yaml b/dd-trace-py/releasenotes/notes/iast-segfaults-fix-d25c5c132dd8482e.yaml
similarity index 100%
rename from releasenotes/notes/iast-segfaults-fix-d25c5c132dd8482e.yaml
rename to dd-trace-py/releasenotes/notes/iast-segfaults-fix-d25c5c132dd8482e.yaml
diff --git a/releasenotes/notes/iast-vulnerability-report-wrong-key-4940989d2328512d.yaml b/dd-trace-py/releasenotes/notes/iast-vulnerability-report-wrong-key-4940989d2328512d.yaml
similarity index 100%
rename from releasenotes/notes/iast-vulnerability-report-wrong-key-4940989d2328512d.yaml
rename to dd-trace-py/releasenotes/notes/iast-vulnerability-report-wrong-key-4940989d2328512d.yaml
diff --git a/releasenotes/notes/iast_psycopg2_lazytaintlist-023f55c4f36a8ad9.yaml b/dd-trace-py/releasenotes/notes/iast_psycopg2_lazytaintlist-023f55c4f36a8ad9.yaml
similarity index 100%
rename from releasenotes/notes/iast_psycopg2_lazytaintlist-023f55c4f36a8ad9.yaml
rename to dd-trace-py/releasenotes/notes/iast_psycopg2_lazytaintlist-023f55c4f36a8ad9.yaml
diff --git a/releasenotes/notes/ignore_stopiteration_exception-43806201b7fc8005.yaml b/dd-trace-py/releasenotes/notes/ignore_stopiteration_exception-43806201b7fc8005.yaml
similarity index 100%
rename from releasenotes/notes/ignore_stopiteration_exception-43806201b7fc8005.yaml
rename to dd-trace-py/releasenotes/notes/ignore_stopiteration_exception-43806201b7fc8005.yaml
diff --git a/releasenotes/notes/implement-django-postgres-dbm-trace-propagation-6ed725516d8bc5c1.yaml b/dd-trace-py/releasenotes/notes/implement-django-postgres-dbm-trace-propagation-6ed725516d8bc5c1.yaml
similarity index 100%
rename from releasenotes/notes/implement-django-postgres-dbm-trace-propagation-6ed725516d8bc5c1.yaml
rename to dd-trace-py/releasenotes/notes/implement-django-postgres-dbm-trace-propagation-6ed725516d8bc5c1.yaml
diff --git a/releasenotes/notes/implement-inferred-service-naming-for-default-service-names-56395f9bcb4458de.yaml b/dd-trace-py/releasenotes/notes/implement-inferred-service-naming-for-default-service-names-56395f9bcb4458de.yaml
similarity index 100%
rename from releasenotes/notes/implement-inferred-service-naming-for-default-service-names-56395f9bcb4458de.yaml
rename to dd-trace-py/releasenotes/notes/implement-inferred-service-naming-for-default-service-names-56395f9bcb4458de.yaml
diff --git a/releasenotes/notes/implement-schema-extraction-for-avro-3f903a1e9884bf27.yaml b/dd-trace-py/releasenotes/notes/implement-schema-extraction-for-avro-3f903a1e9884bf27.yaml
similarity index 100%
rename from releasenotes/notes/implement-schema-extraction-for-avro-3f903a1e9884bf27.yaml
rename to dd-trace-py/releasenotes/notes/implement-schema-extraction-for-avro-3f903a1e9884bf27.yaml
diff --git a/releasenotes/notes/implement-schema-tracking-for-protobuf-adf8e0ffe3c057f5.yaml b/dd-trace-py/releasenotes/notes/implement-schema-tracking-for-protobuf-adf8e0ffe3c057f5.yaml
similarity index 100%
rename from releasenotes/notes/implement-schema-tracking-for-protobuf-adf8e0ffe3c057f5.yaml
rename to dd-trace-py/releasenotes/notes/implement-schema-tracking-for-protobuf-adf8e0ffe3c057f5.yaml
diff --git a/releasenotes/notes/init-dramatiq-integration-8b882a3e9921208e.yaml b/dd-trace-py/releasenotes/notes/init-dramatiq-integration-8b882a3e9921208e.yaml
similarity index 100%
rename from releasenotes/notes/init-dramatiq-integration-8b882a3e9921208e.yaml
rename to dd-trace-py/releasenotes/notes/init-dramatiq-integration-8b882a3e9921208e.yaml
diff --git a/releasenotes/notes/inject-botocore-stepfunction-start_execution-calls-95bed0ca2e1d006e.yaml b/dd-trace-py/releasenotes/notes/inject-botocore-stepfunction-start_execution-calls-95bed0ca2e1d006e.yaml
similarity index 100%
rename from releasenotes/notes/inject-botocore-stepfunction-start_execution-calls-95bed0ca2e1d006e.yaml
rename to dd-trace-py/releasenotes/notes/inject-botocore-stepfunction-start_execution-calls-95bed0ca2e1d006e.yaml
diff --git a/releasenotes/notes/injection-guardrails-bde1d57db91f33d1.yaml b/dd-trace-py/releasenotes/notes/injection-guardrails-bde1d57db91f33d1.yaml
similarity index 100%
rename from releasenotes/notes/injection-guardrails-bde1d57db91f33d1.yaml
rename to dd-trace-py/releasenotes/notes/injection-guardrails-bde1d57db91f33d1.yaml
diff --git a/releasenotes/notes/inode-a856fce19b327dce.yaml b/dd-trace-py/releasenotes/notes/inode-a856fce19b327dce.yaml
similarity index 100%
rename from releasenotes/notes/inode-a856fce19b327dce.yaml
rename to dd-trace-py/releasenotes/notes/inode-a856fce19b327dce.yaml
diff --git a/releasenotes/notes/instrument-openai-responses-prompt-d8d0f21a6f21ed4d.yaml b/dd-trace-py/releasenotes/notes/instrument-openai-responses-prompt-d8d0f21a6f21ed4d.yaml
similarity index 100%
rename from releasenotes/notes/instrument-openai-responses-prompt-d8d0f21a6f21ed4d.yaml
rename to dd-trace-py/releasenotes/notes/instrument-openai-responses-prompt-d8d0f21a6f21ed4d.yaml
diff --git a/releasenotes/notes/internal-contextvar-crash-fix-53e7b7d0797ba090.yaml b/dd-trace-py/releasenotes/notes/internal-contextvar-crash-fix-53e7b7d0797ba090.yaml
similarity index 100%
rename from releasenotes/notes/internal-contextvar-crash-fix-53e7b7d0797ba090.yaml
rename to dd-trace-py/releasenotes/notes/internal-contextvar-crash-fix-53e7b7d0797ba090.yaml
diff --git a/releasenotes/notes/internal-periodic-thread-crash-after-fork-4d1571830c582d21.yaml b/dd-trace-py/releasenotes/notes/internal-periodic-thread-crash-after-fork-4d1571830c582d21.yaml
similarity index 100%
rename from releasenotes/notes/internal-periodic-thread-crash-after-fork-4d1571830c582d21.yaml
rename to dd-trace-py/releasenotes/notes/internal-periodic-thread-crash-after-fork-4d1571830c582d21.yaml
diff --git a/releasenotes/notes/internal-periodic-thread-do-not-reset-after-fork-ff9e801123cc3c28.yaml b/dd-trace-py/releasenotes/notes/internal-periodic-thread-do-not-reset-after-fork-ff9e801123cc3c28.yaml
similarity index 100%
rename from releasenotes/notes/internal-periodic-thread-do-not-reset-after-fork-ff9e801123cc3c28.yaml
rename to dd-trace-py/releasenotes/notes/internal-periodic-thread-do-not-reset-after-fork-ff9e801123cc3c28.yaml
diff --git a/releasenotes/notes/internal-settings-3b45c1e8a96edc99.yaml b/dd-trace-py/releasenotes/notes/internal-settings-3b45c1e8a96edc99.yaml
similarity index 100%
rename from releasenotes/notes/internal-settings-3b45c1e8a96edc99.yaml
rename to dd-trace-py/releasenotes/notes/internal-settings-3b45c1e8a96edc99.yaml
diff --git a/releasenotes/notes/internalize-constants-3-0-73b6970b5a6f3aa5.yaml b/dd-trace-py/releasenotes/notes/internalize-constants-3-0-73b6970b5a6f3aa5.yaml
similarity index 100%
rename from releasenotes/notes/internalize-constants-3-0-73b6970b5a6f3aa5.yaml
rename to dd-trace-py/releasenotes/notes/internalize-constants-3-0-73b6970b5a6f3aa5.yaml
diff --git a/releasenotes/notes/internalize-ddtrace-utils-357b623ac04acbf2.yaml b/dd-trace-py/releasenotes/notes/internalize-ddtrace-utils-357b623ac04acbf2.yaml
similarity index 100%
rename from releasenotes/notes/internalize-ddtrace-utils-357b623ac04acbf2.yaml
rename to dd-trace-py/releasenotes/notes/internalize-ddtrace-utils-357b623ac04acbf2.yaml
diff --git a/releasenotes/notes/internalize-monkey-1d84ea8cab7b9977.yaml b/dd-trace-py/releasenotes/notes/internalize-monkey-1d84ea8cab7b9977.yaml
similarity index 100%
rename from releasenotes/notes/internalize-monkey-1d84ea8cab7b9977.yaml
rename to dd-trace-py/releasenotes/notes/internalize-monkey-1d84ea8cab7b9977.yaml
diff --git a/releasenotes/notes/internalize-samplers-b4f014f680f872f9.yaml b/dd-trace-py/releasenotes/notes/internalize-samplers-b4f014f680f872f9.yaml
similarity index 100%
rename from releasenotes/notes/internalize-samplers-b4f014f680f872f9.yaml
rename to dd-trace-py/releasenotes/notes/internalize-samplers-b4f014f680f872f9.yaml
diff --git a/releasenotes/notes/internalize_http_server-06721b67e63dde1d.yaml b/dd-trace-py/releasenotes/notes/internalize_http_server-06721b67e63dde1d.yaml
similarity index 100%
rename from releasenotes/notes/internalize_http_server-06721b67e63dde1d.yaml
rename to dd-trace-py/releasenotes/notes/internalize_http_server-06721b67e63dde1d.yaml
diff --git a/releasenotes/notes/ip-tags-without-headers-ac9f04483f6703bd.yaml b/dd-trace-py/releasenotes/notes/ip-tags-without-headers-ac9f04483f6703bd.yaml
similarity index 100%
rename from releasenotes/notes/ip-tags-without-headers-ac9f04483f6703bd.yaml
rename to dd-trace-py/releasenotes/notes/ip-tags-without-headers-ac9f04483f6703bd.yaml
diff --git a/releasenotes/notes/ipaddress-dep-3.7-b2bf42719e5f99ec.yaml b/dd-trace-py/releasenotes/notes/ipaddress-dep-3.7-b2bf42719e5f99ec.yaml
similarity index 100%
rename from releasenotes/notes/ipaddress-dep-3.7-b2bf42719e5f99ec.yaml
rename to dd-trace-py/releasenotes/notes/ipaddress-dep-3.7-b2bf42719e5f99ec.yaml
diff --git a/releasenotes/notes/jinja2-3-ec7df3666745f29b.yaml b/dd-trace-py/releasenotes/notes/jinja2-3-ec7df3666745f29b.yaml
similarity index 100%
rename from releasenotes/notes/jinja2-3-ec7df3666745f29b.yaml
rename to dd-trace-py/releasenotes/notes/jinja2-3-ec7df3666745f29b.yaml
diff --git a/releasenotes/notes/json-debug-4e2db6b36edfb3ac.yaml b/dd-trace-py/releasenotes/notes/json-debug-4e2db6b36edfb3ac.yaml
similarity index 100%
rename from releasenotes/notes/json-debug-4e2db6b36edfb3ac.yaml
rename to dd-trace-py/releasenotes/notes/json-debug-4e2db6b36edfb3ac.yaml
diff --git a/releasenotes/notes/kafka-apm-topicname-5d0fd12f89eb861f.yaml b/dd-trace-py/releasenotes/notes/kafka-apm-topicname-5d0fd12f89eb861f.yaml
similarity index 100%
rename from releasenotes/notes/kafka-apm-topicname-5d0fd12f89eb861f.yaml
rename to dd-trace-py/releasenotes/notes/kafka-apm-topicname-5d0fd12f89eb861f.yaml
diff --git a/releasenotes/notes/kafka-dsm-cluster-id-offsets-955ab27ae5a84aa5.yaml b/dd-trace-py/releasenotes/notes/kafka-dsm-cluster-id-offsets-955ab27ae5a84aa5.yaml
similarity index 100%
rename from releasenotes/notes/kafka-dsm-cluster-id-offsets-955ab27ae5a84aa5.yaml
rename to dd-trace-py/releasenotes/notes/kafka-dsm-cluster-id-offsets-955ab27ae5a84aa5.yaml
diff --git a/releasenotes/notes/kafka-empty-message-list-d4358af8f4b72567.yaml b/dd-trace-py/releasenotes/notes/kafka-empty-message-list-d4358af8f4b72567.yaml
similarity index 100%
rename from releasenotes/notes/kafka-empty-message-list-d4358af8f4b72567.yaml
rename to dd-trace-py/releasenotes/notes/kafka-empty-message-list-d4358af8f4b72567.yaml
diff --git a/releasenotes/notes/kafka-key-none-540d576e8590aa3c.yaml b/dd-trace-py/releasenotes/notes/kafka-key-none-540d576e8590aa3c.yaml
similarity index 100%
rename from releasenotes/notes/kafka-key-none-540d576e8590aa3c.yaml
rename to dd-trace-py/releasenotes/notes/kafka-key-none-540d576e8590aa3c.yaml
diff --git a/releasenotes/notes/kafka-lag-support-data-streams-c6b7aed85bf2cf14.yaml b/dd-trace-py/releasenotes/notes/kafka-lag-support-data-streams-c6b7aed85bf2cf14.yaml
similarity index 100%
rename from releasenotes/notes/kafka-lag-support-data-streams-c6b7aed85bf2cf14.yaml
rename to dd-trace-py/releasenotes/notes/kafka-lag-support-data-streams-c6b7aed85bf2cf14.yaml
diff --git a/releasenotes/notes/kafka-message-headers-66faac96fa054fb9.yaml b/dd-trace-py/releasenotes/notes/kafka-message-headers-66faac96fa054fb9.yaml
similarity index 100%
rename from releasenotes/notes/kafka-message-headers-66faac96fa054fb9.yaml
rename to dd-trace-py/releasenotes/notes/kafka-message-headers-66faac96fa054fb9.yaml
diff --git a/releasenotes/notes/kafka-none-2-4f9e600e115eb44c.yaml b/dd-trace-py/releasenotes/notes/kafka-none-2-4f9e600e115eb44c.yaml
similarity index 100%
rename from releasenotes/notes/kafka-none-2-4f9e600e115eb44c.yaml
rename to dd-trace-py/releasenotes/notes/kafka-none-2-4f9e600e115eb44c.yaml
diff --git a/releasenotes/notes/kafka-serial-498a5b325673bfa8.yaml b/dd-trace-py/releasenotes/notes/kafka-serial-498a5b325673bfa8.yaml
similarity index 100%
rename from releasenotes/notes/kafka-serial-498a5b325673bfa8.yaml
rename to dd-trace-py/releasenotes/notes/kafka-serial-498a5b325673bfa8.yaml
diff --git a/releasenotes/notes/kafka-support-serializing-producer-fb01f5288ae116f4.yaml b/dd-trace-py/releasenotes/notes/kafka-support-serializing-producer-fb01f5288ae116f4.yaml
similarity index 100%
rename from releasenotes/notes/kafka-support-serializing-producer-fb01f5288ae116f4.yaml
rename to dd-trace-py/releasenotes/notes/kafka-support-serializing-producer-fb01f5288ae116f4.yaml
diff --git a/releasenotes/notes/kafka-typeerror-b39a35c5338b05aa.yaml b/dd-trace-py/releasenotes/notes/kafka-typeerror-b39a35c5338b05aa.yaml
similarity index 100%
rename from releasenotes/notes/kafka-typeerror-b39a35c5338b05aa.yaml
rename to dd-trace-py/releasenotes/notes/kafka-typeerror-b39a35c5338b05aa.yaml
diff --git a/releasenotes/notes/kafka_message_topic_none_fix-2bc3fd6388075b94.yaml b/dd-trace-py/releasenotes/notes/kafka_message_topic_none_fix-2bc3fd6388075b94.yaml
similarity index 100%
rename from releasenotes/notes/kafka_message_topic_none_fix-2bc3fd6388075b94.yaml
rename to dd-trace-py/releasenotes/notes/kafka_message_topic_none_fix-2bc3fd6388075b94.yaml
diff --git a/releasenotes/notes/keep-alive-b5ec5febb435daad.yaml b/dd-trace-py/releasenotes/notes/keep-alive-b5ec5febb435daad.yaml
similarity index 100%
rename from releasenotes/notes/keep-alive-b5ec5febb435daad.yaml
rename to dd-trace-py/releasenotes/notes/keep-alive-b5ec5febb435daad.yaml
diff --git a/releasenotes/notes/keep_feature_for_waf-472aa333bdaaa19a.yaml b/dd-trace-py/releasenotes/notes/keep_feature_for_waf-472aa333bdaaa19a.yaml
similarity index 100%
rename from releasenotes/notes/keep_feature_for_waf-472aa333bdaaa19a.yaml
rename to dd-trace-py/releasenotes/notes/keep_feature_for_waf-472aa333bdaaa19a.yaml
diff --git a/releasenotes/notes/kinesis_none_type_fix-4b39f2059184359e.yaml b/dd-trace-py/releasenotes/notes/kinesis_none_type_fix-4b39f2059184359e.yaml
similarity index 100%
rename from releasenotes/notes/kinesis_none_type_fix-4b39f2059184359e.yaml
rename to dd-trace-py/releasenotes/notes/kinesis_none_type_fix-4b39f2059184359e.yaml
diff --git a/releasenotes/notes/lambda_compatibility_for_appsec-be1656a05fcf12d3.yaml b/dd-trace-py/releasenotes/notes/lambda_compatibility_for_appsec-be1656a05fcf12d3.yaml
similarity index 100%
rename from releasenotes/notes/lambda_compatibility_for_appsec-be1656a05fcf12d3.yaml
rename to dd-trace-py/releasenotes/notes/lambda_compatibility_for_appsec-be1656a05fcf12d3.yaml
diff --git a/releasenotes/notes/langchain-agenerate-attr-error-e9775491d05e8997.yaml b/dd-trace-py/releasenotes/notes/langchain-agenerate-attr-error-e9775491d05e8997.yaml
similarity index 100%
rename from releasenotes/notes/langchain-agenerate-attr-error-e9775491d05e8997.yaml
rename to dd-trace-py/releasenotes/notes/langchain-agenerate-attr-error-e9775491d05e8997.yaml
diff --git a/releasenotes/notes/langchain-api-key-secret-str-b51ef4f3be0b7315.yaml b/dd-trace-py/releasenotes/notes/langchain-api-key-secret-str-b51ef4f3be0b7315.yaml
similarity index 100%
rename from releasenotes/notes/langchain-api-key-secret-str-b51ef4f3be0b7315.yaml
rename to dd-trace-py/releasenotes/notes/langchain-api-key-secret-str-b51ef4f3be0b7315.yaml
diff --git a/releasenotes/notes/langchain-b9c3dc57058a8634.yaml b/dd-trace-py/releasenotes/notes/langchain-b9c3dc57058a8634.yaml
similarity index 100%
rename from releasenotes/notes/langchain-b9c3dc57058a8634.yaml
rename to dd-trace-py/releasenotes/notes/langchain-b9c3dc57058a8634.yaml
diff --git a/releasenotes/notes/langchain-drop-langchain-base-chains-support-48d8290af6eb86e3.yaml b/dd-trace-py/releasenotes/notes/langchain-drop-langchain-base-chains-support-48d8290af6eb86e3.yaml
similarity index 100%
rename from releasenotes/notes/langchain-drop-langchain-base-chains-support-48d8290af6eb86e3.yaml
rename to dd-trace-py/releasenotes/notes/langchain-drop-langchain-base-chains-support-48d8290af6eb86e3.yaml
diff --git a/releasenotes/notes/langchain-drop-logs-metrics-a997e8059886b20a.yaml b/dd-trace-py/releasenotes/notes/langchain-drop-logs-metrics-a997e8059886b20a.yaml
similarity index 100%
rename from releasenotes/notes/langchain-drop-logs-metrics-a997e8059886b20a.yaml
rename to dd-trace-py/releasenotes/notes/langchain-drop-logs-metrics-a997e8059886b20a.yaml
diff --git a/releasenotes/notes/langchain-drop-v0.0-support-745a0572da799e4e.yaml b/dd-trace-py/releasenotes/notes/langchain-drop-v0.0-support-745a0572da799e4e.yaml
similarity index 100%
rename from releasenotes/notes/langchain-drop-v0.0-support-745a0572da799e4e.yaml
rename to dd-trace-py/releasenotes/notes/langchain-drop-v0.0-support-745a0572da799e4e.yaml
diff --git a/releasenotes/notes/langchain-early-stream-end-fix-af9ca6475b3aaf00.yaml b/dd-trace-py/releasenotes/notes/langchain-early-stream-end-fix-af9ca6475b3aaf00.yaml
similarity index 100%
rename from releasenotes/notes/langchain-early-stream-end-fix-af9ca6475b3aaf00.yaml
rename to dd-trace-py/releasenotes/notes/langchain-early-stream-end-fix-af9ca6475b3aaf00.yaml
diff --git a/releasenotes/notes/langchain-fix-google-genai-provider-model-extraction-3ef86ea2a0ed5aa4.yaml b/dd-trace-py/releasenotes/notes/langchain-fix-google-genai-provider-model-extraction-3ef86ea2a0ed5aa4.yaml
similarity index 100%
rename from releasenotes/notes/langchain-fix-google-genai-provider-model-extraction-3ef86ea2a0ed5aa4.yaml
rename to dd-trace-py/releasenotes/notes/langchain-fix-google-genai-provider-model-extraction-3ef86ea2a0ed5aa4.yaml
diff --git a/releasenotes/notes/langchain-fix-import-error-957272f5b039330d.yaml b/dd-trace-py/releasenotes/notes/langchain-fix-import-error-957272f5b039330d.yaml
similarity index 100%
rename from releasenotes/notes/langchain-fix-import-error-957272f5b039330d.yaml
rename to dd-trace-py/releasenotes/notes/langchain-fix-import-error-957272f5b039330d.yaml
diff --git a/releasenotes/notes/langchain-fix-imports-dddd44cd581e6baa.yaml b/dd-trace-py/releasenotes/notes/langchain-fix-imports-dddd44cd581e6baa.yaml
similarity index 100%
rename from releasenotes/notes/langchain-fix-imports-dddd44cd581e6baa.yaml
rename to dd-trace-py/releasenotes/notes/langchain-fix-imports-dddd44cd581e6baa.yaml
diff --git a/releasenotes/notes/langchain-inputs-checking-f295eefb7053fd47.yaml b/dd-trace-py/releasenotes/notes/langchain-inputs-checking-f295eefb7053fd47.yaml
similarity index 100%
rename from releasenotes/notes/langchain-inputs-checking-f295eefb7053fd47.yaml
rename to dd-trace-py/releasenotes/notes/langchain-inputs-checking-f295eefb7053fd47.yaml
diff --git a/releasenotes/notes/langchain-lcel-stream-calls-bff85c974a72cceb.yaml b/dd-trace-py/releasenotes/notes/langchain-lcel-stream-calls-bff85c974a72cceb.yaml
similarity index 100%
rename from releasenotes/notes/langchain-lcel-stream-calls-bff85c974a72cceb.yaml
rename to dd-trace-py/releasenotes/notes/langchain-lcel-stream-calls-bff85c974a72cceb.yaml
diff --git a/releasenotes/notes/langchain-lcel-tool-tagging-af55b56cfa21ffa1.yaml b/dd-trace-py/releasenotes/notes/langchain-lcel-tool-tagging-af55b56cfa21ffa1.yaml
similarity index 100%
rename from releasenotes/notes/langchain-lcel-tool-tagging-af55b56cfa21ffa1.yaml
rename to dd-trace-py/releasenotes/notes/langchain-lcel-tool-tagging-af55b56cfa21ffa1.yaml
diff --git a/releasenotes/notes/langchain-llmobs-token-value-error-e157dce357408791.yaml b/dd-trace-py/releasenotes/notes/langchain-llmobs-token-value-error-e157dce357408791.yaml
similarity index 100%
rename from releasenotes/notes/langchain-llmobs-token-value-error-e157dce357408791.yaml
rename to dd-trace-py/releasenotes/notes/langchain-llmobs-token-value-error-e157dce357408791.yaml
diff --git a/releasenotes/notes/langchain-non-dict-inputs-310427c510acf1e5.yaml b/dd-trace-py/releasenotes/notes/langchain-non-dict-inputs-310427c510acf1e5.yaml
similarity index 100%
rename from releasenotes/notes/langchain-non-dict-inputs-310427c510acf1e5.yaml
rename to dd-trace-py/releasenotes/notes/langchain-non-dict-inputs-310427c510acf1e5.yaml
diff --git a/releasenotes/notes/langchain-patching-fix-6a48dd0252e429c2.yaml b/dd-trace-py/releasenotes/notes/langchain-patching-fix-6a48dd0252e429c2.yaml
similarity index 100%
rename from releasenotes/notes/langchain-patching-fix-6a48dd0252e429c2.yaml
rename to dd-trace-py/releasenotes/notes/langchain-patching-fix-6a48dd0252e429c2.yaml
diff --git a/releasenotes/notes/langchain-pydantic-output-parsers-19bc162212ec051e.yaml b/dd-trace-py/releasenotes/notes/langchain-pydantic-output-parsers-19bc162212ec051e.yaml
similarity index 100%
rename from releasenotes/notes/langchain-pydantic-output-parsers-19bc162212ec051e.yaml
rename to dd-trace-py/releasenotes/notes/langchain-pydantic-output-parsers-19bc162212ec051e.yaml
diff --git a/releasenotes/notes/langchain-runnable-lambda-cec8e99164d081d1.yaml b/dd-trace-py/releasenotes/notes/langchain-runnable-lambda-cec8e99164d081d1.yaml
similarity index 100%
rename from releasenotes/notes/langchain-runnable-lambda-cec8e99164d081d1.yaml
rename to dd-trace-py/releasenotes/notes/langchain-runnable-lambda-cec8e99164d081d1.yaml
diff --git a/releasenotes/notes/langchain-v0-2-0bb0264be70bbb45.yaml b/dd-trace-py/releasenotes/notes/langchain-v0-2-0bb0264be70bbb45.yaml
similarity index 100%
rename from releasenotes/notes/langchain-v0-2-0bb0264be70bbb45.yaml
rename to dd-trace-py/releasenotes/notes/langchain-v0-2-0bb0264be70bbb45.yaml
diff --git a/releasenotes/notes/langgraph-0.6.0-support-46c6ac5fcf810105.yaml b/dd-trace-py/releasenotes/notes/langgraph-0.6.0-support-46c6ac5fcf810105.yaml
similarity index 100%
rename from releasenotes/notes/langgraph-0.6.0-support-46c6ac5fcf810105.yaml
rename to dd-trace-py/releasenotes/notes/langgraph-0.6.0-support-46c6ac5fcf810105.yaml
diff --git a/releasenotes/notes/langgraph-astream-events-fix-134ec247dd1916e8.yaml b/dd-trace-py/releasenotes/notes/langgraph-astream-events-fix-134ec247dd1916e8.yaml
similarity index 100%
rename from releasenotes/notes/langgraph-astream-events-fix-134ec247dd1916e8.yaml
rename to dd-trace-py/releasenotes/notes/langgraph-astream-events-fix-134ec247dd1916e8.yaml
diff --git a/releasenotes/notes/langgraph-graphinterrupt-control-flow-eae319a7a414d831.yaml b/dd-trace-py/releasenotes/notes/langgraph-graphinterrupt-control-flow-eae319a7a414d831.yaml
similarity index 100%
rename from releasenotes/notes/langgraph-graphinterrupt-control-flow-eae319a7a414d831.yaml
rename to dd-trace-py/releasenotes/notes/langgraph-graphinterrupt-control-flow-eae319a7a414d831.yaml
diff --git a/releasenotes/notes/large-number-encoding-4dfd4bdca1a1f7dc.yaml b/dd-trace-py/releasenotes/notes/large-number-encoding-4dfd4bdca1a1f7dc.yaml
similarity index 100%
rename from releasenotes/notes/large-number-encoding-4dfd4bdca1a1f7dc.yaml
rename to dd-trace-py/releasenotes/notes/large-number-encoding-4dfd4bdca1a1f7dc.yaml
diff --git a/releasenotes/notes/lazy-load-appsec-9551750979d94f73.yaml b/dd-trace-py/releasenotes/notes/lazy-load-appsec-9551750979d94f73.yaml
similarity index 100%
rename from releasenotes/notes/lazy-load-appsec-9551750979d94f73.yaml
rename to dd-trace-py/releasenotes/notes/lazy-load-appsec-9551750979d94f73.yaml
diff --git a/releasenotes/notes/lazy-load-instrumentation-telemetry-365f20486cda1e76.yaml b/dd-trace-py/releasenotes/notes/lazy-load-instrumentation-telemetry-365f20486cda1e76.yaml
similarity index 100%
rename from releasenotes/notes/lazy-load-instrumentation-telemetry-365f20486cda1e76.yaml
rename to dd-trace-py/releasenotes/notes/lazy-load-instrumentation-telemetry-365f20486cda1e76.yaml
diff --git a/releasenotes/notes/lazy-load-instrumentation-telemetry-again-55032fb259d81984.yaml b/dd-trace-py/releasenotes/notes/lazy-load-instrumentation-telemetry-again-55032fb259d81984.yaml
similarity index 100%
rename from releasenotes/notes/lazy-load-instrumentation-telemetry-again-55032fb259d81984.yaml
rename to dd-trace-py/releasenotes/notes/lazy-load-instrumentation-telemetry-again-55032fb259d81984.yaml
diff --git a/releasenotes/notes/lazy-load-instrumentation-telemetry-again-f1ae23c302e234c4.yaml b/dd-trace-py/releasenotes/notes/lazy-load-instrumentation-telemetry-again-f1ae23c302e234c4.yaml
similarity index 100%
rename from releasenotes/notes/lazy-load-instrumentation-telemetry-again-f1ae23c302e234c4.yaml
rename to dd-trace-py/releasenotes/notes/lazy-load-instrumentation-telemetry-again-f1ae23c302e234c4.yaml
diff --git a/releasenotes/notes/lazy_sampling-93057adeaccbb46f.yaml b/dd-trace-py/releasenotes/notes/lazy_sampling-93057adeaccbb46f.yaml
similarity index 100%
rename from releasenotes/notes/lazy_sampling-93057adeaccbb46f.yaml
rename to dd-trace-py/releasenotes/notes/lazy_sampling-93057adeaccbb46f.yaml
diff --git a/releasenotes/notes/less_imports_for_iast_tainting-d38a2ad26ad98f40.yaml b/dd-trace-py/releasenotes/notes/less_imports_for_iast_tainting-d38a2ad26ad98f40.yaml
similarity index 100%
rename from releasenotes/notes/less_imports_for_iast_tainting-d38a2ad26ad98f40.yaml
rename to dd-trace-py/releasenotes/notes/less_imports_for_iast_tainting-d38a2ad26ad98f40.yaml
diff --git a/releasenotes/notes/lib-inject-8dcd6537312fddf3.yaml b/dd-trace-py/releasenotes/notes/lib-inject-8dcd6537312fddf3.yaml
similarity index 100%
rename from releasenotes/notes/lib-inject-8dcd6537312fddf3.yaml
rename to dd-trace-py/releasenotes/notes/lib-inject-8dcd6537312fddf3.yaml
diff --git a/releasenotes/notes/lib-inject-base-image-dffa9a9579a9350d.yaml b/dd-trace-py/releasenotes/notes/lib-inject-base-image-dffa9a9579a9350d.yaml
similarity index 100%
rename from releasenotes/notes/lib-inject-base-image-dffa9a9579a9350d.yaml
rename to dd-trace-py/releasenotes/notes/lib-inject-base-image-dffa9a9579a9350d.yaml
diff --git a/releasenotes/notes/lib-inject-execute_perm-e8a4c834895a6372.yaml b/dd-trace-py/releasenotes/notes/lib-inject-execute_perm-e8a4c834895a6372.yaml
similarity index 100%
rename from releasenotes/notes/lib-inject-execute_perm-e8a4c834895a6372.yaml
rename to dd-trace-py/releasenotes/notes/lib-inject-execute_perm-e8a4c834895a6372.yaml
diff --git a/releasenotes/notes/lib-inject-fix-offline-0349ef25100f5420.yaml b/dd-trace-py/releasenotes/notes/lib-inject-fix-offline-0349ef25100f5420.yaml
similarity index 100%
rename from releasenotes/notes/lib-inject-fix-offline-0349ef25100f5420.yaml
rename to dd-trace-py/releasenotes/notes/lib-inject-fix-offline-0349ef25100f5420.yaml
diff --git a/releasenotes/notes/lib-inject-logs-1b56f004763853f7.yaml b/dd-trace-py/releasenotes/notes/lib-inject-logs-1b56f004763853f7.yaml
similarity index 100%
rename from releasenotes/notes/lib-inject-logs-1b56f004763853f7.yaml
rename to dd-trace-py/releasenotes/notes/lib-inject-logs-1b56f004763853f7.yaml
diff --git a/releasenotes/notes/lib-inject-permissions-8222a09585eb5350.yaml b/dd-trace-py/releasenotes/notes/lib-inject-permissions-8222a09585eb5350.yaml
similarity index 100%
rename from releasenotes/notes/lib-inject-permissions-8222a09585eb5350.yaml
rename to dd-trace-py/releasenotes/notes/lib-inject-permissions-8222a09585eb5350.yaml
diff --git a/releasenotes/notes/lib-injection-0041b50a263e1c19.yaml b/dd-trace-py/releasenotes/notes/lib-injection-0041b50a263e1c19.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-0041b50a263e1c19.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-0041b50a263e1c19.yaml
diff --git a/releasenotes/notes/lib-injection-314-80c9ea0f0d0f3658.yaml b/dd-trace-py/releasenotes/notes/lib-injection-314-80c9ea0f0d0f3658.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-314-80c9ea0f0d0f3658.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-314-80c9ea0f0d0f3658.yaml
diff --git a/releasenotes/notes/lib-injection-gsutil-f8cd44af4b361abd.yaml b/dd-trace-py/releasenotes/notes/lib-injection-gsutil-f8cd44af4b361abd.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-gsutil-f8cd44af4b361abd.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-gsutil-f8cd44af4b361abd.yaml
diff --git a/releasenotes/notes/lib-injection-local-install-3bbbea28517ba0f0.yaml b/dd-trace-py/releasenotes/notes/lib-injection-local-install-3bbbea28517ba0f0.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-local-install-3bbbea28517ba0f0.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-local-install-3bbbea28517ba0f0.yaml
diff --git a/releasenotes/notes/lib-injection-non-root-981fd87f97d3e552.yaml b/dd-trace-py/releasenotes/notes/lib-injection-non-root-981fd87f97d3e552.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-non-root-981fd87f97d3e552.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-non-root-981fd87f97d3e552.yaml
diff --git a/releasenotes/notes/lib-injection-pin-5ff01a5441206121.yaml b/dd-trace-py/releasenotes/notes/lib-injection-pin-5ff01a5441206121.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-pin-5ff01a5441206121.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-pin-5ff01a5441206121.yaml
diff --git a/releasenotes/notes/lib-injection-pkg-dir-permissions-aaac0059b6c21f30.yaml b/dd-trace-py/releasenotes/notes/lib-injection-pkg-dir-permissions-aaac0059b6c21f30.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-pkg-dir-permissions-aaac0059b6c21f30.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-pkg-dir-permissions-aaac0059b6c21f30.yaml
diff --git a/releasenotes/notes/lib-injection-user-19a5b5516c060d8b.yaml b/dd-trace-py/releasenotes/notes/lib-injection-user-19a5b5516c060d8b.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-user-19a5b5516c060d8b.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-user-19a5b5516c060d8b.yaml
diff --git a/releasenotes/notes/lib-injection-wheels-fd40598c49a47c64.yaml b/dd-trace-py/releasenotes/notes/lib-injection-wheels-fd40598c49a47c64.yaml
similarity index 100%
rename from releasenotes/notes/lib-injection-wheels-fd40598c49a47c64.yaml
rename to dd-trace-py/releasenotes/notes/lib-injection-wheels-fd40598c49a47c64.yaml
diff --git a/releasenotes/notes/libdatadog-v15.0.0-1004e5bb7f452d9a.yaml b/dd-trace-py/releasenotes/notes/libdatadog-v15.0.0-1004e5bb7f452d9a.yaml
similarity index 100%
rename from releasenotes/notes/libdatadog-v15.0.0-1004e5bb7f452d9a.yaml
rename to dd-trace-py/releasenotes/notes/libdatadog-v15.0.0-1004e5bb7f452d9a.yaml
diff --git a/releasenotes/notes/libddwaf-1.0.18-update-61c1513f3e632195.yaml b/dd-trace-py/releasenotes/notes/libddwaf-1.0.18-update-61c1513f3e632195.yaml
similarity index 100%
rename from releasenotes/notes/libddwaf-1.0.18-update-61c1513f3e632195.yaml
rename to dd-trace-py/releasenotes/notes/libddwaf-1.0.18-update-61c1513f3e632195.yaml
diff --git a/releasenotes/notes/libinjection-denytlist-modules-a5e0407ed6b8166a.yaml b/dd-trace-py/releasenotes/notes/libinjection-denytlist-modules-a5e0407ed6b8166a.yaml
similarity index 100%
rename from releasenotes/notes/libinjection-denytlist-modules-a5e0407ed6b8166a.yaml
rename to dd-trace-py/releasenotes/notes/libinjection-denytlist-modules-a5e0407ed6b8166a.yaml
diff --git a/releasenotes/notes/lift_max_tag_length_setting-366b3b60d458355b.yaml b/dd-trace-py/releasenotes/notes/lift_max_tag_length_setting-366b3b60d458355b.yaml
similarity index 100%
rename from releasenotes/notes/lift_max_tag_length_setting-366b3b60d458355b.yaml
rename to dd-trace-py/releasenotes/notes/lift_max_tag_length_setting-366b3b60d458355b.yaml
diff --git a/releasenotes/notes/limited-api-0c9b84268ca779d3.yaml b/dd-trace-py/releasenotes/notes/limited-api-0c9b84268ca779d3.yaml
similarity index 100%
rename from releasenotes/notes/limited-api-0c9b84268ca779d3.yaml
rename to dd-trace-py/releasenotes/notes/limited-api-0c9b84268ca779d3.yaml
diff --git a/releasenotes/notes/list_dd_header_tags-f8a9ce1daa2a1cf6.yaml b/dd-trace-py/releasenotes/notes/list_dd_header_tags-f8a9ce1daa2a1cf6.yaml
similarity index 100%
rename from releasenotes/notes/list_dd_header_tags-f8a9ce1daa2a1cf6.yaml
rename to dd-trace-py/releasenotes/notes/list_dd_header_tags-f8a9ce1daa2a1cf6.yaml
diff --git a/releasenotes/notes/litellm-cache-token-metrics-acd54d129191285f.yaml b/dd-trace-py/releasenotes/notes/litellm-cache-token-metrics-acd54d129191285f.yaml
similarity index 100%
rename from releasenotes/notes/litellm-cache-token-metrics-acd54d129191285f.yaml
rename to dd-trace-py/releasenotes/notes/litellm-cache-token-metrics-acd54d129191285f.yaml
diff --git a/releasenotes/notes/litellm-fix-out-of-bounds-error-8b4fa7f2f996dca7.yaml b/dd-trace-py/releasenotes/notes/litellm-fix-out-of-bounds-error-8b4fa7f2f996dca7.yaml
similarity index 100%
rename from releasenotes/notes/litellm-fix-out-of-bounds-error-8b4fa7f2f996dca7.yaml
rename to dd-trace-py/releasenotes/notes/litellm-fix-out-of-bounds-error-8b4fa7f2f996dca7.yaml
diff --git a/releasenotes/notes/litellm-proxy-model-llmobs-fix-a1b2c3d4e5f6a7b8.yaml b/dd-trace-py/releasenotes/notes/litellm-proxy-model-llmobs-fix-a1b2c3d4e5f6a7b8.yaml
similarity index 100%
rename from releasenotes/notes/litellm-proxy-model-llmobs-fix-a1b2c3d4e5f6a7b8.yaml
rename to dd-trace-py/releasenotes/notes/litellm-proxy-model-llmobs-fix-a1b2c3d4e5f6a7b8.yaml
diff --git a/releasenotes/notes/litellm-router-tracing-04d28e5b3fc73702.yaml b/dd-trace-py/releasenotes/notes/litellm-router-tracing-04d28e5b3fc73702.yaml
similarity index 100%
rename from releasenotes/notes/litellm-router-tracing-04d28e5b3fc73702.yaml
rename to dd-trace-py/releasenotes/notes/litellm-router-tracing-04d28e5b3fc73702.yaml
diff --git a/releasenotes/notes/litellm-scrub-metadata-135109a6a5324111.yaml b/dd-trace-py/releasenotes/notes/litellm-scrub-metadata-135109a6a5324111.yaml
similarity index 100%
rename from releasenotes/notes/litellm-scrub-metadata-135109a6a5324111.yaml
rename to dd-trace-py/releasenotes/notes/litellm-scrub-metadata-135109a6a5324111.yaml
diff --git a/releasenotes/notes/litellm-tracing-f62a4467d9b50120.yaml b/dd-trace-py/releasenotes/notes/litellm-tracing-f62a4467d9b50120.yaml
similarity index 100%
rename from releasenotes/notes/litellm-tracing-f62a4467d9b50120.yaml
rename to dd-trace-py/releasenotes/notes/litellm-tracing-f62a4467d9b50120.yaml
diff --git a/releasenotes/notes/llm-decorator-auto-annotation-error-a9ff1d25e3706cd3.yaml b/dd-trace-py/releasenotes/notes/llm-decorator-auto-annotation-error-a9ff1d25e3706cd3.yaml
similarity index 100%
rename from releasenotes/notes/llm-decorator-auto-annotation-error-a9ff1d25e3706cd3.yaml
rename to dd-trace-py/releasenotes/notes/llm-decorator-auto-annotation-error-a9ff1d25e3706cd3.yaml
diff --git a/releasenotes/notes/llm-judge-azure-openai-provider-de1f56b35bb959ca.yaml b/dd-trace-py/releasenotes/notes/llm-judge-azure-openai-provider-de1f56b35bb959ca.yaml
similarity index 100%
rename from releasenotes/notes/llm-judge-azure-openai-provider-de1f56b35bb959ca.yaml
rename to dd-trace-py/releasenotes/notes/llm-judge-azure-openai-provider-de1f56b35bb959ca.yaml
diff --git a/releasenotes/notes/llm-judge-bedrock-provider-d7242145e52341bd.yaml b/dd-trace-py/releasenotes/notes/llm-judge-bedrock-provider-d7242145e52341bd.yaml
similarity index 100%
rename from releasenotes/notes/llm-judge-bedrock-provider-d7242145e52341bd.yaml
rename to dd-trace-py/releasenotes/notes/llm-judge-bedrock-provider-d7242145e52341bd.yaml
diff --git a/releasenotes/notes/llm-judge-publish-79f351e6967a9623.yaml b/dd-trace-py/releasenotes/notes/llm-judge-publish-79f351e6967a9623.yaml
similarity index 100%
rename from releasenotes/notes/llm-judge-publish-79f351e6967a9623.yaml
rename to dd-trace-py/releasenotes/notes/llm-judge-publish-79f351e6967a9623.yaml
diff --git a/releasenotes/notes/llm-judge-vertexai-provider-d9c3bfa3c878b008.yaml b/dd-trace-py/releasenotes/notes/llm-judge-vertexai-provider-d9c3bfa3c878b008.yaml
similarity index 100%
rename from releasenotes/notes/llm-judge-vertexai-provider-d9c3bfa3c878b008.yaml
rename to dd-trace-py/releasenotes/notes/llm-judge-vertexai-provider-d9c3bfa3c878b008.yaml
diff --git a/releasenotes/notes/llm-obs-anthropic-beta-b09e4fa8f17eef4f.yaml b/dd-trace-py/releasenotes/notes/llm-obs-anthropic-beta-b09e4fa8f17eef4f.yaml
similarity index 100%
rename from releasenotes/notes/llm-obs-anthropic-beta-b09e4fa8f17eef4f.yaml
rename to dd-trace-py/releasenotes/notes/llm-obs-anthropic-beta-b09e4fa8f17eef4f.yaml
diff --git a/releasenotes/notes/llm-obs-aws-translation-guardrail-2599485bdbe29997.yaml b/dd-trace-py/releasenotes/notes/llm-obs-aws-translation-guardrail-2599485bdbe29997.yaml
similarity index 100%
rename from releasenotes/notes/llm-obs-aws-translation-guardrail-2599485bdbe29997.yaml
rename to dd-trace-py/releasenotes/notes/llm-obs-aws-translation-guardrail-2599485bdbe29997.yaml
diff --git a/releasenotes/notes/llm-obs-class-based-evaluators-a37b9bf2d81d3b3e.yaml b/dd-trace-py/releasenotes/notes/llm-obs-class-based-evaluators-a37b9bf2d81d3b3e.yaml
similarity index 100%
rename from releasenotes/notes/llm-obs-class-based-evaluators-a37b9bf2d81d3b3e.yaml
rename to dd-trace-py/releasenotes/notes/llm-obs-class-based-evaluators-a37b9bf2d81d3b3e.yaml
diff --git a/releasenotes/notes/llm-obs-fork-disabled-f710f0ccde71c36b.yaml b/dd-trace-py/releasenotes/notes/llm-obs-fork-disabled-f710f0ccde71c36b.yaml
similarity index 100%
rename from releasenotes/notes/llm-obs-fork-disabled-f710f0ccde71c36b.yaml
rename to dd-trace-py/releasenotes/notes/llm-obs-fork-disabled-f710f0ccde71c36b.yaml
diff --git a/releasenotes/notes/llm-obs-litellm-add-router-span-info-10d6e1d5149e8407.yaml b/dd-trace-py/releasenotes/notes/llm-obs-litellm-add-router-span-info-10d6e1d5149e8407.yaml
similarity index 100%
rename from releasenotes/notes/llm-obs-litellm-add-router-span-info-10d6e1d5149e8407.yaml
rename to dd-trace-py/releasenotes/notes/llm-obs-litellm-add-router-span-info-10d6e1d5149e8407.yaml
diff --git a/releasenotes/notes/llmjudge-passthrough-client-options-3ce49afb528781f1.yaml b/dd-trace-py/releasenotes/notes/llmjudge-passthrough-client-options-3ce49afb528781f1.yaml
similarity index 100%
rename from releasenotes/notes/llmjudge-passthrough-client-options-3ce49afb528781f1.yaml
rename to dd-trace-py/releasenotes/notes/llmjudge-passthrough-client-options-3ce49afb528781f1.yaml
diff --git a/releasenotes/notes/llmobs-add-dd-tags-f2203cb49cb531af.yaml b/dd-trace-py/releasenotes/notes/llmobs-add-dd-tags-f2203cb49cb531af.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-add-dd-tags-f2203cb49cb531af.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-add-dd-tags-f2203cb49cb531af.yaml
diff --git a/releasenotes/notes/llmobs-agent-proxy-detection-414f7469000bad08.yaml b/dd-trace-py/releasenotes/notes/llmobs-agent-proxy-detection-414f7469000bad08.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-agent-proxy-detection-414f7469000bad08.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-agent-proxy-detection-414f7469000bad08.yaml
diff --git a/releasenotes/notes/llmobs-agentless-span-retry-300e4a035ed3942f.yaml b/dd-trace-py/releasenotes/notes/llmobs-agentless-span-retry-300e4a035ed3942f.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-agentless-span-retry-300e4a035ed3942f.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-agentless-span-retry-300e4a035ed3942f.yaml
diff --git a/releasenotes/notes/llmobs-agentless-writer-on-fork-fix-d43c50cbf3d86297.yaml b/dd-trace-py/releasenotes/notes/llmobs-agentless-writer-on-fork-fix-d43c50cbf3d86297.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-agentless-writer-on-fork-fix-d43c50cbf3d86297.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-agentless-writer-on-fork-fix-d43c50cbf3d86297.yaml
diff --git a/releasenotes/notes/llmobs-annotation-context-ece8f33a805adce3.yaml b/dd-trace-py/releasenotes/notes/llmobs-annotation-context-ece8f33a805adce3.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-annotation-context-ece8f33a805adce3.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-annotation-context-ece8f33a805adce3.yaml
diff --git a/releasenotes/notes/llmobs-apm-tracing-8cd612f8a3af4960.yaml b/dd-trace-py/releasenotes/notes/llmobs-apm-tracing-8cd612f8a3af4960.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-apm-tracing-8cd612f8a3af4960.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-apm-tracing-8cd612f8a3af4960.yaml
diff --git a/releasenotes/notes/llmobs-app-name-73519e6ce588cdfd.yaml b/dd-trace-py/releasenotes/notes/llmobs-app-name-73519e6ce588cdfd.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-app-name-73519e6ce588cdfd.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-app-name-73519e6ce588cdfd.yaml
diff --git a/releasenotes/notes/llmobs-async-experiment-f588e3d2572cba2c.yaml b/dd-trace-py/releasenotes/notes/llmobs-async-experiment-f588e3d2572cba2c.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-async-experiment-f588e3d2572cba2c.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-async-experiment-f588e3d2572cba2c.yaml
diff --git a/releasenotes/notes/llmobs-builtin-evaluators-4c4089423cb9bc6e.yaml b/dd-trace-py/releasenotes/notes/llmobs-builtin-evaluators-4c4089423cb9bc6e.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-builtin-evaluators-4c4089423cb9bc6e.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-builtin-evaluators-4c4089423cb9bc6e.yaml
diff --git a/releasenotes/notes/llmobs-check-base-url-6525bd19d7b3b6a5.yaml b/dd-trace-py/releasenotes/notes/llmobs-check-base-url-6525bd19d7b3b6a5.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-check-base-url-6525bd19d7b3b6a5.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-check-base-url-6525bd19d7b3b6a5.yaml
diff --git a/releasenotes/notes/llmobs-configure-proxy-urls-1edb993ac7ccb895.yaml b/dd-trace-py/releasenotes/notes/llmobs-configure-proxy-urls-1edb993ac7ccb895.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-configure-proxy-urls-1edb993ac7ccb895.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-configure-proxy-urls-1edb993ac7ccb895.yaml
diff --git a/releasenotes/notes/llmobs-cost-tags-annotate-4d3e5a9c2b0f4e11.yaml b/dd-trace-py/releasenotes/notes/llmobs-cost-tags-annotate-4d3e5a9c2b0f4e11.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-cost-tags-annotate-4d3e5a9c2b0f4e11.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-cost-tags-annotate-4d3e5a9c2b0f4e11.yaml
diff --git a/releasenotes/notes/llmobs-dataset-upload-api-575a32fb7a31040f.yaml b/dd-trace-py/releasenotes/notes/llmobs-dataset-upload-api-575a32fb7a31040f.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dataset-upload-api-575a32fb7a31040f.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dataset-upload-api-575a32fb7a31040f.yaml
diff --git a/releasenotes/notes/llmobs-dedup-sdk-submitted-26dd929582d8d617.yaml b/dd-trace-py/releasenotes/notes/llmobs-dedup-sdk-submitted-26dd929582d8d617.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dedup-sdk-submitted-26dd929582d8d617.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dedup-sdk-submitted-26dd929582d8d617.yaml
diff --git a/releasenotes/notes/llmobs-default-unknown-model-provider-962d8afdaf0c9fe6.yaml b/dd-trace-py/releasenotes/notes/llmobs-default-unknown-model-provider-962d8afdaf0c9fe6.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-default-unknown-model-provider-962d8afdaf0c9fe6.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-default-unknown-model-provider-962d8afdaf0c9fe6.yaml
diff --git a/releasenotes/notes/llmobs-deprecate-ml-app-name-71c71132c700f3ac.yaml b/dd-trace-py/releasenotes/notes/llmobs-deprecate-ml-app-name-71c71132c700f3ac.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-deprecate-ml-app-name-71c71132c700f3ac.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-deprecate-ml-app-name-71c71132c700f3ac.yaml
diff --git a/releasenotes/notes/llmobs-dne-add-project-name-arg-to-create-experiment-a1f4fb61aea22983.yaml b/dd-trace-py/releasenotes/notes/llmobs-dne-add-project-name-arg-to-create-experiment-a1f4fb61aea22983.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dne-add-project-name-arg-to-create-experiment-a1f4fb61aea22983.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dne-add-project-name-arg-to-create-experiment-a1f4fb61aea22983.yaml
diff --git a/releasenotes/notes/llmobs-dne-allow-versioned-dataset-pull-c7017f982b2c1f5b.yaml b/dd-trace-py/releasenotes/notes/llmobs-dne-allow-versioned-dataset-pull-c7017f982b2c1f5b.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dne-allow-versioned-dataset-pull-c7017f982b2c1f5b.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dne-allow-versioned-dataset-pull-c7017f982b2c1f5b.yaml
diff --git a/releasenotes/notes/llmobs-dne-experiments-dataset-record-tags-config-propagation-59397bb58866b19b.yaml b/dd-trace-py/releasenotes/notes/llmobs-dne-experiments-dataset-record-tags-config-propagation-59397bb58866b19b.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dne-experiments-dataset-record-tags-config-propagation-59397bb58866b19b.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dne-experiments-dataset-record-tags-config-propagation-59397bb58866b19b.yaml
diff --git a/releasenotes/notes/llmobs-dne-experiments-dataset-records-filtering-095c0c445fec2fec.yaml b/dd-trace-py/releasenotes/notes/llmobs-dne-experiments-dataset-records-filtering-095c0c445fec2fec.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dne-experiments-dataset-records-filtering-095c0c445fec2fec.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dne-experiments-dataset-records-filtering-095c0c445fec2fec.yaml
diff --git a/releasenotes/notes/llmobs-dne-experiments-dataset-tag-operations-22ff5c26d27af0f9.yaml b/dd-trace-py/releasenotes/notes/llmobs-dne-experiments-dataset-tag-operations-22ff5c26d27af0f9.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dne-experiments-dataset-tag-operations-22ff5c26d27af0f9.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dne-experiments-dataset-tag-operations-22ff5c26d27af0f9.yaml
diff --git a/releasenotes/notes/llmobs-dne-experiments-fields-json-metadata-on-spans-53d679fd8e6ab202.yaml b/dd-trace-py/releasenotes/notes/llmobs-dne-experiments-fields-json-metadata-on-spans-53d679fd8e6ab202.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dne-experiments-fields-json-metadata-on-spans-53d679fd8e6ab202.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dne-experiments-fields-json-metadata-on-spans-53d679fd8e6ab202.yaml
diff --git a/releasenotes/notes/llmobs-dne-experiments-human-readable-tags-3d750800d7d0fadd.yaml b/dd-trace-py/releasenotes/notes/llmobs-dne-experiments-human-readable-tags-3d750800d7d0fadd.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dne-experiments-human-readable-tags-3d750800d7d0fadd.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dne-experiments-human-readable-tags-3d750800d7d0fadd.yaml
diff --git a/releasenotes/notes/llmobs-dne-experiments-multi-run-ef099e98a5827e49.yaml b/dd-trace-py/releasenotes/notes/llmobs-dne-experiments-multi-run-ef099e98a5827e49.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-dne-experiments-multi-run-ef099e98a5827e49.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-dne-experiments-multi-run-ef099e98a5827e49.yaml
diff --git a/releasenotes/notes/llmobs-evaluator-result-8d051f7a93634736.yaml b/dd-trace-py/releasenotes/notes/llmobs-evaluator-result-8d051f7a93634736.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-evaluator-result-8d051f7a93634736.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-evaluator-result-8d051f7a93634736.yaml
diff --git a/releasenotes/notes/llmobs-experiment-async-execution-a4a857cc763eda59.yaml b/dd-trace-py/releasenotes/notes/llmobs-experiment-async-execution-a4a857cc763eda59.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-experiment-async-execution-a4a857cc763eda59.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-experiment-async-execution-a4a857cc763eda59.yaml
diff --git a/releasenotes/notes/llmobs-experiment-child-span-dataset-id-propagation-98a020ae4c524ba1.yaml b/dd-trace-py/releasenotes/notes/llmobs-experiment-child-span-dataset-id-propagation-98a020ae4c524ba1.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-experiment-child-span-dataset-id-propagation-98a020ae4c524ba1.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-experiment-child-span-dataset-id-propagation-98a020ae4c524ba1.yaml
diff --git a/releasenotes/notes/llmobs-experiment-error-surfacing-eea017fc77721386.yaml b/dd-trace-py/releasenotes/notes/llmobs-experiment-error-surfacing-eea017fc77721386.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-experiment-error-surfacing-eea017fc77721386.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-experiment-error-surfacing-eea017fc77721386.yaml
diff --git a/releasenotes/notes/llmobs-experiment-retry-reliability-1d246aac96e9ab6d.yaml b/dd-trace-py/releasenotes/notes/llmobs-experiment-retry-reliability-1d246aac96e9ab6d.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-experiment-retry-reliability-1d246aac96e9ab6d.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-experiment-retry-reliability-1d246aac96e9ab6d.yaml
diff --git a/releasenotes/notes/llmobs-experiment-run-as-dataframe-6cc731bb9b3f06a8.yaml b/dd-trace-py/releasenotes/notes/llmobs-experiment-run-as-dataframe-6cc731bb9b3f06a8.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-experiment-run-as-dataframe-6cc731bb9b3f06a8.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-experiment-run-as-dataframe-6cc731bb9b3f06a8.yaml
diff --git a/releasenotes/notes/llmobs-experiment-status-reporting-16a969ad004ea43c.yaml b/dd-trace-py/releasenotes/notes/llmobs-experiment-status-reporting-16a969ad004ea43c.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-experiment-status-reporting-16a969ad004ea43c.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-experiment-status-reporting-16a969ad004ea43c.yaml
diff --git a/releasenotes/notes/llmobs-export-span-disabled-3e6ee88073db8186.yaml b/dd-trace-py/releasenotes/notes/llmobs-export-span-disabled-3e6ee88073db8186.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-export-span-disabled-3e6ee88073db8186.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-export-span-disabled-3e6ee88073db8186.yaml
diff --git a/releasenotes/notes/llmobs-fix-bedrock-cost-estimation-19af7556637be09e.yaml b/dd-trace-py/releasenotes/notes/llmobs-fix-bedrock-cost-estimation-19af7556637be09e.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-fix-bedrock-cost-estimation-19af7556637be09e.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-fix-bedrock-cost-estimation-19af7556637be09e.yaml
diff --git a/releasenotes/notes/llmobs-fix-incorrect-exported-trace-id-d35aeea97a8419c4.yaml b/dd-trace-py/releasenotes/notes/llmobs-fix-incorrect-exported-trace-id-d35aeea97a8419c4.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-fix-incorrect-exported-trace-id-d35aeea97a8419c4.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-fix-incorrect-exported-trace-id-d35aeea97a8419c4.yaml
diff --git a/releasenotes/notes/llmobs-fix-langgraph-span-linking-900f455f2e2b17df.yaml b/dd-trace-py/releasenotes/notes/llmobs-fix-langgraph-span-linking-900f455f2e2b17df.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-fix-langgraph-span-linking-900f455f2e2b17df.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-fix-langgraph-span-linking-900f455f2e2b17df.yaml
diff --git a/releasenotes/notes/llmobs-fix-prompt-optimization-template-2c9645c3cf27d798.yaml b/dd-trace-py/releasenotes/notes/llmobs-fix-prompt-optimization-template-2c9645c3cf27d798.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-fix-prompt-optimization-template-2c9645c3cf27d798.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-fix-prompt-optimization-template-2c9645c3cf27d798.yaml
diff --git a/releasenotes/notes/llmobs-generators-decorating-6b1c4bcf2462d218.yaml b/dd-trace-py/releasenotes/notes/llmobs-generators-decorating-6b1c4bcf2462d218.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-generators-decorating-6b1c4bcf2462d218.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-generators-decorating-6b1c4bcf2462d218.yaml
diff --git a/releasenotes/notes/llmobs-https-proxy-9ffc06b9f87df81b.yaml b/dd-trace-py/releasenotes/notes/llmobs-https-proxy-9ffc06b9f87df81b.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-https-proxy-9ffc06b9f87df81b.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-https-proxy-9ffc06b9f87df81b.yaml
diff --git a/releasenotes/notes/llmobs-json-metric-type-2e58cd6c746f9947.yaml b/dd-trace-py/releasenotes/notes/llmobs-json-metric-type-2e58cd6c746f9947.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-json-metric-type-2e58cd6c746f9947.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-json-metric-type-2e58cd6c746f9947.yaml
diff --git a/releasenotes/notes/llmobs-langchain-chat-model-tool-calls-fbc5ced7dfb2ea89.yaml b/dd-trace-py/releasenotes/notes/llmobs-langchain-chat-model-tool-calls-fbc5ced7dfb2ea89.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-langchain-chat-model-tool-calls-fbc5ced7dfb2ea89.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-langchain-chat-model-tool-calls-fbc5ced7dfb2ea89.yaml
diff --git a/releasenotes/notes/llmobs-langchain-streamed-calls-23a13029ac5d8907.yaml b/dd-trace-py/releasenotes/notes/llmobs-langchain-streamed-calls-23a13029ac5d8907.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-langchain-streamed-calls-23a13029ac5d8907.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-langchain-streamed-calls-23a13029ac5d8907.yaml
diff --git a/releasenotes/notes/llmobs-langchain-token-metrics-and-coloring-21eed854130b235c.yaml b/dd-trace-py/releasenotes/notes/llmobs-langchain-token-metrics-and-coloring-21eed854130b235c.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-langchain-token-metrics-and-coloring-21eed854130b235c.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-langchain-token-metrics-and-coloring-21eed854130b235c.yaml
diff --git a/releasenotes/notes/llmobs-langgraph-agent-manifest-06c0e77512fcb545.yaml b/dd-trace-py/releasenotes/notes/llmobs-langgraph-agent-manifest-06c0e77512fcb545.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-langgraph-agent-manifest-06c0e77512fcb545.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-langgraph-agent-manifest-06c0e77512fcb545.yaml
diff --git a/releasenotes/notes/llmobs-llm-decorator-output-annotation-cb0506701b575f50.yaml b/dd-trace-py/releasenotes/notes/llmobs-llm-decorator-output-annotation-cb0506701b575f50.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-llm-decorator-output-annotation-cb0506701b575f50.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-llm-decorator-output-annotation-cb0506701b575f50.yaml
diff --git a/releasenotes/notes/llmobs-llm-judge-evaluator-d494eb5444a34cbf.yaml b/dd-trace-py/releasenotes/notes/llmobs-llm-judge-evaluator-d494eb5444a34cbf.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-llm-judge-evaluator-d494eb5444a34cbf.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-llm-judge-evaluator-d494eb5444a34cbf.yaml
diff --git a/releasenotes/notes/llmobs-ml-app-sensible-default-502cd05ee2af8485.yaml b/dd-trace-py/releasenotes/notes/llmobs-ml-app-sensible-default-502cd05ee2af8485.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-ml-app-sensible-default-502cd05ee2af8485.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-ml-app-sensible-default-502cd05ee2af8485.yaml
diff --git a/releasenotes/notes/llmobs-no-annotate-self-9da3db98283403a7.yaml b/dd-trace-py/releasenotes/notes/llmobs-no-annotate-self-9da3db98283403a7.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-no-annotate-self-9da3db98283403a7.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-no-annotate-self-9da3db98283403a7.yaml
diff --git a/releasenotes/notes/llmobs-openai-model-none-fallback-3e12be44b67441fb.yaml b/dd-trace-py/releasenotes/notes/llmobs-openai-model-none-fallback-3e12be44b67441fb.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-openai-model-none-fallback-3e12be44b67441fb.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-openai-model-none-fallback-3e12be44b67441fb.yaml
diff --git a/releasenotes/notes/llmobs-openai-responses-fixes-d502f4d8d00e4f40.yaml b/dd-trace-py/releasenotes/notes/llmobs-openai-responses-fixes-d502f4d8d00e4f40.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-openai-responses-fixes-d502f4d8d00e4f40.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-openai-responses-fixes-d502f4d8d00e4f40.yaml
diff --git a/releasenotes/notes/llmobs-pass-record-metadata-to-task-e8c98291d0b835f4.yaml b/dd-trace-py/releasenotes/notes/llmobs-pass-record-metadata-to-task-e8c98291d0b835f4.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-pass-record-metadata-to-task-e8c98291d0b835f4.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-pass-record-metadata-to-task-e8c98291d0b835f4.yaml
diff --git a/releasenotes/notes/llmobs-per-record-eval-execution-05dff30c799b8f7e.yaml b/dd-trace-py/releasenotes/notes/llmobs-per-record-eval-execution-05dff30c799b8f7e.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-per-record-eval-execution-05dff30c799b8f7e.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-per-record-eval-execution-05dff30c799b8f7e.yaml
diff --git a/releasenotes/notes/llmobs-processor-d5cb47b12bc3bbd1.yaml b/dd-trace-py/releasenotes/notes/llmobs-processor-d5cb47b12bc3bbd1.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-processor-d5cb47b12bc3bbd1.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-processor-d5cb47b12bc3bbd1.yaml
diff --git a/releasenotes/notes/llmobs-propagate-ml-app-460fa538e39dd4f0.yaml b/dd-trace-py/releasenotes/notes/llmobs-propagate-ml-app-460fa538e39dd4f0.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-propagate-ml-app-460fa538e39dd4f0.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-propagate-ml-app-460fa538e39dd4f0.yaml
diff --git a/releasenotes/notes/llmobs-public-export-llmjudge-b26e5a544c4a4ecb.yaml b/dd-trace-py/releasenotes/notes/llmobs-public-export-llmjudge-b26e5a544c4a4ecb.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-public-export-llmjudge-b26e5a544c4a4ecb.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-public-export-llmjudge-b26e5a544c4a4ecb.yaml
diff --git a/releasenotes/notes/llmobs-pydantic-serialization-53ec5303b834cb72.yaml b/dd-trace-py/releasenotes/notes/llmobs-pydantic-serialization-53ec5303b834cb72.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-pydantic-serialization-53ec5303b834cb72.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-pydantic-serialization-53ec5303b834cb72.yaml
diff --git a/releasenotes/notes/llmobs-raises-instead-of-logging-788b7d201bcad2bf.yaml b/dd-trace-py/releasenotes/notes/llmobs-raises-instead-of-logging-788b7d201bcad2bf.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-raises-instead-of-logging-788b7d201bcad2bf.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-raises-instead-of-logging-788b7d201bcad2bf.yaml
diff --git a/releasenotes/notes/llmobs-span-proc-drop-170c0be459e84722.yaml b/dd-trace-py/releasenotes/notes/llmobs-span-proc-drop-170c0be459e84722.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-span-proc-drop-170c0be459e84722.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-span-proc-drop-170c0be459e84722.yaml
diff --git a/releasenotes/notes/llmobs-stop-defaulting-session-id-55c0dfaf1fe5448b.yaml b/dd-trace-py/releasenotes/notes/llmobs-stop-defaulting-session-id-55c0dfaf1fe5448b.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-stop-defaulting-session-id-55c0dfaf1fe5448b.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-stop-defaulting-session-id-55c0dfaf1fe5448b.yaml
diff --git a/releasenotes/notes/llmobs-submit-evals-requires-api-key-9c0c068288c4cf55.yaml b/dd-trace-py/releasenotes/notes/llmobs-submit-evals-requires-api-key-9c0c068288c4cf55.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-submit-evals-requires-api-key-9c0c068288c4cf55.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-submit-evals-requires-api-key-9c0c068288c4cf55.yaml
diff --git a/releasenotes/notes/llmobs-submit-evals-updates-c11e77ed871b4986.yaml b/dd-trace-py/releasenotes/notes/llmobs-submit-evals-updates-c11e77ed871b4986.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-submit-evals-updates-c11e77ed871b4986.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-submit-evals-updates-c11e77ed871b4986.yaml
diff --git a/releasenotes/notes/llmobs-trace-client-side-requests-5457da361915cae6.yaml b/dd-trace-py/releasenotes/notes/llmobs-trace-client-side-requests-5457da361915cae6.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-trace-client-side-requests-5457da361915cae6.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-trace-client-side-requests-5457da361915cae6.yaml
diff --git a/releasenotes/notes/llmobs-trace-id-propagation-18d1b66800e16471.yaml b/dd-trace-py/releasenotes/notes/llmobs-trace-id-propagation-18d1b66800e16471.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-trace-id-propagation-18d1b66800e16471.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-trace-id-propagation-18d1b66800e16471.yaml
diff --git a/releasenotes/notes/llmobs-trace-session-level-evals-c5e45391b3e52604.yaml b/dd-trace-py/releasenotes/notes/llmobs-trace-session-level-evals-c5e45391b3e52604.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-trace-session-level-evals-c5e45391b3e52604.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-trace-session-level-evals-c5e45391b3e52604.yaml
diff --git a/releasenotes/notes/llmobs-url-override-5d791534021f66a9.yaml b/dd-trace-py/releasenotes/notes/llmobs-url-override-5d791534021f66a9.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-url-override-5d791534021f66a9.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-url-override-5d791534021f66a9.yaml
diff --git a/releasenotes/notes/llmobs-user-defined-dataset-record-ids-17fd611d7200fd7c.yaml b/dd-trace-py/releasenotes/notes/llmobs-user-defined-dataset-record-ids-17fd611d7200fd7c.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-user-defined-dataset-record-ids-17fd611d7200fd7c.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-user-defined-dataset-record-ids-17fd611d7200fd7c.yaml
diff --git a/releasenotes/notes/llmobs-workflow-io-ae4ab508e7fe336a.yaml b/dd-trace-py/releasenotes/notes/llmobs-workflow-io-ae4ab508e7fe336a.yaml
similarity index 100%
rename from releasenotes/notes/llmobs-workflow-io-ae4ab508e7fe336a.yaml
rename to dd-trace-py/releasenotes/notes/llmobs-workflow-io-ae4ab508e7fe336a.yaml
diff --git a/releasenotes/notes/llmobs_annotation_context_persist_fix-632f1824de8446f5.yaml b/dd-trace-py/releasenotes/notes/llmobs_annotation_context_persist_fix-632f1824de8446f5.yaml
similarity index 100%
rename from releasenotes/notes/llmobs_annotation_context_persist_fix-632f1824de8446f5.yaml
rename to dd-trace-py/releasenotes/notes/llmobs_annotation_context_persist_fix-632f1824de8446f5.yaml
diff --git a/releasenotes/notes/llmobs_context_fix-692c453a633b4742.yaml b/dd-trace-py/releasenotes/notes/llmobs_context_fix-692c453a633b4742.yaml
similarity index 100%
rename from releasenotes/notes/llmobs_context_fix-692c453a633b4742.yaml
rename to dd-trace-py/releasenotes/notes/llmobs_context_fix-692c453a633b4742.yaml
diff --git a/releasenotes/notes/llmobs_otel_evals-b63e6f953b4c806c.yaml b/dd-trace-py/releasenotes/notes/llmobs_otel_evals-b63e6f953b4c806c.yaml
similarity index 100%
rename from releasenotes/notes/llmobs_otel_evals-b63e6f953b4c806c.yaml
rename to dd-trace-py/releasenotes/notes/llmobs_otel_evals-b63e6f953b4c806c.yaml
diff --git a/releasenotes/notes/llmobs_tool_definitions_custom_instr-15282e424cfddaf8.yaml b/dd-trace-py/releasenotes/notes/llmobs_tool_definitions_custom_instr-15282e424cfddaf8.yaml
similarity index 100%
rename from releasenotes/notes/llmobs_tool_definitions_custom_instr-15282e424cfddaf8.yaml
rename to dd-trace-py/releasenotes/notes/llmobs_tool_definitions_custom_instr-15282e424cfddaf8.yaml
diff --git a/releasenotes/notes/llmobs_toolcall_toolresult_custom_instr-4fcc7708bebc6f5c.yaml b/dd-trace-py/releasenotes/notes/llmobs_toolcall_toolresult_custom_instr-4fcc7708bebc6f5c.yaml
similarity index 100%
rename from releasenotes/notes/llmobs_toolcall_toolresult_custom_instr-4fcc7708bebc6f5c.yaml
rename to dd-trace-py/releasenotes/notes/llmobs_toolcall_toolresult_custom_instr-4fcc7708bebc6f5c.yaml
diff --git a/releasenotes/notes/lock-log-df92d0fddb165ebe.yaml b/dd-trace-py/releasenotes/notes/lock-log-df92d0fddb165ebe.yaml
similarity index 100%
rename from releasenotes/notes/lock-log-df92d0fddb165ebe.yaml
rename to dd-trace-py/releasenotes/notes/lock-log-df92d0fddb165ebe.yaml
diff --git a/releasenotes/notes/lock-profiler-fix-inflated-lock-hold-times-c0da83d00a6d704e.yaml b/dd-trace-py/releasenotes/notes/lock-profiler-fix-inflated-lock-hold-times-c0da83d00a6d704e.yaml
similarity index 100%
rename from releasenotes/notes/lock-profiler-fix-inflated-lock-hold-times-c0da83d00a6d704e.yaml
rename to dd-trace-py/releasenotes/notes/lock-profiler-fix-inflated-lock-hold-times-c0da83d00a6d704e.yaml
diff --git a/releasenotes/notes/log-correlation-context-0ca54b5caf687b2d.yaml b/dd-trace-py/releasenotes/notes/log-correlation-context-0ca54b5caf687b2d.yaml
similarity index 100%
rename from releasenotes/notes/log-correlation-context-0ca54b5caf687b2d.yaml
rename to dd-trace-py/releasenotes/notes/log-correlation-context-0ca54b5caf687b2d.yaml
diff --git a/releasenotes/notes/log-correlation-context-22d56ee0b5cc9cfa.yaml b/dd-trace-py/releasenotes/notes/log-correlation-context-22d56ee0b5cc9cfa.yaml
similarity index 100%
rename from releasenotes/notes/log-correlation-context-22d56ee0b5cc9cfa.yaml
rename to dd-trace-py/releasenotes/notes/log-correlation-context-22d56ee0b5cc9cfa.yaml
diff --git a/releasenotes/notes/log-submission-evp-proxy-and-agentless-e509603f9eecb147.yaml b/dd-trace-py/releasenotes/notes/log-submission-evp-proxy-and-agentless-e509603f9eecb147.yaml
similarity index 100%
rename from releasenotes/notes/log-submission-evp-proxy-and-agentless-e509603f9eecb147.yaml
rename to dd-trace-py/releasenotes/notes/log-submission-evp-proxy-and-agentless-e509603f9eecb147.yaml
diff --git a/releasenotes/notes/log-warning-on-kinesis-stream-metadata-not-found-a921cabed5d4397e.yaml b/dd-trace-py/releasenotes/notes/log-warning-on-kinesis-stream-metadata-not-found-a921cabed5d4397e.yaml
similarity index 100%
rename from releasenotes/notes/log-warning-on-kinesis-stream-metadata-not-found-a921cabed5d4397e.yaml
rename to dd-trace-py/releasenotes/notes/log-warning-on-kinesis-stream-metadata-not-found-a921cabed5d4397e.yaml
diff --git a/releasenotes/notes/log_correlation_64_bit-a0a8f64116856534.yaml b/dd-trace-py/releasenotes/notes/log_correlation_64_bit-a0a8f64116856534.yaml
similarity index 100%
rename from releasenotes/notes/log_correlation_64_bit-a0a8f64116856534.yaml
rename to dd-trace-py/releasenotes/notes/log_correlation_64_bit-a0a8f64116856534.yaml
diff --git a/releasenotes/notes/logbook-integration-2bf233e09789076a.yaml b/dd-trace-py/releasenotes/notes/logbook-integration-2bf233e09789076a.yaml
similarity index 100%
rename from releasenotes/notes/logbook-integration-2bf233e09789076a.yaml
rename to dd-trace-py/releasenotes/notes/logbook-integration-2bf233e09789076a.yaml
diff --git a/releasenotes/notes/loguru-toplevel-16001db95a7c889a.yaml b/dd-trace-py/releasenotes/notes/loguru-toplevel-16001db95a7c889a.yaml
similarity index 100%
rename from releasenotes/notes/loguru-toplevel-16001db95a7c889a.yaml
rename to dd-trace-py/releasenotes/notes/loguru-toplevel-16001db95a7c889a.yaml
diff --git a/releasenotes/notes/loguru_integration-97c05bfae0b74d73.yaml b/dd-trace-py/releasenotes/notes/loguru_integration-97c05bfae0b74d73.yaml
similarity index 100%
rename from releasenotes/notes/loguru_integration-97c05bfae0b74d73.yaml
rename to dd-trace-py/releasenotes/notes/loguru_integration-97c05bfae0b74d73.yaml
diff --git a/releasenotes/notes/lower-minima-8c969f5a71402e01.yaml b/dd-trace-py/releasenotes/notes/lower-minima-8c969f5a71402e01.yaml
similarity index 100%
rename from releasenotes/notes/lower-minima-8c969f5a71402e01.yaml
rename to dd-trace-py/releasenotes/notes/lower-minima-8c969f5a71402e01.yaml
diff --git a/releasenotes/notes/make-ci-vis-ints-internal-532bc22d19bb62ab.yaml b/dd-trace-py/releasenotes/notes/make-ci-vis-ints-internal-532bc22d19bb62ab.yaml
similarity index 100%
rename from releasenotes/notes/make-ci-vis-ints-internal-532bc22d19bb62ab.yaml
rename to dd-trace-py/releasenotes/notes/make-ci-vis-ints-internal-532bc22d19bb62ab.yaml
diff --git a/releasenotes/notes/make-more-informative-info-command-cbd96b1099e01792.yaml b/dd-trace-py/releasenotes/notes/make-more-informative-info-command-cbd96b1099e01792.yaml
similarity index 100%
rename from releasenotes/notes/make-more-informative-info-command-cbd96b1099e01792.yaml
rename to dd-trace-py/releasenotes/notes/make-more-informative-info-command-cbd96b1099e01792.yaml
diff --git a/releasenotes/notes/make-obfuscation-consistent-8a2361bf3298e1be.yaml b/dd-trace-py/releasenotes/notes/make-obfuscation-consistent-8a2361bf3298e1be.yaml
similarity index 100%
rename from releasenotes/notes/make-obfuscation-consistent-8a2361bf3298e1be.yaml
rename to dd-trace-py/releasenotes/notes/make-obfuscation-consistent-8a2361bf3298e1be.yaml
diff --git a/releasenotes/notes/make-reactivate-serializable-4228bdd7a01f6ebb.yaml b/dd-trace-py/releasenotes/notes/make-reactivate-serializable-4228bdd7a01f6ebb.yaml
similarity index 100%
rename from releasenotes/notes/make-reactivate-serializable-4228bdd7a01f6ebb.yaml
rename to dd-trace-py/releasenotes/notes/make-reactivate-serializable-4228bdd7a01f6ebb.yaml
diff --git a/releasenotes/notes/make-rq-imp-details-internal-c54afd12ba7b4bb7.yaml b/dd-trace-py/releasenotes/notes/make-rq-imp-details-internal-c54afd12ba7b4bb7.yaml
similarity index 100%
rename from releasenotes/notes/make-rq-imp-details-internal-c54afd12ba7b4bb7.yaml
rename to dd-trace-py/releasenotes/notes/make-rq-imp-details-internal-c54afd12ba7b4bb7.yaml
diff --git a/releasenotes/notes/make-span-links-pickable-d57b92508f5d3a74.yaml b/dd-trace-py/releasenotes/notes/make-span-links-pickable-d57b92508f5d3a74.yaml
similarity index 100%
rename from releasenotes/notes/make-span-links-pickable-d57b92508f5d3a74.yaml
rename to dd-trace-py/releasenotes/notes/make-span-links-pickable-d57b92508f5d3a74.yaml
diff --git a/releasenotes/notes/make-tracer-configure-simplier-e13c731b3c937d22.yaml b/dd-trace-py/releasenotes/notes/make-tracer-configure-simplier-e13c731b3c937d22.yaml
similarity index 100%
rename from releasenotes/notes/make-tracer-configure-simplier-e13c731b3c937d22.yaml
rename to dd-trace-py/releasenotes/notes/make-tracer-configure-simplier-e13c731b3c937d22.yaml
diff --git a/releasenotes/notes/maria-missing-port-e30630b4f5a5ee33.yaml b/dd-trace-py/releasenotes/notes/maria-missing-port-e30630b4f5a5ee33.yaml
similarity index 100%
rename from releasenotes/notes/maria-missing-port-e30630b4f5a5ee33.yaml
rename to dd-trace-py/releasenotes/notes/maria-missing-port-e30630b4f5a5ee33.yaml
diff --git a/releasenotes/notes/mariadb-8e7bc94a0d1b8f02.yaml b/dd-trace-py/releasenotes/notes/mariadb-8e7bc94a0d1b8f02.yaml
similarity index 100%
rename from releasenotes/notes/mariadb-8e7bc94a0d1b8f02.yaml
rename to dd-trace-py/releasenotes/notes/mariadb-8e7bc94a0d1b8f02.yaml
diff --git a/releasenotes/notes/max_stack_trace_depth_top_percent-a840b8487674c046.yaml b/dd-trace-py/releasenotes/notes/max_stack_trace_depth_top_percent-a840b8487674c046.yaml
similarity index 100%
rename from releasenotes/notes/max_stack_trace_depth_top_percent-a840b8487674c046.yaml
rename to dd-trace-py/releasenotes/notes/max_stack_trace_depth_top_percent-a840b8487674c046.yaml
diff --git a/releasenotes/notes/mcp-client-more-tracing-77cb45acd861da3c.yaml b/dd-trace-py/releasenotes/notes/mcp-client-more-tracing-77cb45acd861da3c.yaml
similarity index 100%
rename from releasenotes/notes/mcp-client-more-tracing-77cb45acd861da3c.yaml
rename to dd-trace-py/releasenotes/notes/mcp-client-more-tracing-77cb45acd861da3c.yaml
diff --git a/releasenotes/notes/mcp-consistent-tool-call-format-f036b8f673f03547.yaml b/dd-trace-py/releasenotes/notes/mcp-consistent-tool-call-format-f036b8f673f03547.yaml
similarity index 100%
rename from releasenotes/notes/mcp-consistent-tool-call-format-f036b8f673f03547.yaml
rename to dd-trace-py/releasenotes/notes/mcp-consistent-tool-call-format-f036b8f673f03547.yaml
diff --git a/releasenotes/notes/mcp-llmobs-closed-resource-error-062cc479a0d343ef.yaml b/dd-trace-py/releasenotes/notes/mcp-llmobs-closed-resource-error-062cc479a0d343ef.yaml
similarity index 100%
rename from releasenotes/notes/mcp-llmobs-closed-resource-error-062cc479a0d343ef.yaml
rename to dd-trace-py/releasenotes/notes/mcp-llmobs-closed-resource-error-062cc479a0d343ef.yaml
diff --git a/releasenotes/notes/mcp-tracing-changes-4e0ac309865e782b.yaml b/dd-trace-py/releasenotes/notes/mcp-tracing-changes-4e0ac309865e782b.yaml
similarity index 100%
rename from releasenotes/notes/mcp-tracing-changes-4e0ac309865e782b.yaml
rename to dd-trace-py/releasenotes/notes/mcp-tracing-changes-4e0ac309865e782b.yaml
diff --git a/releasenotes/notes/memalloc-reentrancy-tls-fix-e706dec1d92fbe24.yaml b/dd-trace-py/releasenotes/notes/memalloc-reentrancy-tls-fix-e706dec1d92fbe24.yaml
similarity index 100%
rename from releasenotes/notes/memalloc-reentrancy-tls-fix-e706dec1d92fbe24.yaml
rename to dd-trace-py/releasenotes/notes/memalloc-reentrancy-tls-fix-e706dec1d92fbe24.yaml
diff --git a/releasenotes/notes/memory_profiler_unification-6478c2656a7adbfd.yaml b/dd-trace-py/releasenotes/notes/memory_profiler_unification-6478c2656a7adbfd.yaml
similarity index 100%
rename from releasenotes/notes/memory_profiler_unification-6478c2656a7adbfd.yaml
rename to dd-trace-py/releasenotes/notes/memory_profiler_unification-6478c2656a7adbfd.yaml
diff --git a/releasenotes/notes/metadata-for-eval-metrics-3d3bac0e0738fdc2.yaml b/dd-trace-py/releasenotes/notes/metadata-for-eval-metrics-3d3bac0e0738fdc2.yaml
similarity index 100%
rename from releasenotes/notes/metadata-for-eval-metrics-3d3bac0e0738fdc2.yaml
rename to dd-trace-py/releasenotes/notes/metadata-for-eval-metrics-3d3bac0e0738fdc2.yaml
diff --git a/releasenotes/notes/metrics-api-5fb1d572d7f7137e.yaml b/dd-trace-py/releasenotes/notes/metrics-api-5fb1d572d7f7137e.yaml
similarity index 100%
rename from releasenotes/notes/metrics-api-5fb1d572d7f7137e.yaml
rename to dd-trace-py/releasenotes/notes/metrics-api-5fb1d572d7f7137e.yaml
diff --git a/releasenotes/notes/migrate-parent-id-typing-9bff96cefc8d9a53.yaml b/dd-trace-py/releasenotes/notes/migrate-parent-id-typing-9bff96cefc8d9a53.yaml
similarity index 100%
rename from releasenotes/notes/migrate-parent-id-typing-9bff96cefc8d9a53.yaml
rename to dd-trace-py/releasenotes/notes/migrate-parent-id-typing-9bff96cefc8d9a53.yaml
diff --git a/releasenotes/notes/missing-asm-env-9a2eaa4936c35e0d.yaml b/dd-trace-py/releasenotes/notes/missing-asm-env-9a2eaa4936c35e0d.yaml
similarity index 100%
rename from releasenotes/notes/missing-asm-env-9a2eaa4936c35e0d.yaml
rename to dd-trace-py/releasenotes/notes/missing-asm-env-9a2eaa4936c35e0d.yaml
diff --git a/releasenotes/notes/missing-asm-env-again-bab2f6a06c6f366d.yaml b/dd-trace-py/releasenotes/notes/missing-asm-env-again-bab2f6a06c6f366d.yaml
similarity index 100%
rename from releasenotes/notes/missing-asm-env-again-bab2f6a06c6f366d.yaml
rename to dd-trace-py/releasenotes/notes/missing-asm-env-again-bab2f6a06c6f366d.yaml
diff --git a/releasenotes/notes/mitigate-1-5-gevent-regression-c505053014036c6a.yaml b/dd-trace-py/releasenotes/notes/mitigate-1-5-gevent-regression-c505053014036c6a.yaml
similarity index 100%
rename from releasenotes/notes/mitigate-1-5-gevent-regression-c505053014036c6a.yaml
rename to dd-trace-py/releasenotes/notes/mitigate-1-5-gevent-regression-c505053014036c6a.yaml
diff --git a/releasenotes/notes/modify-error-tracking-exceptions-6be5aa66cb4cd2ef.yaml b/dd-trace-py/releasenotes/notes/modify-error-tracking-exceptions-6be5aa66cb4cd2ef.yaml
similarity index 100%
rename from releasenotes/notes/modify-error-tracking-exceptions-6be5aa66cb4cd2ef.yaml
rename to dd-trace-py/releasenotes/notes/modify-error-tracking-exceptions-6be5aa66cb4cd2ef.yaml
diff --git a/releasenotes/notes/mongo-2f086c64dbbc8be1.yaml b/dd-trace-py/releasenotes/notes/mongo-2f086c64dbbc8be1.yaml
similarity index 100%
rename from releasenotes/notes/mongo-2f086c64dbbc8be1.yaml
rename to dd-trace-py/releasenotes/notes/mongo-2f086c64dbbc8be1.yaml
diff --git a/releasenotes/notes/monkey-import-exceptions-eb9557ea85a921fe.yaml b/dd-trace-py/releasenotes/notes/monkey-import-exceptions-eb9557ea85a921fe.yaml
similarity index 100%
rename from releasenotes/notes/monkey-import-exceptions-eb9557ea85a921fe.yaml
rename to dd-trace-py/releasenotes/notes/monkey-import-exceptions-eb9557ea85a921fe.yaml
diff --git a/releasenotes/notes/more-314-suites-bf99a7d7ef1b2128.yaml b/dd-trace-py/releasenotes/notes/more-314-suites-bf99a7d7ef1b2128.yaml
similarity index 100%
rename from releasenotes/notes/more-314-suites-bf99a7d7ef1b2128.yaml
rename to dd-trace-py/releasenotes/notes/more-314-suites-bf99a7d7ef1b2128.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-aioredis-ff7da7e2cee9c57b.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-aioredis-ff7da7e2cee9c57b.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-aioredis-ff7da7e2cee9c57b.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-aioredis-ff7da7e2cee9c57b.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-asyncpg-ab44088ac137baa6.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-asyncpg-ab44088ac137baa6.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-asyncpg-ab44088ac137baa6.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-asyncpg-ab44088ac137baa6.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-cassandra-c81f9627c3c7ed2c.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-cassandra-c81f9627c3c7ed2c.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-cassandra-c81f9627c3c7ed2c.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-cassandra-c81f9627c3c7ed2c.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-django-1554664491477408.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-django-1554664491477408.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-django-1554664491477408.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-django-1554664491477408.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-fastapi-348259e3fe88465e.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-fastapi-348259e3fe88465e.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-fastapi-348259e3fe88465e.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-fastapi-348259e3fe88465e.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-gevent-0502e072141b1758.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-gevent-0502e072141b1758.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-gevent-0502e072141b1758.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-gevent-0502e072141b1758.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-httplib-475d071a277b18cf.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-httplib-475d071a277b18cf.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-httplib-475d071a277b18cf.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-httplib-475d071a277b18cf.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-langchain-2cd7ff9a1362182d.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-langchain-2cd7ff9a1362182d.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-langchain-2cd7ff9a1362182d.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-langchain-2cd7ff9a1362182d.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-mako-e8684d5a46d60bb8.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-mako-e8684d5a46d60bb8.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-mako-e8684d5a46d60bb8.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-mako-e8684d5a46d60bb8.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-openai-0d4ab4241552ff94.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-openai-0d4ab4241552ff94.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-openai-0d4ab4241552ff94.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-openai-0d4ab4241552ff94.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-requests-951f55b729dd221c.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-requests-951f55b729dd221c.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-requests-951f55b729dd221c.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-requests-951f55b729dd221c.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-sanic-f255102899fc7c99.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-sanic-f255102899fc7c99.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-sanic-f255102899fc7c99.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-sanic-f255102899fc7c99.yaml
diff --git a/releasenotes/notes/move-integrations-to-internal-yaaredis-c553283b77c3b9e8.yaml b/dd-trace-py/releasenotes/notes/move-integrations-to-internal-yaaredis-c553283b77c3b9e8.yaml
similarity index 100%
rename from releasenotes/notes/move-integrations-to-internal-yaaredis-c553283b77c3b9e8.yaml
rename to dd-trace-py/releasenotes/notes/move-integrations-to-internal-yaaredis-c553283b77c3b9e8.yaml
diff --git a/releasenotes/notes/move-pin-and-filters-to-trace-package-2f47fa2d2592b413.yaml b/dd-trace-py/releasenotes/notes/move-pin-and-filters-to-trace-package-2f47fa2d2592b413.yaml
similarity index 100%
rename from releasenotes/notes/move-pin-and-filters-to-trace-package-2f47fa2d2592b413.yaml
rename to dd-trace-py/releasenotes/notes/move-pin-and-filters-to-trace-package-2f47fa2d2592b413.yaml
diff --git a/releasenotes/notes/moved-error-constants-97c7278a381b56d0.yaml b/dd-trace-py/releasenotes/notes/moved-error-constants-97c7278a381b56d0.yaml
similarity index 100%
rename from releasenotes/notes/moved-error-constants-97c7278a381b56d0.yaml
rename to dd-trace-py/releasenotes/notes/moved-error-constants-97c7278a381b56d0.yaml
diff --git a/releasenotes/notes/moved-priority-constants-316d6b3b791d6b3e.yaml b/dd-trace-py/releasenotes/notes/moved-priority-constants-316d6b3b791d6b3e.yaml
similarity index 100%
rename from releasenotes/notes/moved-priority-constants-316d6b3b791d6b3e.yaml
rename to dd-trace-py/releasenotes/notes/moved-priority-constants-316d6b3b791d6b3e.yaml
diff --git a/releasenotes/notes/moved-system-constants-7894698d5734235a.yaml b/dd-trace-py/releasenotes/notes/moved-system-constants-7894698d5734235a.yaml
similarity index 100%
rename from releasenotes/notes/moved-system-constants-7894698d5734235a.yaml
rename to dd-trace-py/releasenotes/notes/moved-system-constants-7894698d5734235a.yaml
diff --git a/releasenotes/notes/msgpack_for_appsec-e09c17e9cb568379.yaml b/dd-trace-py/releasenotes/notes/msgpack_for_appsec-e09c17e9cb568379.yaml
similarity index 100%
rename from releasenotes/notes/msgpack_for_appsec-e09c17e9cb568379.yaml
rename to dd-trace-py/releasenotes/notes/msgpack_for_appsec-e09c17e9cb568379.yaml
diff --git a/releasenotes/notes/munir-add-method-and-path-to-resource-names-d4c0a767756eeb27.yaml b/dd-trace-py/releasenotes/notes/munir-add-method-and-path-to-resource-names-d4c0a767756eeb27.yaml
similarity index 100%
rename from releasenotes/notes/munir-add-method-and-path-to-resource-names-d4c0a767756eeb27.yaml
rename to dd-trace-py/releasenotes/notes/munir-add-method-and-path-to-resource-names-d4c0a767756eeb27.yaml
diff --git a/releasenotes/notes/munir-avoid-ssi-for-uwsgi-ab6a6f783956002d.yaml b/dd-trace-py/releasenotes/notes/munir-avoid-ssi-for-uwsgi-ab6a6f783956002d.yaml
similarity index 100%
rename from releasenotes/notes/munir-avoid-ssi-for-uwsgi-ab6a6f783956002d.yaml
rename to dd-trace-py/releasenotes/notes/munir-avoid-ssi-for-uwsgi-ab6a6f783956002d.yaml
diff --git a/releasenotes/notes/munir-deprecate-rc-http-configs-206f6c60ff383c05.yaml b/dd-trace-py/releasenotes/notes/munir-deprecate-rc-http-configs-206f6c60ff383c05.yaml
similarity index 100%
rename from releasenotes/notes/munir-deprecate-rc-http-configs-206f6c60ff383c05.yaml
rename to dd-trace-py/releasenotes/notes/munir-deprecate-rc-http-configs-206f6c60ff383c05.yaml
diff --git a/releasenotes/notes/munir-pymongo-fix-patching-545f3947644c91cd.yaml b/dd-trace-py/releasenotes/notes/munir-pymongo-fix-patching-545f3947644c91cd.yaml
similarity index 100%
rename from releasenotes/notes/munir-pymongo-fix-patching-545f3947644c91cd.yaml
rename to dd-trace-py/releasenotes/notes/munir-pymongo-fix-patching-545f3947644c91cd.yaml
diff --git a/releasenotes/notes/munir-refactor-trace-utils-e887e8da8a01430b.yaml b/dd-trace-py/releasenotes/notes/munir-refactor-trace-utils-e887e8da8a01430b.yaml
similarity index 100%
rename from releasenotes/notes/munir-refactor-trace-utils-e887e8da8a01430b.yaml
rename to dd-trace-py/releasenotes/notes/munir-refactor-trace-utils-e887e8da8a01430b.yaml
diff --git a/releasenotes/notes/munir-remove-flase-e3a2f62ea8c67425.yaml b/dd-trace-py/releasenotes/notes/munir-remove-flase-e3a2f62ea8c67425.yaml
similarity index 100%
rename from releasenotes/notes/munir-remove-flase-e3a2f62ea8c67425.yaml
rename to dd-trace-py/releasenotes/notes/munir-remove-flase-e3a2f62ea8c67425.yaml
diff --git a/releasenotes/notes/munir-sampling-remove-unused-code-1e85307577474695.yaml b/dd-trace-py/releasenotes/notes/munir-sampling-remove-unused-code-1e85307577474695.yaml
similarity index 100%
rename from releasenotes/notes/munir-sampling-remove-unused-code-1e85307577474695.yaml
rename to dd-trace-py/releasenotes/notes/munir-sampling-remove-unused-code-1e85307577474695.yaml
diff --git a/releasenotes/notes/mysql-python-removal-f0578e89590aaf2f.yaml b/dd-trace-py/releasenotes/notes/mysql-python-removal-f0578e89590aaf2f.yaml
similarity index 100%
rename from releasenotes/notes/mysql-python-removal-f0578e89590aaf2f.yaml
rename to dd-trace-py/releasenotes/notes/mysql-python-removal-f0578e89590aaf2f.yaml
diff --git a/releasenotes/notes/mysql-support-aio-connect-d8b0cb15b32938bd.yaml b/dd-trace-py/releasenotes/notes/mysql-support-aio-connect-d8b0cb15b32938bd.yaml
similarity index 100%
rename from releasenotes/notes/mysql-support-aio-connect-d8b0cb15b32938bd.yaml
rename to dd-trace-py/releasenotes/notes/mysql-support-aio-connect-d8b0cb15b32938bd.yaml
diff --git a/releasenotes/notes/mysqldb-trace-connect-53686ab262bf37d5.yaml b/dd-trace-py/releasenotes/notes/mysqldb-trace-connect-53686ab262bf37d5.yaml
similarity index 100%
rename from releasenotes/notes/mysqldb-trace-connect-53686ab262bf37d5.yaml
rename to dd-trace-py/releasenotes/notes/mysqldb-trace-connect-53686ab262bf37d5.yaml
diff --git a/releasenotes/notes/negative-trace-id-813bd867c1c8553e.yaml b/dd-trace-py/releasenotes/notes/negative-trace-id-813bd867c1c8553e.yaml
similarity index 100%
rename from releasenotes/notes/negative-trace-id-813bd867c1c8553e.yaml
rename to dd-trace-py/releasenotes/notes/negative-trace-id-813bd867c1c8553e.yaml
diff --git a/releasenotes/notes/no-linux-32bit-cd10b5e02e83674b.yaml b/dd-trace-py/releasenotes/notes/no-linux-32bit-cd10b5e02e83674b.yaml
similarity index 100%
rename from releasenotes/notes/no-linux-32bit-cd10b5e02e83674b.yaml
rename to dd-trace-py/releasenotes/notes/no-linux-32bit-cd10b5e02e83674b.yaml
diff --git a/releasenotes/notes/no-terminate-on-extend-join-aspects-0cf5ddcaaf836168.yaml b/dd-trace-py/releasenotes/notes/no-terminate-on-extend-join-aspects-0cf5ddcaaf836168.yaml
similarity index 100%
rename from releasenotes/notes/no-terminate-on-extend-join-aspects-0cf5ddcaaf836168.yaml
rename to dd-trace-py/releasenotes/notes/no-terminate-on-extend-join-aspects-0cf5ddcaaf836168.yaml
diff --git a/releasenotes/notes/no_IAST_unguarded_loading_in_common_module_patches-123cf6d3f8844823.yaml b/dd-trace-py/releasenotes/notes/no_IAST_unguarded_loading_in_common_module_patches-123cf6d3f8844823.yaml
similarity index 100%
rename from releasenotes/notes/no_IAST_unguarded_loading_in_common_module_patches-123cf6d3f8844823.yaml
rename to dd-trace-py/releasenotes/notes/no_IAST_unguarded_loading_in_common_module_patches-123cf6d3f8844823.yaml
diff --git a/releasenotes/notes/nogevent-6f2892cb412f987f.yaml b/dd-trace-py/releasenotes/notes/nogevent-6f2892cb412f987f.yaml
similarity index 100%
rename from releasenotes/notes/nogevent-6f2892cb412f987f.yaml
rename to dd-trace-py/releasenotes/notes/nogevent-6f2892cb412f987f.yaml
diff --git a/releasenotes/notes/nogevent-rlock-original-9e387eafb2be3d27.yaml b/dd-trace-py/releasenotes/notes/nogevent-rlock-original-9e387eafb2be3d27.yaml
similarity index 100%
rename from releasenotes/notes/nogevent-rlock-original-9e387eafb2be3d27.yaml
rename to dd-trace-py/releasenotes/notes/nogevent-rlock-original-9e387eafb2be3d27.yaml
diff --git a/releasenotes/notes/non-active-span-3398e88b19eb94c3.yaml b/dd-trace-py/releasenotes/notes/non-active-span-3398e88b19eb94c3.yaml
similarity index 100%
rename from releasenotes/notes/non-active-span-3398e88b19eb94c3.yaml
rename to dd-trace-py/releasenotes/notes/non-active-span-3398e88b19eb94c3.yaml
diff --git a/releasenotes/notes/null-trace-propagation-95ca602d2cc05ea1.yaml b/dd-trace-py/releasenotes/notes/null-trace-propagation-95ca602d2cc05ea1.yaml
similarity index 100%
rename from releasenotes/notes/null-trace-propagation-95ca602d2cc05ea1.yaml
rename to dd-trace-py/releasenotes/notes/null-trace-propagation-95ca602d2cc05ea1.yaml
diff --git a/releasenotes/notes/oai-p-cache-78c511f97709a357.yaml b/dd-trace-py/releasenotes/notes/oai-p-cache-78c511f97709a357.yaml
similarity index 100%
rename from releasenotes/notes/oai-p-cache-78c511f97709a357.yaml
rename to dd-trace-py/releasenotes/notes/oai-p-cache-78c511f97709a357.yaml
diff --git a/releasenotes/notes/oai-sys-prompt-46909baa4e9b44c1.yaml b/dd-trace-py/releasenotes/notes/oai-sys-prompt-46909baa4e9b44c1.yaml
similarity index 100%
rename from releasenotes/notes/oai-sys-prompt-46909baa4e9b44c1.yaml
rename to dd-trace-py/releasenotes/notes/oai-sys-prompt-46909baa4e9b44c1.yaml
diff --git a/releasenotes/notes/oai-tool-outputs-f12664426a1ba81e.yaml b/dd-trace-py/releasenotes/notes/oai-tool-outputs-f12664426a1ba81e.yaml
similarity index 100%
rename from releasenotes/notes/oai-tool-outputs-f12664426a1ba81e.yaml
rename to dd-trace-py/releasenotes/notes/oai-tool-outputs-f12664426a1ba81e.yaml
diff --git a/releasenotes/notes/old-agent-8193550a76b21357.yaml b/dd-trace-py/releasenotes/notes/old-agent-8193550a76b21357.yaml
similarity index 100%
rename from releasenotes/notes/old-agent-8193550a76b21357.yaml
rename to dd-trace-py/releasenotes/notes/old-agent-8193550a76b21357.yaml
diff --git a/releasenotes/notes/on-exit-conditional-7bc86389271f3847.yaml b/dd-trace-py/releasenotes/notes/on-exit-conditional-7bc86389271f3847.yaml
similarity index 100%
rename from releasenotes/notes/on-exit-conditional-7bc86389271f3847.yaml
rename to dd-trace-py/releasenotes/notes/on-exit-conditional-7bc86389271f3847.yaml
diff --git a/releasenotes/notes/only-add-log-handler-when-not-already-configured-60cb797f5381a6ef.yaml b/dd-trace-py/releasenotes/notes/only-add-log-handler-when-not-already-configured-60cb797f5381a6ef.yaml
similarity index 100%
rename from releasenotes/notes/only-add-log-handler-when-not-already-configured-60cb797f5381a6ef.yaml
rename to dd-trace-py/releasenotes/notes/only-add-log-handler-when-not-already-configured-60cb797f5381a6ef.yaml
diff --git a/releasenotes/notes/only-rate-limit-on-sampling-rules-6f807defa7d0f5f1.yaml b/dd-trace-py/releasenotes/notes/only-rate-limit-on-sampling-rules-6f807defa7d0f5f1.yaml
similarity index 100%
rename from releasenotes/notes/only-rate-limit-on-sampling-rules-6f807defa7d0f5f1.yaml
rename to dd-trace-py/releasenotes/notes/only-rate-limit-on-sampling-rules-6f807defa7d0f5f1.yaml
diff --git a/releasenotes/notes/openai-370e818ad3e1de70.yaml b/dd-trace-py/releasenotes/notes/openai-370e818ad3e1de70.yaml
similarity index 100%
rename from releasenotes/notes/openai-370e818ad3e1de70.yaml
rename to dd-trace-py/releasenotes/notes/openai-370e818ad3e1de70.yaml
diff --git a/releasenotes/notes/openai-agents-sdk-9a251c2a812a6353.yaml b/dd-trace-py/releasenotes/notes/openai-agents-sdk-9a251c2a812a6353.yaml
similarity index 100%
rename from releasenotes/notes/openai-agents-sdk-9a251c2a812a6353.yaml
rename to dd-trace-py/releasenotes/notes/openai-agents-sdk-9a251c2a812a6353.yaml
diff --git a/releasenotes/notes/openai-agents-support-reasoning-a782615651107cc9.yaml b/dd-trace-py/releasenotes/notes/openai-agents-support-reasoning-a782615651107cc9.yaml
similarity index 100%
rename from releasenotes/notes/openai-agents-support-reasoning-a782615651107cc9.yaml
rename to dd-trace-py/releasenotes/notes/openai-agents-support-reasoning-a782615651107cc9.yaml
diff --git a/releasenotes/notes/openai-async-timeout-errors-f9ccc1adbe4ed14e.yaml b/dd-trace-py/releasenotes/notes/openai-async-timeout-errors-f9ccc1adbe4ed14e.yaml
similarity index 100%
rename from releasenotes/notes/openai-async-timeout-errors-f9ccc1adbe4ed14e.yaml
rename to dd-trace-py/releasenotes/notes/openai-async-timeout-errors-f9ccc1adbe4ed14e.yaml
diff --git a/releasenotes/notes/openai-fix-logging-extra-endpoints-d6563f7dd1a5828b.yaml b/dd-trace-py/releasenotes/notes/openai-fix-logging-extra-endpoints-d6563f7dd1a5828b.yaml
similarity index 100%
rename from releasenotes/notes/openai-fix-logging-extra-endpoints-d6563f7dd1a5828b.yaml
rename to dd-trace-py/releasenotes/notes/openai-fix-logging-extra-endpoints-d6563f7dd1a5828b.yaml
diff --git a/releasenotes/notes/openai-function-calling-support-d344391afd053150.yaml b/dd-trace-py/releasenotes/notes/openai-function-calling-support-d344391afd053150.yaml
similarity index 100%
rename from releasenotes/notes/openai-function-calling-support-d344391afd053150.yaml
rename to dd-trace-py/releasenotes/notes/openai-function-calling-support-d344391afd053150.yaml
diff --git a/releasenotes/notes/openai-mcp-support-6529a8c07e00a6a1.yaml b/dd-trace-py/releasenotes/notes/openai-mcp-support-6529a8c07e00a6a1.yaml
similarity index 100%
rename from releasenotes/notes/openai-mcp-support-6529a8c07e00a6a1.yaml
rename to dd-trace-py/releasenotes/notes/openai-mcp-support-6529a8c07e00a6a1.yaml
diff --git a/releasenotes/notes/openai-model-tag-2482b3d5b2905db9.yaml b/dd-trace-py/releasenotes/notes/openai-model-tag-2482b3d5b2905db9.yaml
similarity index 100%
rename from releasenotes/notes/openai-model-tag-2482b3d5b2905db9.yaml
rename to dd-trace-py/releasenotes/notes/openai-model-tag-2482b3d5b2905db9.yaml
diff --git a/releasenotes/notes/openai-reasoning-token-c9300fb856562b7b.yaml b/dd-trace-py/releasenotes/notes/openai-reasoning-token-c9300fb856562b7b.yaml
similarity index 100%
rename from releasenotes/notes/openai-reasoning-token-c9300fb856562b7b.yaml
rename to dd-trace-py/releasenotes/notes/openai-reasoning-token-c9300fb856562b7b.yaml
diff --git a/releasenotes/notes/openai-responses-apm-e20c66473f3da435.yaml b/dd-trace-py/releasenotes/notes/openai-responses-apm-e20c66473f3da435.yaml
similarity index 100%
rename from releasenotes/notes/openai-responses-apm-e20c66473f3da435.yaml
rename to dd-trace-py/releasenotes/notes/openai-responses-apm-e20c66473f3da435.yaml
diff --git a/releasenotes/notes/openai-responses-early-support-b44a3216b1adf575.yaml b/dd-trace-py/releasenotes/notes/openai-responses-early-support-b44a3216b1adf575.yaml
similarity index 100%
rename from releasenotes/notes/openai-responses-early-support-b44a3216b1adf575.yaml
rename to dd-trace-py/releasenotes/notes/openai-responses-early-support-b44a3216b1adf575.yaml
diff --git a/releasenotes/notes/openai-responses-llm-2194499974f7324e.yaml b/dd-trace-py/releasenotes/notes/openai-responses-llm-2194499974f7324e.yaml
similarity index 100%
rename from releasenotes/notes/openai-responses-llm-2194499974f7324e.yaml
rename to dd-trace-py/releasenotes/notes/openai-responses-llm-2194499974f7324e.yaml
diff --git a/releasenotes/notes/openai-streamed-completions-39f9eb14625222de.yaml b/dd-trace-py/releasenotes/notes/openai-streamed-completions-39f9eb14625222de.yaml
similarity index 100%
rename from releasenotes/notes/openai-streamed-completions-39f9eb14625222de.yaml
rename to dd-trace-py/releasenotes/notes/openai-streamed-completions-39f9eb14625222de.yaml
diff --git a/releasenotes/notes/openai-tiktoken-42681dbd1c5ea215.yaml b/dd-trace-py/releasenotes/notes/openai-tiktoken-42681dbd1c5ea215.yaml
similarity index 100%
rename from releasenotes/notes/openai-tiktoken-42681dbd1c5ea215.yaml
rename to dd-trace-py/releasenotes/notes/openai-tiktoken-42681dbd1c5ea215.yaml
diff --git a/releasenotes/notes/openai_check_to_make_sure_current_span-0e75acebe88de352.yaml b/dd-trace-py/releasenotes/notes/openai_check_to_make_sure_current_span-0e75acebe88de352.yaml
similarity index 100%
rename from releasenotes/notes/openai_check_to_make_sure_current_span-0e75acebe88de352.yaml
rename to dd-trace-py/releasenotes/notes/openai_check_to_make_sure_current_span-0e75acebe88de352.yaml
diff --git a/releasenotes/notes/openai_tool_usage-ef5eaf531317ac3b.yaml b/dd-trace-py/releasenotes/notes/openai_tool_usage-ef5eaf531317ac3b.yaml
similarity index 100%
rename from releasenotes/notes/openai_tool_usage-ef5eaf531317ac3b.yaml
rename to dd-trace-py/releasenotes/notes/openai_tool_usage-ef5eaf531317ac3b.yaml
diff --git a/releasenotes/notes/openfeature-20861a1623a8cddd.yaml b/dd-trace-py/releasenotes/notes/openfeature-20861a1623a8cddd.yaml
similarity index 100%
rename from releasenotes/notes/openfeature-20861a1623a8cddd.yaml
rename to dd-trace-py/releasenotes/notes/openfeature-20861a1623a8cddd.yaml
diff --git a/releasenotes/notes/openfeature-flag-not-found-error-d31bde19aa5e373f.yaml b/dd-trace-py/releasenotes/notes/openfeature-flag-not-found-error-d31bde19aa5e373f.yaml
similarity index 100%
rename from releasenotes/notes/openfeature-flag-not-found-error-d31bde19aa5e373f.yaml
rename to dd-trace-py/releasenotes/notes/openfeature-flag-not-found-error-d31bde19aa5e373f.yaml
diff --git a/releasenotes/notes/opentelemetry-support-span-events-66c79465a3f68180.yaml b/dd-trace-py/releasenotes/notes/opentelemetry-support-span-events-66c79465a3f68180.yaml
similarity index 100%
rename from releasenotes/notes/opentelemetry-support-span-events-66c79465a3f68180.yaml
rename to dd-trace-py/releasenotes/notes/opentelemetry-support-span-events-66c79465a3f68180.yaml
diff --git a/releasenotes/notes/opentelemetry_trace_flags-f7fcfb9bef21f921.yaml b/dd-trace-py/releasenotes/notes/opentelemetry_trace_flags-f7fcfb9bef21f921.yaml
similarity index 100%
rename from releasenotes/notes/opentelemetry_trace_flags-f7fcfb9bef21f921.yaml
rename to dd-trace-py/releasenotes/notes/opentelemetry_trace_flags-f7fcfb9bef21f921.yaml
diff --git a/releasenotes/notes/opentracer-baggage-prefix-fix-909cd6f665eb2c84.yaml b/dd-trace-py/releasenotes/notes/opentracer-baggage-prefix-fix-909cd6f665eb2c84.yaml
similarity index 100%
rename from releasenotes/notes/opentracer-baggage-prefix-fix-909cd6f665eb2c84.yaml
rename to dd-trace-py/releasenotes/notes/opentracer-baggage-prefix-fix-909cd6f665eb2c84.yaml
diff --git a/releasenotes/notes/opentracer-config-4b0422f49f325584.yaml b/dd-trace-py/releasenotes/notes/opentracer-config-4b0422f49f325584.yaml
similarity index 100%
rename from releasenotes/notes/opentracer-config-4b0422f49f325584.yaml
rename to dd-trace-py/releasenotes/notes/opentracer-config-4b0422f49f325584.yaml
diff --git a/releasenotes/notes/opentracer-remove-b1883d26ea035c50.yaml b/dd-trace-py/releasenotes/notes/opentracer-remove-b1883d26ea035c50.yaml
similarity index 100%
rename from releasenotes/notes/opentracer-remove-b1883d26ea035c50.yaml
rename to dd-trace-py/releasenotes/notes/opentracer-remove-b1883d26ea035c50.yaml
diff --git a/releasenotes/notes/opentracer-span-1abe3738df78d3c1.yaml b/dd-trace-py/releasenotes/notes/opentracer-span-1abe3738df78d3c1.yaml
similarity index 100%
rename from releasenotes/notes/opentracer-span-1abe3738df78d3c1.yaml
rename to dd-trace-py/releasenotes/notes/opentracer-span-1abe3738df78d3c1.yaml
diff --git a/releasenotes/notes/os-runtime-metadata-98845c31e21f6ea2.yaml b/dd-trace-py/releasenotes/notes/os-runtime-metadata-98845c31e21f6ea2.yaml
similarity index 100%
rename from releasenotes/notes/os-runtime-metadata-98845c31e21f6ea2.yaml
rename to dd-trace-py/releasenotes/notes/os-runtime-metadata-98845c31e21f6ea2.yaml
diff --git a/releasenotes/notes/otel-announce-otel-support-beta-6d101ce6ae73b210.yaml b/dd-trace-py/releasenotes/notes/otel-announce-otel-support-beta-6d101ce6ae73b210.yaml
similarity index 100%
rename from releasenotes/notes/otel-announce-otel-support-beta-6d101ce6ae73b210.yaml
rename to dd-trace-py/releasenotes/notes/otel-announce-otel-support-beta-6d101ce6ae73b210.yaml
diff --git a/releasenotes/notes/otel-ensure-sampling-decision-is-made-40ab760eada20b20.yaml b/dd-trace-py/releasenotes/notes/otel-ensure-sampling-decision-is-made-40ab760eada20b20.yaml
similarity index 100%
rename from releasenotes/notes/otel-ensure-sampling-decision-is-made-40ab760eada20b20.yaml
rename to dd-trace-py/releasenotes/notes/otel-ensure-sampling-decision-is-made-40ab760eada20b20.yaml
diff --git a/releasenotes/notes/otel-env-var-support-for-dd-trace-py-d4378445a1405bab.yaml b/dd-trace-py/releasenotes/notes/otel-env-var-support-for-dd-trace-py-d4378445a1405bab.yaml
similarity index 100%
rename from releasenotes/notes/otel-env-var-support-for-dd-trace-py-d4378445a1405bab.yaml
rename to dd-trace-py/releasenotes/notes/otel-env-var-support-for-dd-trace-py-d4378445a1405bab.yaml
diff --git a/releasenotes/notes/otel-logs-config-refactor-8230743914aa83d6.yaml b/dd-trace-py/releasenotes/notes/otel-logs-config-refactor-8230743914aa83d6.yaml
similarity index 100%
rename from releasenotes/notes/otel-logs-config-refactor-8230743914aa83d6.yaml
rename to dd-trace-py/releasenotes/notes/otel-logs-config-refactor-8230743914aa83d6.yaml
diff --git a/releasenotes/notes/otel-map-reserved-9f038de8b87ee9df.yaml b/dd-trace-py/releasenotes/notes/otel-map-reserved-9f038de8b87ee9df.yaml
similarity index 100%
rename from releasenotes/notes/otel-map-reserved-9f038de8b87ee9df.yaml
rename to dd-trace-py/releasenotes/notes/otel-map-reserved-9f038de8b87ee9df.yaml
diff --git a/releasenotes/notes/otel-operation-name-7a2bccb294aed8cd.yaml b/dd-trace-py/releasenotes/notes/otel-operation-name-7a2bccb294aed8cd.yaml
similarity index 100%
rename from releasenotes/notes/otel-operation-name-7a2bccb294aed8cd.yaml
rename to dd-trace-py/releasenotes/notes/otel-operation-name-7a2bccb294aed8cd.yaml
diff --git a/releasenotes/notes/otel-span-links-json-encoding-b91b3923d19e78fb.yaml b/dd-trace-py/releasenotes/notes/otel-span-links-json-encoding-b91b3923d19e78fb.yaml
similarity index 100%
rename from releasenotes/notes/otel-span-links-json-encoding-b91b3923d19e78fb.yaml
rename to dd-trace-py/releasenotes/notes/otel-span-links-json-encoding-b91b3923d19e78fb.yaml
diff --git a/releasenotes/notes/otel-trace-metrics-compatability-f213b8aa2e90db22.yaml b/dd-trace-py/releasenotes/notes/otel-trace-metrics-compatability-f213b8aa2e90db22.yaml
similarity index 100%
rename from releasenotes/notes/otel-trace-metrics-compatability-f213b8aa2e90db22.yaml
rename to dd-trace-py/releasenotes/notes/otel-trace-metrics-compatability-f213b8aa2e90db22.yaml
diff --git a/releasenotes/notes/otel-traced-export-445b99748c059bea.yaml b/dd-trace-py/releasenotes/notes/otel-traced-export-445b99748c059bea.yaml
similarity index 100%
rename from releasenotes/notes/otel-traced-export-445b99748c059bea.yaml
rename to dd-trace-py/releasenotes/notes/otel-traced-export-445b99748c059bea.yaml
diff --git a/releasenotes/notes/otel_invalid_span-bfce06eb9cfea04e.yaml b/dd-trace-py/releasenotes/notes/otel_invalid_span-bfce06eb9cfea04e.yaml
similarity index 100%
rename from releasenotes/notes/otel_invalid_span-bfce06eb9cfea04e.yaml
rename to dd-trace-py/releasenotes/notes/otel_invalid_span-bfce06eb9cfea04e.yaml
diff --git a/releasenotes/notes/otlp-trace-export-9cb6291f1da86c34.yaml b/dd-trace-py/releasenotes/notes/otlp-trace-export-9cb6291f1da86c34.yaml
similarity index 100%
rename from releasenotes/notes/otlp-trace-export-9cb6291f1da86c34.yaml
rename to dd-trace-py/releasenotes/notes/otlp-trace-export-9cb6291f1da86c34.yaml
diff --git a/releasenotes/notes/package_arm-1beb3c4a7d6f945a.yaml b/dd-trace-py/releasenotes/notes/package_arm-1beb3c4a7d6f945a.yaml
similarity index 100%
rename from releasenotes/notes/package_arm-1beb3c4a7d6f945a.yaml
rename to dd-trace-py/releasenotes/notes/package_arm-1beb3c4a7d6f945a.yaml
diff --git a/releasenotes/notes/parent-id-abd4f7776f54399c.yaml b/dd-trace-py/releasenotes/notes/parent-id-abd4f7776f54399c.yaml
similarity index 100%
rename from releasenotes/notes/parent-id-abd4f7776f54399c.yaml
rename to dd-trace-py/releasenotes/notes/parent-id-abd4f7776f54399c.yaml
diff --git a/releasenotes/notes/partial-flush-sampling-fix-e34a7c2dd47ae82a.yaml b/dd-trace-py/releasenotes/notes/partial-flush-sampling-fix-e34a7c2dd47ae82a.yaml
similarity index 100%
rename from releasenotes/notes/partial-flush-sampling-fix-e34a7c2dd47ae82a.yaml
rename to dd-trace-py/releasenotes/notes/partial-flush-sampling-fix-e34a7c2dd47ae82a.yaml
diff --git a/releasenotes/notes/pass-args-kwargs-to-kafka-f3ca8128a2c4d612.yaml b/dd-trace-py/releasenotes/notes/pass-args-kwargs-to-kafka-f3ca8128a2c4d612.yaml
similarity index 100%
rename from releasenotes/notes/pass-args-kwargs-to-kafka-f3ca8128a2c4d612.yaml
rename to dd-trace-py/releasenotes/notes/pass-args-kwargs-to-kafka-f3ca8128a2c4d612.yaml
diff --git a/releasenotes/notes/patch-on-import-httplib-f98bad4b73cee387.yaml b/dd-trace-py/releasenotes/notes/patch-on-import-httplib-f98bad4b73cee387.yaml
similarity index 100%
rename from releasenotes/notes/patch-on-import-httplib-f98bad4b73cee387.yaml
rename to dd-trace-py/releasenotes/notes/patch-on-import-httplib-f98bad4b73cee387.yaml
diff --git a/releasenotes/notes/pep420_compatibility-99ca4ca528ad47d6.yaml b/dd-trace-py/releasenotes/notes/pep420_compatibility-99ca4ca528ad47d6.yaml
similarity index 100%
rename from releasenotes/notes/pep420_compatibility-99ca4ca528ad47d6.yaml
rename to dd-trace-py/releasenotes/notes/pep420_compatibility-99ca4ca528ad47d6.yaml
diff --git a/releasenotes/notes/perf-celery-reduced-overheads-6afe03acf1af703f.yaml b/dd-trace-py/releasenotes/notes/perf-celery-reduced-overheads-6afe03acf1af703f.yaml
similarity index 100%
rename from releasenotes/notes/perf-celery-reduced-overheads-6afe03acf1af703f.yaml
rename to dd-trace-py/releasenotes/notes/perf-celery-reduced-overheads-6afe03acf1af703f.yaml
diff --git a/releasenotes/notes/perf-improve-header-extraction-30f575d5034b7e20.yaml b/dd-trace-py/releasenotes/notes/perf-improve-header-extraction-30f575d5034b7e20.yaml
similarity index 100%
rename from releasenotes/notes/perf-improve-header-extraction-30f575d5034b7e20.yaml
rename to dd-trace-py/releasenotes/notes/perf-improve-header-extraction-30f575d5034b7e20.yaml
diff --git a/releasenotes/notes/perf-profiler-lower-overhead-f2c2e7c12c337196.yaml b/dd-trace-py/releasenotes/notes/perf-profiler-lower-overhead-f2c2e7c12c337196.yaml
similarity index 100%
rename from releasenotes/notes/perf-profiler-lower-overhead-f2c2e7c12c337196.yaml
rename to dd-trace-py/releasenotes/notes/perf-profiler-lower-overhead-f2c2e7c12c337196.yaml
diff --git a/releasenotes/notes/perf-profiling-reduce-syscall-overhead-5efb5d1d4115105e.yaml b/dd-trace-py/releasenotes/notes/perf-profiling-reduce-syscall-overhead-5efb5d1d4115105e.yaml
similarity index 100%
rename from releasenotes/notes/perf-profiling-reduce-syscall-overhead-5efb5d1d4115105e.yaml
rename to dd-trace-py/releasenotes/notes/perf-profiling-reduce-syscall-overhead-5efb5d1d4115105e.yaml
diff --git a/releasenotes/notes/perf-telemetry-d9881d20f22013f7.yaml b/dd-trace-py/releasenotes/notes/perf-telemetry-d9881d20f22013f7.yaml
similarity index 100%
rename from releasenotes/notes/perf-telemetry-d9881d20f22013f7.yaml
rename to dd-trace-py/releasenotes/notes/perf-telemetry-d9881d20f22013f7.yaml
diff --git a/releasenotes/notes/pin-attrs-v20-76e8beccac964920.yaml b/dd-trace-py/releasenotes/notes/pin-attrs-v20-76e8beccac964920.yaml
similarity index 100%
rename from releasenotes/notes/pin-attrs-v20-76e8beccac964920.yaml
rename to dd-trace-py/releasenotes/notes/pin-attrs-v20-76e8beccac964920.yaml
diff --git a/releasenotes/notes/pin-cython-042240c7d4fdd977.yaml b/dd-trace-py/releasenotes/notes/pin-cython-042240c7d4fdd977.yaml
similarity index 100%
rename from releasenotes/notes/pin-cython-042240c7d4fdd977.yaml
rename to dd-trace-py/releasenotes/notes/pin-cython-042240c7d4fdd977.yaml
diff --git a/releasenotes/notes/pin-furo-ddtrace-docs-1ceb42ce17f7a1db.yaml b/dd-trace-py/releasenotes/notes/pin-furo-ddtrace-docs-1ceb42ce17f7a1db.yaml
similarity index 100%
rename from releasenotes/notes/pin-furo-ddtrace-docs-1ceb42ce17f7a1db.yaml
rename to dd-trace-py/releasenotes/notes/pin-furo-ddtrace-docs-1ceb42ce17f7a1db.yaml
diff --git a/releasenotes/notes/pin-importlib-to-6.5.0-to-avoid-importlib-issue-455-d098894f7a29591b.yaml b/dd-trace-py/releasenotes/notes/pin-importlib-to-6.5.0-to-avoid-importlib-issue-455-d098894f7a29591b.yaml
similarity index 100%
rename from releasenotes/notes/pin-importlib-to-6.5.0-to-avoid-importlib-issue-455-d098894f7a29591b.yaml
rename to dd-trace-py/releasenotes/notes/pin-importlib-to-6.5.0-to-avoid-importlib-issue-455-d098894f7a29591b.yaml
diff --git a/releasenotes/notes/pin-osx-deployment-version-c33b207ada285263.yaml b/dd-trace-py/releasenotes/notes/pin-osx-deployment-version-c33b207ada285263.yaml
similarity index 100%
rename from releasenotes/notes/pin-osx-deployment-version-c33b207ada285263.yaml
rename to dd-trace-py/releasenotes/notes/pin-osx-deployment-version-c33b207ada285263.yaml
diff --git a/releasenotes/notes/pin-protobuf-v4-357193706afd46e6.yaml b/dd-trace-py/releasenotes/notes/pin-protobuf-v4-357193706afd46e6.yaml
similarity index 100%
rename from releasenotes/notes/pin-protobuf-v4-357193706afd46e6.yaml
rename to dd-trace-py/releasenotes/notes/pin-protobuf-v4-357193706afd46e6.yaml
diff --git a/releasenotes/notes/pin-protobuf-version-e06dd99a8fa47196.yaml b/dd-trace-py/releasenotes/notes/pin-protobuf-version-e06dd99a8fa47196.yaml
similarity index 100%
rename from releasenotes/notes/pin-protobuf-version-e06dd99a8fa47196.yaml
rename to dd-trace-py/releasenotes/notes/pin-protobuf-version-e06dd99a8fa47196.yaml
diff --git a/releasenotes/notes/pin-remove-46288db02ed90799.yaml b/dd-trace-py/releasenotes/notes/pin-remove-46288db02ed90799.yaml
similarity index 100%
rename from releasenotes/notes/pin-remove-46288db02ed90799.yaml
rename to dd-trace-py/releasenotes/notes/pin-remove-46288db02ed90799.yaml
diff --git a/releasenotes/notes/pin-setuptools_scm-version-68118597b691b41c.yaml b/dd-trace-py/releasenotes/notes/pin-setuptools_scm-version-68118597b691b41c.yaml
similarity index 100%
rename from releasenotes/notes/pin-setuptools_scm-version-68118597b691b41c.yaml
rename to dd-trace-py/releasenotes/notes/pin-setuptools_scm-version-68118597b691b41c.yaml
diff --git a/releasenotes/notes/potential-race-endpoints-b8592670cdcbf023.yaml b/dd-trace-py/releasenotes/notes/potential-race-endpoints-b8592670cdcbf023.yaml
similarity index 100%
rename from releasenotes/notes/potential-race-endpoints-b8592670cdcbf023.yaml
rename to dd-trace-py/releasenotes/notes/potential-race-endpoints-b8592670cdcbf023.yaml
diff --git a/releasenotes/notes/prevent-propagating-unsupported-headers-ddbb32b101ca2cab.yaml b/dd-trace-py/releasenotes/notes/prevent-propagating-unsupported-headers-ddbb32b101ca2cab.yaml
similarity index 100%
rename from releasenotes/notes/prevent-propagating-unsupported-headers-ddbb32b101ca2cab.yaml
rename to dd-trace-py/releasenotes/notes/prevent-propagating-unsupported-headers-ddbb32b101ca2cab.yaml
diff --git a/releasenotes/notes/prf-functions_for_code-9634ef79190978cf.yaml b/dd-trace-py/releasenotes/notes/prf-functions_for_code-9634ef79190978cf.yaml
similarity index 100%
rename from releasenotes/notes/prf-functions_for_code-9634ef79190978cf.yaml
rename to dd-trace-py/releasenotes/notes/prf-functions_for_code-9634ef79190978cf.yaml
diff --git a/releasenotes/notes/prf-stack-v2-adaptive-sampling-38cd6af0882fc36b.yaml b/dd-trace-py/releasenotes/notes/prf-stack-v2-adaptive-sampling-38cd6af0882fc36b.yaml
similarity index 100%
rename from releasenotes/notes/prf-stack-v2-adaptive-sampling-38cd6af0882fc36b.yaml
rename to dd-trace-py/releasenotes/notes/prf-stack-v2-adaptive-sampling-38cd6af0882fc36b.yaml
diff --git a/releasenotes/notes/prof-perf-echion-bbb657265d18148c.yaml b/dd-trace-py/releasenotes/notes/prof-perf-echion-bbb657265d18148c.yaml
similarity index 100%
rename from releasenotes/notes/prof-perf-echion-bbb657265d18148c.yaml
rename to dd-trace-py/releasenotes/notes/prof-perf-echion-bbb657265d18148c.yaml
diff --git a/releasenotes/notes/prof-perf-utf8-c3e0ea98c4a17e11.yaml b/dd-trace-py/releasenotes/notes/prof-perf-utf8-c3e0ea98c4a17e11.yaml
similarity index 100%
rename from releasenotes/notes/prof-perf-utf8-c3e0ea98c4a17e11.yaml
rename to dd-trace-py/releasenotes/notes/prof-perf-utf8-c3e0ea98c4a17e11.yaml
diff --git a/releasenotes/notes/prof-proto4-391ce18af277ec54.yaml b/dd-trace-py/releasenotes/notes/prof-proto4-391ce18af277ec54.yaml
similarity index 100%
rename from releasenotes/notes/prof-proto4-391ce18af277ec54.yaml
rename to dd-trace-py/releasenotes/notes/prof-proto4-391ce18af277ec54.yaml
diff --git a/releasenotes/notes/profielr-heap-iterate-freezer-frees-a366cc6dbeadd188.yaml b/dd-trace-py/releasenotes/notes/profielr-heap-iterate-freezer-frees-a366cc6dbeadd188.yaml
similarity index 100%
rename from releasenotes/notes/profielr-heap-iterate-freezer-frees-a366cc6dbeadd188.yaml
rename to dd-trace-py/releasenotes/notes/profielr-heap-iterate-freezer-frees-a366cc6dbeadd188.yaml
diff --git a/releasenotes/notes/profier-startup-noise-c235ef58472fcdd6.yaml b/dd-trace-py/releasenotes/notes/profier-startup-noise-c235ef58472fcdd6.yaml
similarity index 100%
rename from releasenotes/notes/profier-startup-noise-c235ef58472fcdd6.yaml
rename to dd-trace-py/releasenotes/notes/profier-startup-noise-c235ef58472fcdd6.yaml
diff --git a/releasenotes/notes/profile-upload-2.4-8277b229fda6ff53.yaml b/dd-trace-py/releasenotes/notes/profile-upload-2.4-8277b229fda6ff53.yaml
similarity index 100%
rename from releasenotes/notes/profile-upload-2.4-8277b229fda6ff53.yaml
rename to dd-trace-py/releasenotes/notes/profile-upload-2.4-8277b229fda6ff53.yaml
diff --git a/releasenotes/notes/profiler-asyncio-py2-5049a2c3fd02c842.yaml b/dd-trace-py/releasenotes/notes/profiler-asyncio-py2-5049a2c3fd02c842.yaml
similarity index 100%
rename from releasenotes/notes/profiler-asyncio-py2-5049a2c3fd02c842.yaml
rename to dd-trace-py/releasenotes/notes/profiler-asyncio-py2-5049a2c3fd02c842.yaml
diff --git a/releasenotes/notes/profiler-code-provenance-issue-a912ea575a43ed07.yaml b/dd-trace-py/releasenotes/notes/profiler-code-provenance-issue-a912ea575a43ed07.yaml
similarity index 100%
rename from releasenotes/notes/profiler-code-provenance-issue-a912ea575a43ed07.yaml
rename to dd-trace-py/releasenotes/notes/profiler-code-provenance-issue-a912ea575a43ed07.yaml
diff --git a/releasenotes/notes/profiler-fix-ddup-threads-1f76f44a6536876e.yaml b/dd-trace-py/releasenotes/notes/profiler-fix-ddup-threads-1f76f44a6536876e.yaml
similarity index 100%
rename from releasenotes/notes/profiler-fix-ddup-threads-1f76f44a6536876e.yaml
rename to dd-trace-py/releasenotes/notes/profiler-fix-ddup-threads-1f76f44a6536876e.yaml
diff --git a/releasenotes/notes/profiler-gevent-warns-on-late-patch-3f4f897c8904591c.yaml b/dd-trace-py/releasenotes/notes/profiler-gevent-warns-on-late-patch-3f4f897c8904591c.yaml
similarity index 100%
rename from releasenotes/notes/profiler-gevent-warns-on-late-patch-3f4f897c8904591c.yaml
rename to dd-trace-py/releasenotes/notes/profiler-gevent-warns-on-late-patch-3f4f897c8904591c.yaml
diff --git a/releasenotes/notes/profiler-heap-max-alloc-bugfix-646423cdd7f7811f.yaml b/dd-trace-py/releasenotes/notes/profiler-heap-max-alloc-bugfix-646423cdd7f7811f.yaml
similarity index 100%
rename from releasenotes/notes/profiler-heap-max-alloc-bugfix-646423cdd7f7811f.yaml
rename to dd-trace-py/releasenotes/notes/profiler-heap-max-alloc-bugfix-646423cdd7f7811f.yaml
diff --git a/releasenotes/notes/profiler-protobuf-421-bf20b8e42ba3ad4c.yaml b/dd-trace-py/releasenotes/notes/profiler-protobuf-421-bf20b8e42ba3ad4c.yaml
similarity index 100%
rename from releasenotes/notes/profiler-protobuf-421-bf20b8e42ba3ad4c.yaml
rename to dd-trace-py/releasenotes/notes/profiler-protobuf-421-bf20b8e42ba3ad4c.yaml
diff --git a/releasenotes/notes/profiler-py311-alien-frame-objects-a7eca2f7dd3270c1.yaml b/dd-trace-py/releasenotes/notes/profiler-py311-alien-frame-objects-a7eca2f7dd3270c1.yaml
similarity index 100%
rename from releasenotes/notes/profiler-py311-alien-frame-objects-a7eca2f7dd3270c1.yaml
rename to dd-trace-py/releasenotes/notes/profiler-py311-alien-frame-objects-a7eca2f7dd3270c1.yaml
diff --git a/releasenotes/notes/profiler-stack-greenlet-tracer-6f960c1557fd39c4.yaml b/dd-trace-py/releasenotes/notes/profiler-stack-greenlet-tracer-6f960c1557fd39c4.yaml
similarity index 100%
rename from releasenotes/notes/profiler-stack-greenlet-tracer-6f960c1557fd39c4.yaml
rename to dd-trace-py/releasenotes/notes/profiler-stack-greenlet-tracer-6f960c1557fd39c4.yaml
diff --git a/releasenotes/notes/profiler-threadlink-nolock-200ffbc2d0400d2d.yaml b/dd-trace-py/releasenotes/notes/profiler-threadlink-nolock-200ffbc2d0400d2d.yaml
similarity index 100%
rename from releasenotes/notes/profiler-threadlink-nolock-200ffbc2d0400d2d.yaml
rename to dd-trace-py/releasenotes/notes/profiler-threadlink-nolock-200ffbc2d0400d2d.yaml
diff --git a/releasenotes/notes/profiler-uds-108b876bdab8a151.yaml b/dd-trace-py/releasenotes/notes/profiler-uds-108b876bdab8a151.yaml
similarity index 100%
rename from releasenotes/notes/profiler-uds-108b876bdab8a151.yaml
rename to dd-trace-py/releasenotes/notes/profiler-uds-108b876bdab8a151.yaml
diff --git a/releasenotes/notes/profiler-url-c61885c7d1fd5ea6.yaml b/dd-trace-py/releasenotes/notes/profiler-url-c61885c7d1fd5ea6.yaml
similarity index 100%
rename from releasenotes/notes/profiler-url-c61885c7d1fd5ea6.yaml
rename to dd-trace-py/releasenotes/notes/profiler-url-c61885c7d1fd5ea6.yaml
diff --git a/releasenotes/notes/profiler-windows-support-6faa2ecfdf4b97e8.yaml b/dd-trace-py/releasenotes/notes/profiler-windows-support-6faa2ecfdf4b97e8.yaml
similarity index 100%
rename from releasenotes/notes/profiler-windows-support-6faa2ecfdf4b97e8.yaml
rename to dd-trace-py/releasenotes/notes/profiler-windows-support-6faa2ecfdf4b97e8.yaml
diff --git a/releasenotes/notes/profiling-3.13-e62c18bff5de1218.yaml b/dd-trace-py/releasenotes/notes/profiling-3.13-e62c18bff5de1218.yaml
similarity index 100%
rename from releasenotes/notes/profiling-3.13-e62c18bff5de1218.yaml
rename to dd-trace-py/releasenotes/notes/profiling-3.13-e62c18bff5de1218.yaml
diff --git a/releasenotes/notes/profiling-314-support-bc850ac5330c27fc.yaml b/dd-trace-py/releasenotes/notes/profiling-314-support-bc850ac5330c27fc.yaml
similarity index 100%
rename from releasenotes/notes/profiling-314-support-bc850ac5330c27fc.yaml
rename to dd-trace-py/releasenotes/notes/profiling-314-support-bc850ac5330c27fc.yaml
diff --git a/releasenotes/notes/profiling-actually-disable-gc-during-memalloc-traceback-d8eecf5687c8ab3b.yaml b/dd-trace-py/releasenotes/notes/profiling-actually-disable-gc-during-memalloc-traceback-d8eecf5687c8ab3b.yaml
similarity index 100%
rename from releasenotes/notes/profiling-actually-disable-gc-during-memalloc-traceback-d8eecf5687c8ab3b.yaml
rename to dd-trace-py/releasenotes/notes/profiling-actually-disable-gc-during-memalloc-traceback-d8eecf5687c8ab3b.yaml
diff --git a/releasenotes/notes/profiling-add-asyncio-locks-support-fc556221de2e0d34.yaml b/dd-trace-py/releasenotes/notes/profiling-add-asyncio-locks-support-fc556221de2e0d34.yaml
similarity index 100%
rename from releasenotes/notes/profiling-add-asyncio-locks-support-fc556221de2e0d34.yaml
rename to dd-trace-py/releasenotes/notes/profiling-add-asyncio-locks-support-fc556221de2e0d34.yaml
diff --git a/releasenotes/notes/profiling-add-lock-with-f75908e35a70ab71.yaml b/dd-trace-py/releasenotes/notes/profiling-add-lock-with-f75908e35a70ab71.yaml
similarity index 100%
rename from releasenotes/notes/profiling-add-lock-with-f75908e35a70ab71.yaml
rename to dd-trace-py/releasenotes/notes/profiling-add-lock-with-f75908e35a70ab71.yaml
diff --git a/releasenotes/notes/profiling-add-missing-init-call-ff50a23981c7a790.yaml b/dd-trace-py/releasenotes/notes/profiling-add-missing-init-call-ff50a23981c7a790.yaml
similarity index 100%
rename from releasenotes/notes/profiling-add-missing-init-call-ff50a23981c7a790.yaml
rename to dd-trace-py/releasenotes/notes/profiling-add-missing-init-call-ff50a23981c7a790.yaml
diff --git a/releasenotes/notes/profiling-add-process-id-tag-d26d87b20716310f.yaml b/dd-trace-py/releasenotes/notes/profiling-add-process-id-tag-d26d87b20716310f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-add-process-id-tag-d26d87b20716310f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-add-process-id-tag-d26d87b20716310f.yaml
diff --git a/releasenotes/notes/profiling-add-process-type-tags-0b2c93a46ef92e7a.yaml b/dd-trace-py/releasenotes/notes/profiling-add-process-type-tags-0b2c93a46ef92e7a.yaml
similarity index 100%
rename from releasenotes/notes/profiling-add-process-type-tags-0b2c93a46ef92e7a.yaml
rename to dd-trace-py/releasenotes/notes/profiling-add-process-type-tags-0b2c93a46ef92e7a.yaml
diff --git a/releasenotes/notes/profiling-add-pytorch-integration-0683123b7bb83f99.yaml b/dd-trace-py/releasenotes/notes/profiling-add-pytorch-integration-0683123b7bb83f99.yaml
similarity index 100%
rename from releasenotes/notes/profiling-add-pytorch-integration-0683123b7bb83f99.yaml
rename to dd-trace-py/releasenotes/notes/profiling-add-pytorch-integration-0683123b7bb83f99.yaml
diff --git a/releasenotes/notes/profiling-add-reservoir-sampling-d7b64e1c854012d5.yaml b/dd-trace-py/releasenotes/notes/profiling-add-reservoir-sampling-d7b64e1c854012d5.yaml
similarity index 100%
rename from releasenotes/notes/profiling-add-reservoir-sampling-d7b64e1c854012d5.yaml
rename to dd-trace-py/releasenotes/notes/profiling-add-reservoir-sampling-d7b64e1c854012d5.yaml
diff --git a/releasenotes/notes/profiling-add-stack-v2-975ebe845cdadc8f.yaml b/dd-trace-py/releasenotes/notes/profiling-add-stack-v2-975ebe845cdadc8f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-add-stack-v2-975ebe845cdadc8f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-add-stack-v2-975ebe845cdadc8f.yaml
diff --git a/releasenotes/notes/profiling-agentless-feb211ee5e1f454f.yaml b/dd-trace-py/releasenotes/notes/profiling-agentless-feb211ee5e1f454f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-agentless-feb211ee5e1f454f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-agentless-feb211ee5e1f454f.yaml
diff --git a/releasenotes/notes/profiling-allow-collector-disablement-0b0fb2acadc114a6.yaml b/dd-trace-py/releasenotes/notes/profiling-allow-collector-disablement-0b0fb2acadc114a6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-allow-collector-disablement-0b0fb2acadc114a6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-allow-collector-disablement-0b0fb2acadc114a6.yaml
diff --git a/releasenotes/notes/profiling-always-report-cpu-time-5f9aa07e648801fc.yaml b/dd-trace-py/releasenotes/notes/profiling-always-report-cpu-time-5f9aa07e648801fc.yaml
similarity index 100%
rename from releasenotes/notes/profiling-always-report-cpu-time-5f9aa07e648801fc.yaml
rename to dd-trace-py/releasenotes/notes/profiling-always-report-cpu-time-5f9aa07e648801fc.yaml
diff --git a/releasenotes/notes/profiling-always-use-leaf-task-name-46bf36ed9f1d723b.yaml b/dd-trace-py/releasenotes/notes/profiling-always-use-leaf-task-name-46bf36ed9f1d723b.yaml
similarity index 100%
rename from releasenotes/notes/profiling-always-use-leaf-task-name-46bf36ed9f1d723b.yaml
rename to dd-trace-py/releasenotes/notes/profiling-always-use-leaf-task-name-46bf36ed9f1d723b.yaml
diff --git a/releasenotes/notes/profiling-api-timeout-09bf46873195aff3.yaml b/dd-trace-py/releasenotes/notes/profiling-api-timeout-09bf46873195aff3.yaml
similarity index 100%
rename from releasenotes/notes/profiling-api-timeout-09bf46873195aff3.yaml
rename to dd-trace-py/releasenotes/notes/profiling-api-timeout-09bf46873195aff3.yaml
diff --git a/releasenotes/notes/profiling-asyncio-fix-missing-main-thread-dec4b0759094c571.yaml b/dd-trace-py/releasenotes/notes/profiling-asyncio-fix-missing-main-thread-dec4b0759094c571.yaml
similarity index 100%
rename from releasenotes/notes/profiling-asyncio-fix-missing-main-thread-dec4b0759094c571.yaml
rename to dd-trace-py/releasenotes/notes/profiling-asyncio-fix-missing-main-thread-dec4b0759094c571.yaml
diff --git a/releasenotes/notes/profiling-asyncio-less-clear-threads-33d3436ab76ea158.yaml b/dd-trace-py/releasenotes/notes/profiling-asyncio-less-clear-threads-33d3436ab76ea158.yaml
similarity index 100%
rename from releasenotes/notes/profiling-asyncio-less-clear-threads-33d3436ab76ea158.yaml
rename to dd-trace-py/releasenotes/notes/profiling-asyncio-less-clear-threads-33d3436ab76ea158.yaml
diff --git a/releasenotes/notes/profiling-asyncio-lock-with-ef209edcdd346093.yaml b/dd-trace-py/releasenotes/notes/profiling-asyncio-lock-with-ef209edcdd346093.yaml
similarity index 100%
rename from releasenotes/notes/profiling-asyncio-lock-with-ef209edcdd346093.yaml
rename to dd-trace-py/releasenotes/notes/profiling-asyncio-lock-with-ef209edcdd346093.yaml
diff --git a/releasenotes/notes/profiling-asyncio-stack-duplication-fix-356205f4cedd8810.yaml b/dd-trace-py/releasenotes/notes/profiling-asyncio-stack-duplication-fix-356205f4cedd8810.yaml
similarity index 100%
rename from releasenotes/notes/profiling-asyncio-stack-duplication-fix-356205f4cedd8810.yaml
rename to dd-trace-py/releasenotes/notes/profiling-asyncio-stack-duplication-fix-356205f4cedd8810.yaml
diff --git a/releasenotes/notes/profiling-asyncio-tasks-ada2014dc47fdf7a.yaml b/dd-trace-py/releasenotes/notes/profiling-asyncio-tasks-ada2014dc47fdf7a.yaml
similarity index 100%
rename from releasenotes/notes/profiling-asyncio-tasks-ada2014dc47fdf7a.yaml
rename to dd-trace-py/releasenotes/notes/profiling-asyncio-tasks-ada2014dc47fdf7a.yaml
diff --git a/releasenotes/notes/profiling-code-provenance-17ac4ee468de1c8e.yaml b/dd-trace-py/releasenotes/notes/profiling-code-provenance-17ac4ee468de1c8e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-code-provenance-17ac4ee468de1c8e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-code-provenance-17ac4ee468de1c8e.yaml
diff --git a/releasenotes/notes/profiling-code-provenance-cache-2c91f117f326ca0e.yaml b/dd-trace-py/releasenotes/notes/profiling-code-provenance-cache-2c91f117f326ca0e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-code-provenance-cache-2c91f117f326ca0e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-code-provenance-cache-2c91f117f326ca0e.yaml
diff --git a/releasenotes/notes/profiling-default-timeout-agent-43b19237a21fd337.yaml b/dd-trace-py/releasenotes/notes/profiling-default-timeout-agent-43b19237a21fd337.yaml
similarity index 100%
rename from releasenotes/notes/profiling-default-timeout-agent-43b19237a21fd337.yaml
rename to dd-trace-py/releasenotes/notes/profiling-default-timeout-agent-43b19237a21fd337.yaml
diff --git a/releasenotes/notes/profiling-disable-memory-option-c6f3765b020f4bcb.yaml b/dd-trace-py/releasenotes/notes/profiling-disable-memory-option-c6f3765b020f4bcb.yaml
similarity index 100%
rename from releasenotes/notes/profiling-disable-memory-option-c6f3765b020f4bcb.yaml
rename to dd-trace-py/releasenotes/notes/profiling-disable-memory-option-c6f3765b020f4bcb.yaml
diff --git a/releasenotes/notes/profiling-dynamic-agent-url-1f285029201620b8.yaml b/dd-trace-py/releasenotes/notes/profiling-dynamic-agent-url-1f285029201620b8.yaml
similarity index 100%
rename from releasenotes/notes/profiling-dynamic-agent-url-1f285029201620b8.yaml
rename to dd-trace-py/releasenotes/notes/profiling-dynamic-agent-url-1f285029201620b8.yaml
diff --git a/releasenotes/notes/profiling-echion-bug-8ec66d6559cb5e7b.yaml b/dd-trace-py/releasenotes/notes/profiling-echion-bug-8ec66d6559cb5e7b.yaml
similarity index 100%
rename from releasenotes/notes/profiling-echion-bug-8ec66d6559cb5e7b.yaml
rename to dd-trace-py/releasenotes/notes/profiling-echion-bug-8ec66d6559cb5e7b.yaml
diff --git a/releasenotes/notes/profiling-echion-fix-alloc-f1204a794b1d3a1d.yaml b/dd-trace-py/releasenotes/notes/profiling-echion-fix-alloc-f1204a794b1d3a1d.yaml
similarity index 100%
rename from releasenotes/notes/profiling-echion-fix-alloc-f1204a794b1d3a1d.yaml
rename to dd-trace-py/releasenotes/notes/profiling-echion-fix-alloc-f1204a794b1d3a1d.yaml
diff --git a/releasenotes/notes/profiling-echion-upgrade-04aa2bb0bdf4882d.yaml b/dd-trace-py/releasenotes/notes/profiling-echion-upgrade-04aa2bb0bdf4882d.yaml
similarity index 100%
rename from releasenotes/notes/profiling-echion-upgrade-04aa2bb0bdf4882d.yaml
rename to dd-trace-py/releasenotes/notes/profiling-echion-upgrade-04aa2bb0bdf4882d.yaml
diff --git a/releasenotes/notes/profiling-enable-new-memalloc-profiler-default-fac01a6d596b6404.yaml b/dd-trace-py/releasenotes/notes/profiling-enable-new-memalloc-profiler-default-fac01a6d596b6404.yaml
similarity index 100%
rename from releasenotes/notes/profiling-enable-new-memalloc-profiler-default-fac01a6d596b6404.yaml
rename to dd-trace-py/releasenotes/notes/profiling-enable-new-memalloc-profiler-default-fac01a6d596b6404.yaml
diff --git a/releasenotes/notes/profiling-export-stack-class-7e81bd42180b7220.yaml b/dd-trace-py/releasenotes/notes/profiling-export-stack-class-7e81bd42180b7220.yaml
similarity index 100%
rename from releasenotes/notes/profiling-export-stack-class-7e81bd42180b7220.yaml
rename to dd-trace-py/releasenotes/notes/profiling-export-stack-class-7e81bd42180b7220.yaml
diff --git a/releasenotes/notes/profiling-export-tags-fixed-9d383890c8e5c4c1.yaml b/dd-trace-py/releasenotes/notes/profiling-export-tags-fixed-9d383890c8e5c4c1.yaml
similarity index 100%
rename from releasenotes/notes/profiling-export-tags-fixed-9d383890c8e5c4c1.yaml
rename to dd-trace-py/releasenotes/notes/profiling-export-tags-fixed-9d383890c8e5c4c1.yaml
diff --git a/releasenotes/notes/profiling-f_locals-c345ca501ca9b74f.yaml b/dd-trace-py/releasenotes/notes/profiling-f_locals-c345ca501ca9b74f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-f_locals-c345ca501ca9b74f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-f_locals-c345ca501ca9b74f.yaml
diff --git a/releasenotes/notes/profiling-fix-async-b44fdc577a467a40.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-async-b44fdc577a467a40.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-async-b44fdc577a467a40.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-async-b44fdc577a467a40.yaml
diff --git a/releasenotes/notes/profiling-fix-asyncio-unwinding-crash-b192aef728433e7d.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-asyncio-unwinding-crash-b192aef728433e7d.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-asyncio-unwinding-crash-b192aef728433e7d.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-asyncio-unwinding-crash-b192aef728433e7d.yaml
diff --git a/releasenotes/notes/profiling-fix-asyncio-unwinding-e32f159b037819c6.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-asyncio-unwinding-e32f159b037819c6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-asyncio-unwinding-e32f159b037819c6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-asyncio-unwinding-e32f159b037819c6.yaml
diff --git a/releasenotes/notes/profiling-fix-autoinject-detection-fa5035fb0c4719cc.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-autoinject-detection-fa5035fb0c4719cc.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-autoinject-detection-fa5035fb0c4719cc.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-autoinject-detection-fa5035fb0c4719cc.yaml
diff --git a/releasenotes/notes/profiling-fix-autoinject-failure-48cc7d9a18cd70b9.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-autoinject-failure-48cc7d9a18cd70b9.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-autoinject-failure-48cc7d9a18cd70b9.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-autoinject-failure-48cc7d9a18cd70b9.yaml
diff --git a/releasenotes/notes/profiling-fix-cancel-upload-90d871d4b6be6cf1.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-cancel-upload-90d871d4b6be6cf1.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-cancel-upload-90d871d4b6be6cf1.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-cancel-upload-90d871d4b6be6cf1.yaml
diff --git a/releasenotes/notes/profiling-fix-crash-geninfo-010076e97ea3c15d.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-crash-geninfo-010076e97ea3c15d.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-crash-geninfo-010076e97ea3c15d.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-crash-geninfo-010076e97ea3c15d.yaml
diff --git a/releasenotes/notes/profiling-fix-crashtracking-envvars-f1914fe54b5283ea.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-crashtracking-envvars-f1914fe54b5283ea.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-crashtracking-envvars-f1914fe54b5283ea.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-crashtracking-envvars-f1914fe54b5283ea.yaml
diff --git a/releasenotes/notes/profiling-fix-data-race-segfault-b14f59c06c6bf9ed.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-data-race-segfault-b14f59c06c6bf9ed.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-data-race-segfault-b14f59c06c6bf9ed.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-data-race-segfault-b14f59c06c6bf9ed.yaml
diff --git a/releasenotes/notes/profiling-fix-ddup-memleak-ca7e73197890cfd2.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-ddup-memleak-ca7e73197890cfd2.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-ddup-memleak-ca7e73197890cfd2.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-ddup-memleak-ca7e73197890cfd2.yaml
diff --git a/releasenotes/notes/profiling-fix-deadlock-gevent-1e6192828238def3.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-deadlock-gevent-1e6192828238def3.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-deadlock-gevent-1e6192828238def3.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-deadlock-gevent-1e6192828238def3.yaml
diff --git a/releasenotes/notes/profiling-fix-deprecated-span-usage-512723136f1682d2.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-deprecated-span-usage-512723136f1682d2.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-deprecated-span-usage-512723136f1682d2.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-deprecated-span-usage-512723136f1682d2.yaml
diff --git a/releasenotes/notes/profiling-fix-detection-of-on-cpu-tasks-a2eb47163c3df850.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-detection-of-on-cpu-tasks-a2eb47163c3df850.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-detection-of-on-cpu-tasks-a2eb47163c3df850.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-detection-of-on-cpu-tasks-a2eb47163c3df850.yaml
diff --git a/releasenotes/notes/profiling-fix-endpoint-v2-a6ca2ebbc9701fe5.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-endpoint-v2-a6ca2ebbc9701fe5.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-endpoint-v2-a6ca2ebbc9701fe5.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-endpoint-v2-a6ca2ebbc9701fe5.yaml
diff --git a/releasenotes/notes/profiling-fix-extension-filenames-ac311c1851a7c467.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-extension-filenames-ac311c1851a7c467.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-extension-filenames-ac311c1851a7c467.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-extension-filenames-ac311c1851a7c467.yaml
diff --git a/releasenotes/notes/profiling-fix-ignore-profiler-gevent-stack-collector-3270d81c84080ccb.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-ignore-profiler-gevent-stack-collector-3270d81c84080ccb.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-ignore-profiler-gevent-stack-collector-3270d81c84080ccb.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-ignore-profiler-gevent-stack-collector-3270d81c84080ccb.yaml
diff --git a/releasenotes/notes/profiling-fix-lib-injection-d75227d656d74e48.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-lib-injection-d75227d656d74e48.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-lib-injection-d75227d656d74e48.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-lib-injection-d75227d656d74e48.yaml
diff --git a/releasenotes/notes/profiling-fix-lock-pickle-serialization-c112813a9f3a3baf.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-lock-pickle-serialization-c112813a9f3a3baf.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-lock-pickle-serialization-c112813a9f3a3baf.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-lock-pickle-serialization-c112813a9f3a3baf.yaml
diff --git a/releasenotes/notes/profiling-fix-lock-subclassing-00a61ebaa41ef3d0.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-lock-subclassing-00a61ebaa41ef3d0.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-lock-subclassing-00a61ebaa41ef3d0.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-lock-subclassing-00a61ebaa41ef3d0.yaml
diff --git a/releasenotes/notes/profiling-fix-max-iterations-unwind-tasks-671d743912c7d600.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-max-iterations-unwind-tasks-671d743912c7d600.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-max-iterations-unwind-tasks-671d743912c7d600.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-max-iterations-unwind-tasks-671d743912c7d600.yaml
diff --git a/releasenotes/notes/profiling-fix-memalloc-crash-threading-current-thread-31902df842d7e205.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-memalloc-crash-threading-current-thread-31902df842d7e205.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-memalloc-crash-threading-current-thread-31902df842d7e205.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-memalloc-crash-threading-current-thread-31902df842d7e205.yaml
diff --git a/releasenotes/notes/profiling-fix-memalloc-realloc-use-after-free-6f3ec672315ac5f0.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-memalloc-realloc-use-after-free-6f3ec672315ac5f0.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-memalloc-realloc-use-after-free-6f3ec672315ac5f0.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-memalloc-realloc-use-after-free-6f3ec672315ac5f0.yaml
diff --git a/releasenotes/notes/profiling-fix-memory-alloc-numbers-a280c751c8f250ba.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-memory-alloc-numbers-a280c751c8f250ba.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-memory-alloc-numbers-a280c751c8f250ba.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-memory-alloc-numbers-a280c751c8f250ba.yaml
diff --git a/releasenotes/notes/profiling-fix-newline-error-8d4d10ed61143e16.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-newline-error-8d4d10ed61143e16.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-newline-error-8d4d10ed61143e16.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-newline-error-8d4d10ed61143e16.yaml
diff --git a/releasenotes/notes/profiling-fix-on-cpu-tasks-unwinding-0ac6efcad8150f1c.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-on-cpu-tasks-unwinding-0ac6efcad8150f1c.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-on-cpu-tasks-unwinding-0ac6efcad8150f1c.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-on-cpu-tasks-unwinding-0ac6efcad8150f1c.yaml
diff --git a/releasenotes/notes/profiling-fix-profiler-copy-6d775a134ec2233f.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-profiler-copy-6d775a134ec2233f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-profiler-copy-6d775a134ec2233f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-profiler-copy-6d775a134ec2233f.yaml
diff --git a/releasenotes/notes/profiling-fix-protobuf-injection-d94f7c152681795c.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-protobuf-injection-d94f7c152681795c.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-protobuf-injection-d94f7c152681795c.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-protobuf-injection-d94f7c152681795c.yaml
diff --git a/releasenotes/notes/profiling-fix-stack-sampler-rlimit-infinity-b4db5af9465bcdbd.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-stack-sampler-rlimit-infinity-b4db5af9465bcdbd.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-stack-sampler-rlimit-infinity-b4db5af9465bcdbd.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-stack-sampler-rlimit-infinity-b4db5af9465bcdbd.yaml
diff --git a/releasenotes/notes/profiling-fix-stack-v2-endpoint-82a1e26366166b8d.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-stack-v2-endpoint-82a1e26366166b8d.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-stack-v2-endpoint-82a1e26366166b8d.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-stack-v2-endpoint-82a1e26366166b8d.yaml
diff --git a/releasenotes/notes/profiling-fix-stale-frame-name-0b4da3218376dc5e.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-stale-frame-name-0b4da3218376dc5e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-stale-frame-name-0b4da3218376dc5e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-stale-frame-name-0b4da3218376dc5e.yaml
diff --git a/releasenotes/notes/profiling-fix-stale-stack-chunk-previous-7b1082f9f0ee4a47.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-stale-stack-chunk-previous-7b1082f9f0ee4a47.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-stale-stack-chunk-previous-7b1082f9f0ee4a47.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-stale-stack-chunk-previous-7b1082f9f0ee4a47.yaml
diff --git a/releasenotes/notes/profiling-fix-static-cxx-invalid-free-9450db447e16b250.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-static-cxx-invalid-free-9450db447e16b250.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-static-cxx-invalid-free-9450db447e16b250.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-static-cxx-invalid-free-9450db447e16b250.yaml
diff --git a/releasenotes/notes/profiling-fix-tags-libdd-5aba4fd5ceb63539.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-tags-libdd-5aba4fd5ceb63539.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-tags-libdd-5aba4fd5ceb63539.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-tags-libdd-5aba4fd5ceb63539.yaml
diff --git a/releasenotes/notes/profiling-fix-task-link-race-condition-891ac5c86af8a7c1.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-task-link-race-condition-891ac5c86af8a7c1.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-task-link-race-condition-891ac5c86af8a7c1.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-task-link-race-condition-891ac5c86af8a7c1.yaml
diff --git a/releasenotes/notes/profiling-fix-uds-ebf0ea0587c8a23c.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-uds-ebf0ea0587c8a23c.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-uds-ebf0ea0587c8a23c.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-uds-ebf0ea0587c8a23c.yaml
diff --git a/releasenotes/notes/profiling-fix-unbounded-string-buffer-d18056263f3e4bdc.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-unbounded-string-buffer-d18056263f3e4bdc.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-unbounded-string-buffer-d18056263f3e4bdc.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-unbounded-string-buffer-d18056263f3e4bdc.yaml
diff --git a/releasenotes/notes/profiling-fix-untracked-existing-event-loop-6842ff15328dae9c.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-untracked-existing-event-loop-6842ff15328dae9c.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-untracked-existing-event-loop-6842ff15328dae9c.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-untracked-existing-event-loop-6842ff15328dae9c.yaml
diff --git a/releasenotes/notes/profiling-fix-uvloop-crashes-097aea980e59ce36.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-uvloop-crashes-097aea980e59ce36.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-uvloop-crashes-097aea980e59ce36.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-uvloop-crashes-097aea980e59ce36.yaml
diff --git a/releasenotes/notes/profiling-fix-uwsgi-empty-profiles-7dbd5fdd93dea47f.yaml b/dd-trace-py/releasenotes/notes/profiling-fix-uwsgi-empty-profiles-7dbd5fdd93dea47f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fix-uwsgi-empty-profiles-7dbd5fdd93dea47f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fix-uwsgi-empty-profiles-7dbd5fdd93dea47f.yaml
diff --git a/releasenotes/notes/profiling-fully-qualified-name-d1ae8a8c77a1ed3c.yaml b/dd-trace-py/releasenotes/notes/profiling-fully-qualified-name-d1ae8a8c77a1ed3c.yaml
similarity index 100%
rename from releasenotes/notes/profiling-fully-qualified-name-d1ae8a8c77a1ed3c.yaml
rename to dd-trace-py/releasenotes/notes/profiling-fully-qualified-name-d1ae8a8c77a1ed3c.yaml
diff --git a/releasenotes/notes/profiling-gevent-honor-graceful-shutdown-bc67f789a2491074.yaml b/dd-trace-py/releasenotes/notes/profiling-gevent-honor-graceful-shutdown-bc67f789a2491074.yaml
similarity index 100%
rename from releasenotes/notes/profiling-gevent-honor-graceful-shutdown-bc67f789a2491074.yaml
rename to dd-trace-py/releasenotes/notes/profiling-gevent-honor-graceful-shutdown-bc67f789a2491074.yaml
diff --git a/releasenotes/notes/profiling-gevent-patch-only-when-enabled-82df7f8e9a21fba4.yaml b/dd-trace-py/releasenotes/notes/profiling-gevent-patch-only-when-enabled-82df7f8e9a21fba4.yaml
similarity index 100%
rename from releasenotes/notes/profiling-gevent-patch-only-when-enabled-82df7f8e9a21fba4.yaml
rename to dd-trace-py/releasenotes/notes/profiling-gevent-patch-only-when-enabled-82df7f8e9a21fba4.yaml
diff --git a/releasenotes/notes/profiling-gevent-support-4d13a9f437a02a27.yaml b/dd-trace-py/releasenotes/notes/profiling-gevent-support-4d13a9f437a02a27.yaml
similarity index 100%
rename from releasenotes/notes/profiling-gevent-support-4d13a9f437a02a27.yaml
rename to dd-trace-py/releasenotes/notes/profiling-gevent-support-4d13a9f437a02a27.yaml
diff --git a/releasenotes/notes/profiling-gevent-support-older-8e1eb89e36ba8c14.yaml b/dd-trace-py/releasenotes/notes/profiling-gevent-support-older-8e1eb89e36ba8c14.yaml
similarity index 100%
rename from releasenotes/notes/profiling-gevent-support-older-8e1eb89e36ba8c14.yaml
rename to dd-trace-py/releasenotes/notes/profiling-gevent-support-older-8e1eb89e36ba8c14.yaml
diff --git a/releasenotes/notes/profiling-gevent-task-inject-86c14864ca018dfa.yaml b/dd-trace-py/releasenotes/notes/profiling-gevent-task-inject-86c14864ca018dfa.yaml
similarity index 100%
rename from releasenotes/notes/profiling-gevent-task-inject-86c14864ca018dfa.yaml
rename to dd-trace-py/releasenotes/notes/profiling-gevent-task-inject-86c14864ca018dfa.yaml
diff --git a/releasenotes/notes/profiling-greenlet-deadlock-c883f594fe826feb.yaml b/dd-trace-py/releasenotes/notes/profiling-greenlet-deadlock-c883f594fe826feb.yaml
similarity index 100%
rename from releasenotes/notes/profiling-greenlet-deadlock-c883f594fe826feb.yaml
rename to dd-trace-py/releasenotes/notes/profiling-greenlet-deadlock-c883f594fe826feb.yaml
diff --git a/releasenotes/notes/profiling-greenlet-frame-reference-4810f96a6011989f.yaml b/dd-trace-py/releasenotes/notes/profiling-greenlet-frame-reference-4810f96a6011989f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-greenlet-frame-reference-4810f96a6011989f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-greenlet-frame-reference-4810f96a6011989f.yaml
diff --git a/releasenotes/notes/profiling-guard-stack-chunk-recursion-f8e79bcbc4e91bdd.yaml b/dd-trace-py/releasenotes/notes/profiling-guard-stack-chunk-recursion-f8e79bcbc4e91bdd.yaml
similarity index 100%
rename from releasenotes/notes/profiling-guard-stack-chunk-recursion-f8e79bcbc4e91bdd.yaml
rename to dd-trace-py/releasenotes/notes/profiling-guard-stack-chunk-recursion-f8e79bcbc4e91bdd.yaml
diff --git a/releasenotes/notes/profiling-gunicorn-track-06a211fc1e2643e1.yaml b/dd-trace-py/releasenotes/notes/profiling-gunicorn-track-06a211fc1e2643e1.yaml
similarity index 100%
rename from releasenotes/notes/profiling-gunicorn-track-06a211fc1e2643e1.yaml
rename to dd-trace-py/releasenotes/notes/profiling-gunicorn-track-06a211fc1e2643e1.yaml
diff --git a/releasenotes/notes/profiling-heap-enabled-c755d2c42871e930.yaml b/dd-trace-py/releasenotes/notes/profiling-heap-enabled-c755d2c42871e930.yaml
similarity index 100%
rename from releasenotes/notes/profiling-heap-enabled-c755d2c42871e930.yaml
rename to dd-trace-py/releasenotes/notes/profiling-heap-enabled-c755d2c42871e930.yaml
diff --git a/releasenotes/notes/profiling-heap-fix-iteration-a117269849514c5e.yaml b/dd-trace-py/releasenotes/notes/profiling-heap-fix-iteration-a117269849514c5e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-heap-fix-iteration-a117269849514c5e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-heap-fix-iteration-a117269849514c5e.yaml
diff --git a/releasenotes/notes/profiling-heap-profiler-enabling-186ae7679b84d39a.yaml b/dd-trace-py/releasenotes/notes/profiling-heap-profiler-enabling-186ae7679b84d39a.yaml
similarity index 100%
rename from releasenotes/notes/profiling-heap-profiler-enabling-186ae7679b84d39a.yaml
rename to dd-trace-py/releasenotes/notes/profiling-heap-profiler-enabling-186ae7679b84d39a.yaml
diff --git a/releasenotes/notes/profiling-ignore-profiler-daa056f8384008dc.yaml b/dd-trace-py/releasenotes/notes/profiling-ignore-profiler-daa056f8384008dc.yaml
similarity index 100%
rename from releasenotes/notes/profiling-ignore-profiler-daa056f8384008dc.yaml
rename to dd-trace-py/releasenotes/notes/profiling-ignore-profiler-daa056f8384008dc.yaml
diff --git a/releasenotes/notes/profiling-improve-on-cpu-stacks-f3047328da22fce1.yaml b/dd-trace-py/releasenotes/notes/profiling-improve-on-cpu-stacks-f3047328da22fce1.yaml
similarity index 100%
rename from releasenotes/notes/profiling-improve-on-cpu-stacks-f3047328da22fce1.yaml
rename to dd-trace-py/releasenotes/notes/profiling-improve-on-cpu-stacks-f3047328da22fce1.yaml
diff --git a/releasenotes/notes/profiling-interpreter-loop-45f5a6d7bab9bbd6.yaml b/dd-trace-py/releasenotes/notes/profiling-interpreter-loop-45f5a6d7bab9bbd6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-interpreter-loop-45f5a6d7bab9bbd6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-interpreter-loop-45f5a6d7bab9bbd6.yaml
diff --git a/releasenotes/notes/profiling-libdatadog-endpoint-b4dd576009754cbd.yaml b/dd-trace-py/releasenotes/notes/profiling-libdatadog-endpoint-b4dd576009754cbd.yaml
similarity index 100%
rename from releasenotes/notes/profiling-libdatadog-endpoint-b4dd576009754cbd.yaml
rename to dd-trace-py/releasenotes/notes/profiling-libdatadog-endpoint-b4dd576009754cbd.yaml
diff --git a/releasenotes/notes/profiling-libdd-code-provenance-37f9e3451b0c532c.yaml b/dd-trace-py/releasenotes/notes/profiling-libdd-code-provenance-37f9e3451b0c532c.yaml
similarity index 100%
rename from releasenotes/notes/profiling-libdd-code-provenance-37f9e3451b0c532c.yaml
rename to dd-trace-py/releasenotes/notes/profiling-libdd-code-provenance-37f9e3451b0c532c.yaml
diff --git a/releasenotes/notes/profiling-libdd-default-no-linux-32bit-41e7a4b211de7dd2.yaml b/dd-trace-py/releasenotes/notes/profiling-libdd-default-no-linux-32bit-41e7a4b211de7dd2.yaml
similarity index 100%
rename from releasenotes/notes/profiling-libdd-default-no-linux-32bit-41e7a4b211de7dd2.yaml
rename to dd-trace-py/releasenotes/notes/profiling-libdd-default-no-linux-32bit-41e7a4b211de7dd2.yaml
diff --git a/releasenotes/notes/profiling-libdd-required-685835434cda9968.yaml b/dd-trace-py/releasenotes/notes/profiling-libdd-required-685835434cda9968.yaml
similarity index 100%
rename from releasenotes/notes/profiling-libdd-required-685835434cda9968.yaml
rename to dd-trace-py/releasenotes/notes/profiling-libdd-required-685835434cda9968.yaml
diff --git a/releasenotes/notes/profiling-libdd-windows-0e80f0facac09221.yaml b/dd-trace-py/releasenotes/notes/profiling-libdd-windows-0e80f0facac09221.yaml
similarity index 100%
rename from releasenotes/notes/profiling-libdd-windows-0e80f0facac09221.yaml
rename to dd-trace-py/releasenotes/notes/profiling-libdd-windows-0e80f0facac09221.yaml
diff --git a/releasenotes/notes/profiling-link-libatomic-e65bdf29199ff1f7.yaml b/dd-trace-py/releasenotes/notes/profiling-link-libatomic-e65bdf29199ff1f7.yaml
similarity index 100%
rename from releasenotes/notes/profiling-link-libatomic-e65bdf29199ff1f7.yaml
rename to dd-trace-py/releasenotes/notes/profiling-link-libatomic-e65bdf29199ff1f7.yaml
diff --git a/releasenotes/notes/profiling-live-heap-libdd-49ff3a5d6405fd7e.yaml b/dd-trace-py/releasenotes/notes/profiling-live-heap-libdd-49ff3a5d6405fd7e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-live-heap-libdd-49ff3a5d6405fd7e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-live-heap-libdd-49ff3a5d6405fd7e.yaml
diff --git a/releasenotes/notes/profiling-lock-acquired-at-e308547cffdca9f7.yaml b/dd-trace-py/releasenotes/notes/profiling-lock-acquired-at-e308547cffdca9f7.yaml
similarity index 100%
rename from releasenotes/notes/profiling-lock-acquired-at-e308547cffdca9f7.yaml
rename to dd-trace-py/releasenotes/notes/profiling-lock-acquired-at-e308547cffdca9f7.yaml
diff --git a/releasenotes/notes/profiling-lock-acquired-at-remove-c8b5b96130a46ca8.yaml b/dd-trace-py/releasenotes/notes/profiling-lock-acquired-at-remove-c8b5b96130a46ca8.yaml
similarity index 100%
rename from releasenotes/notes/profiling-lock-acquired-at-remove-c8b5b96130a46ca8.yaml
rename to dd-trace-py/releasenotes/notes/profiling-lock-acquired-at-remove-c8b5b96130a46ca8.yaml
diff --git a/releasenotes/notes/profiling-lock-exclude-modules-1c265acb658e42c1.yaml b/dd-trace-py/releasenotes/notes/profiling-lock-exclude-modules-1c265acb658e42c1.yaml
similarity index 100%
rename from releasenotes/notes/profiling-lock-exclude-modules-1c265acb658e42c1.yaml
rename to dd-trace-py/releasenotes/notes/profiling-lock-exclude-modules-1c265acb658e42c1.yaml
diff --git a/releasenotes/notes/profiling-lock-logging-b334718034fb8f0f.yaml b/dd-trace-py/releasenotes/notes/profiling-lock-logging-b334718034fb8f0f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-lock-logging-b334718034fb8f0f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-lock-logging-b334718034fb8f0f.yaml
diff --git a/releasenotes/notes/profiling-lock-profiler-gevent-task-name-4b6f059c0db70617.yaml b/dd-trace-py/releasenotes/notes/profiling-lock-profiler-gevent-task-name-4b6f059c0db70617.yaml
similarity index 100%
rename from releasenotes/notes/profiling-lock-profiler-gevent-task-name-4b6f059c0db70617.yaml
rename to dd-trace-py/releasenotes/notes/profiling-lock-profiler-gevent-task-name-4b6f059c0db70617.yaml
diff --git a/releasenotes/notes/profiling-lock-use-vars-instead-of-dir-331983a76ccc89b2.yaml b/dd-trace-py/releasenotes/notes/profiling-lock-use-vars-instead-of-dir-331983a76ccc89b2.yaml
similarity index 100%
rename from releasenotes/notes/profiling-lock-use-vars-instead-of-dir-331983a76ccc89b2.yaml
rename to dd-trace-py/releasenotes/notes/profiling-lock-use-vars-instead-of-dir-331983a76ccc89b2.yaml
diff --git a/releasenotes/notes/profiling-lower-max-cpu-usage-default-59458d90e0d6d33d.yaml b/dd-trace-py/releasenotes/notes/profiling-lower-max-cpu-usage-default-59458d90e0d6d33d.yaml
similarity index 100%
rename from releasenotes/notes/profiling-lower-max-cpu-usage-default-59458d90e0d6d33d.yaml
rename to dd-trace-py/releasenotes/notes/profiling-lower-max-cpu-usage-default-59458d90e0d6d33d.yaml
diff --git a/releasenotes/notes/profiling-macos-x86-64-0b89414501e91446.yaml b/dd-trace-py/releasenotes/notes/profiling-macos-x86-64-0b89414501e91446.yaml
similarity index 100%
rename from releasenotes/notes/profiling-macos-x86-64-0b89414501e91446.yaml
rename to dd-trace-py/releasenotes/notes/profiling-macos-x86-64-0b89414501e91446.yaml
diff --git a/releasenotes/notes/profiling-main-package-my-code-f650101b736c412e.yaml b/dd-trace-py/releasenotes/notes/profiling-main-package-my-code-f650101b736c412e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-main-package-my-code-f650101b736c412e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-main-package-my-code-f650101b736c412e.yaml
diff --git a/releasenotes/notes/profiling-max-one-profiler-instance-6cea87bd3ee5e1f6.yaml b/dd-trace-py/releasenotes/notes/profiling-max-one-profiler-instance-6cea87bd3ee5e1f6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-max-one-profiler-instance-6cea87bd3ee5e1f6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-max-one-profiler-instance-6cea87bd3ee5e1f6.yaml
diff --git a/releasenotes/notes/profiling-memalloc-clear-state-after-fork-f17667a4b65b37b6.yaml b/dd-trace-py/releasenotes/notes/profiling-memalloc-clear-state-after-fork-f17667a4b65b37b6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-memalloc-clear-state-after-fork-f17667a4b65b37b6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-memalloc-clear-state-after-fork-f17667a4b65b37b6.yaml
diff --git a/releasenotes/notes/profiling-memalloc-faster-heap-map-470b7f3980135e8a.yaml b/dd-trace-py/releasenotes/notes/profiling-memalloc-faster-heap-map-470b7f3980135e8a.yaml
similarity index 100%
rename from releasenotes/notes/profiling-memalloc-faster-heap-map-470b7f3980135e8a.yaml
rename to dd-trace-py/releasenotes/notes/profiling-memalloc-faster-heap-map-470b7f3980135e8a.yaml
diff --git a/releasenotes/notes/profiling-memalloc-iter-events-null-780fd50bbebbf616.yaml b/dd-trace-py/releasenotes/notes/profiling-memalloc-iter-events-null-780fd50bbebbf616.yaml
similarity index 100%
rename from releasenotes/notes/profiling-memalloc-iter-events-null-780fd50bbebbf616.yaml
rename to dd-trace-py/releasenotes/notes/profiling-memalloc-iter-events-null-780fd50bbebbf616.yaml
diff --git a/releasenotes/notes/profiling-memalloc-reentrant-safe-frame-walking-b3281c7adb3306c5.yaml b/dd-trace-py/releasenotes/notes/profiling-memalloc-reentrant-safe-frame-walking-b3281c7adb3306c5.yaml
similarity index 100%
rename from releasenotes/notes/profiling-memalloc-reentrant-safe-frame-walking-b3281c7adb3306c5.yaml
rename to dd-trace-py/releasenotes/notes/profiling-memalloc-reentrant-safe-frame-walking-b3281c7adb3306c5.yaml
diff --git a/releasenotes/notes/profiling-memalloc-remove-redundant-locks-56b58cbed98c1330.yaml b/dd-trace-py/releasenotes/notes/profiling-memalloc-remove-redundant-locks-56b58cbed98c1330.yaml
similarity index 100%
rename from releasenotes/notes/profiling-memalloc-remove-redundant-locks-56b58cbed98c1330.yaml
rename to dd-trace-py/releasenotes/notes/profiling-memalloc-remove-redundant-locks-56b58cbed98c1330.yaml
diff --git a/releasenotes/notes/profiling-memalloc-unbounded-memory-growth-3662fe00083a9b50.yaml b/dd-trace-py/releasenotes/notes/profiling-memalloc-unbounded-memory-growth-3662fe00083a9b50.yaml
similarity index 100%
rename from releasenotes/notes/profiling-memalloc-unbounded-memory-growth-3662fe00083a9b50.yaml
rename to dd-trace-py/releasenotes/notes/profiling-memalloc-unbounded-memory-growth-3662fe00083a9b50.yaml
diff --git a/releasenotes/notes/profiling-memory-reversed-0429df7370537088.yaml b/dd-trace-py/releasenotes/notes/profiling-memory-reversed-0429df7370537088.yaml
similarity index 100%
rename from releasenotes/notes/profiling-memory-reversed-0429df7370537088.yaml
rename to dd-trace-py/releasenotes/notes/profiling-memory-reversed-0429df7370537088.yaml
diff --git a/releasenotes/notes/profiling-memory-use-weighted-allocation-size-cfe1ff5d2cde9429.yaml b/dd-trace-py/releasenotes/notes/profiling-memory-use-weighted-allocation-size-cfe1ff5d2cde9429.yaml
similarity index 100%
rename from releasenotes/notes/profiling-memory-use-weighted-allocation-size-cfe1ff5d2cde9429.yaml
rename to dd-trace-py/releasenotes/notes/profiling-memory-use-weighted-allocation-size-cfe1ff5d2cde9429.yaml
diff --git a/releasenotes/notes/profiling-move-echion-to-dd-trace-py-6a231b502eed899c.yaml b/dd-trace-py/releasenotes/notes/profiling-move-echion-to-dd-trace-py-6a231b502eed899c.yaml
similarity index 100%
rename from releasenotes/notes/profiling-move-echion-to-dd-trace-py-6a231b502eed899c.yaml
rename to dd-trace-py/releasenotes/notes/profiling-move-echion-to-dd-trace-py-6a231b502eed899c.yaml
diff --git a/releasenotes/notes/profiling-new-asyncio-utils-0da63b888136e5d1.yaml b/dd-trace-py/releasenotes/notes/profiling-new-asyncio-utils-0da63b888136e5d1.yaml
similarity index 100%
rename from releasenotes/notes/profiling-new-asyncio-utils-0da63b888136e5d1.yaml
rename to dd-trace-py/releasenotes/notes/profiling-new-asyncio-utils-0da63b888136e5d1.yaml
diff --git a/releasenotes/notes/profiling-no-flush-on-fork-c6c2b3c2d27a9a32.yaml b/dd-trace-py/releasenotes/notes/profiling-no-flush-on-fork-c6c2b3c2d27a9a32.yaml
similarity index 100%
rename from releasenotes/notes/profiling-no-flush-on-fork-c6c2b3c2d27a9a32.yaml
rename to dd-trace-py/releasenotes/notes/profiling-no-flush-on-fork-c6c2b3c2d27a9a32.yaml
diff --git a/releasenotes/notes/profiling-option-to-disable-endpoint-collection-48ab251acb0d9b4e.yaml b/dd-trace-py/releasenotes/notes/profiling-option-to-disable-endpoint-collection-48ab251acb0d9b4e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-option-to-disable-endpoint-collection-48ab251acb0d9b4e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-option-to-disable-endpoint-collection-48ab251acb0d9b4e.yaml
diff --git a/releasenotes/notes/profiling-phase-out-process-vm-readv-97af2e74953bb9e9.yaml b/dd-trace-py/releasenotes/notes/profiling-phase-out-process-vm-readv-97af2e74953bb9e9.yaml
similarity index 100%
rename from releasenotes/notes/profiling-phase-out-process-vm-readv-97af2e74953bb9e9.yaml
rename to dd-trace-py/releasenotes/notes/profiling-phase-out-process-vm-readv-97af2e74953bb9e9.yaml
diff --git a/releasenotes/notes/profiling-pthread-aarch64-d4548fd1842d0665.yaml b/dd-trace-py/releasenotes/notes/profiling-pthread-aarch64-d4548fd1842d0665.yaml
similarity index 100%
rename from releasenotes/notes/profiling-pthread-aarch64-d4548fd1842d0665.yaml
rename to dd-trace-py/releasenotes/notes/profiling-pthread-aarch64-d4548fd1842d0665.yaml
diff --git a/releasenotes/notes/profiling-python-3.11-40056cf7a4313cec.yaml b/dd-trace-py/releasenotes/notes/profiling-python-3.11-40056cf7a4313cec.yaml
similarity index 100%
rename from releasenotes/notes/profiling-python-3.11-40056cf7a4313cec.yaml
rename to dd-trace-py/releasenotes/notes/profiling-python-3.11-40056cf7a4313cec.yaml
diff --git a/releasenotes/notes/profiling-race-condition-stack-chunk-b3efd548e57b1b8b.yaml b/dd-trace-py/releasenotes/notes/profiling-race-condition-stack-chunk-b3efd548e57b1b8b.yaml
similarity index 100%
rename from releasenotes/notes/profiling-race-condition-stack-chunk-b3efd548e57b1b8b.yaml
rename to dd-trace-py/releasenotes/notes/profiling-race-condition-stack-chunk-b3efd548e57b1b8b.yaml
diff --git a/releasenotes/notes/profiling-reduce-lock-profiler-log-spam-5931d957ff1becd4.yaml b/dd-trace-py/releasenotes/notes/profiling-reduce-lock-profiler-log-spam-5931d957ff1becd4.yaml
similarity index 100%
rename from releasenotes/notes/profiling-reduce-lock-profiler-log-spam-5931d957ff1becd4.yaml
rename to dd-trace-py/releasenotes/notes/profiling-reduce-lock-profiler-log-spam-5931d957ff1becd4.yaml
diff --git a/releasenotes/notes/profiling-reduce-log-spam-1978642acb3157ed.yaml b/dd-trace-py/releasenotes/notes/profiling-reduce-log-spam-1978642acb3157ed.yaml
similarity index 100%
rename from releasenotes/notes/profiling-reduce-log-spam-1978642acb3157ed.yaml
rename to dd-trace-py/releasenotes/notes/profiling-reduce-log-spam-1978642acb3157ed.yaml
diff --git a/releasenotes/notes/profiling-reduce-memory-allocs-7b3d80adf0d2d0e7.yaml b/dd-trace-py/releasenotes/notes/profiling-reduce-memory-allocs-7b3d80adf0d2d0e7.yaml
similarity index 100%
rename from releasenotes/notes/profiling-reduce-memory-allocs-7b3d80adf0d2d0e7.yaml
rename to dd-trace-py/releasenotes/notes/profiling-reduce-memory-allocs-7b3d80adf0d2d0e7.yaml
diff --git a/releasenotes/notes/profiling-reinstall-signal-handlers-f399eaed35481177.yaml b/dd-trace-py/releasenotes/notes/profiling-reinstall-signal-handlers-f399eaed35481177.yaml
similarity index 100%
rename from releasenotes/notes/profiling-reinstall-signal-handlers-f399eaed35481177.yaml
rename to dd-trace-py/releasenotes/notes/profiling-reinstall-signal-handlers-f399eaed35481177.yaml
diff --git a/releasenotes/notes/profiling-remove-getpid-from-memalloc-74f54043accdfc9e.yaml b/dd-trace-py/releasenotes/notes/profiling-remove-getpid-from-memalloc-74f54043accdfc9e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-remove-getpid-from-memalloc-74f54043accdfc9e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-remove-getpid-from-memalloc-74f54043accdfc9e.yaml
diff --git a/releasenotes/notes/profiling-remove-profile-fbf8e32388899b05.yaml b/dd-trace-py/releasenotes/notes/profiling-remove-profile-fbf8e32388899b05.yaml
similarity index 100%
rename from releasenotes/notes/profiling-remove-profile-fbf8e32388899b05.yaml
rename to dd-trace-py/releasenotes/notes/profiling-remove-profile-fbf8e32388899b05.yaml
diff --git a/releasenotes/notes/profiling-remove-pyddprofile-1a699c195d9d3ab0.yaml b/dd-trace-py/releasenotes/notes/profiling-remove-pyddprofile-1a699c195d9d3ab0.yaml
similarity index 100%
rename from releasenotes/notes/profiling-remove-pyddprofile-1a699c195d9d3ab0.yaml
rename to dd-trace-py/releasenotes/notes/profiling-remove-pyddprofile-1a699c195d9d3ab0.yaml
diff --git a/releasenotes/notes/profiling-remove-tracemalloc-memory-collector-7a98634e0d9672a6.yaml b/dd-trace-py/releasenotes/notes/profiling-remove-tracemalloc-memory-collector-7a98634e0d9672a6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-remove-tracemalloc-memory-collector-7a98634e0d9672a6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-remove-tracemalloc-memory-collector-7a98634e0d9672a6.yaml
diff --git a/releasenotes/notes/profiling-remove-uncaught-exception-be09cc1bca6b7af6.yaml b/dd-trace-py/releasenotes/notes/profiling-remove-uncaught-exception-be09cc1bca6b7af6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-remove-uncaught-exception-be09cc1bca6b7af6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-remove-uncaught-exception-be09cc1bca6b7af6.yaml
diff --git a/releasenotes/notes/profiling-reset-threadinfo-fork-1ad07e470a06bcfa.yaml b/dd-trace-py/releasenotes/notes/profiling-reset-threadinfo-fork-1ad07e470a06bcfa.yaml
similarity index 100%
rename from releasenotes/notes/profiling-reset-threadinfo-fork-1ad07e470a06bcfa.yaml
rename to dd-trace-py/releasenotes/notes/profiling-reset-threadinfo-fork-1ad07e470a06bcfa.yaml
diff --git a/releasenotes/notes/profiling-resource-name-fix-5f73526a307e8b40.yaml b/dd-trace-py/releasenotes/notes/profiling-resource-name-fix-5f73526a307e8b40.yaml
similarity index 100%
rename from releasenotes/notes/profiling-resource-name-fix-5f73526a307e8b40.yaml
rename to dd-trace-py/releasenotes/notes/profiling-resource-name-fix-5f73526a307e8b40.yaml
diff --git a/releasenotes/notes/profiling-restart-forksafe-8ea9e2adf6a589d2.yaml b/dd-trace-py/releasenotes/notes/profiling-restart-forksafe-8ea9e2adf6a589d2.yaml
similarity index 100%
rename from releasenotes/notes/profiling-restart-forksafe-8ea9e2adf6a589d2.yaml
rename to dd-trace-py/releasenotes/notes/profiling-restart-forksafe-8ea9e2adf6a589d2.yaml
diff --git a/releasenotes/notes/profiling-revert-interning-7bf74af77deaf850.yaml b/dd-trace-py/releasenotes/notes/profiling-revert-interning-7bf74af77deaf850.yaml
similarity index 100%
rename from releasenotes/notes/profiling-revert-interning-7bf74af77deaf850.yaml
rename to dd-trace-py/releasenotes/notes/profiling-revert-interning-7bf74af77deaf850.yaml
diff --git a/releasenotes/notes/profiling-safer-use-of-task-linking-bfca996e62c5d5b3.yaml b/dd-trace-py/releasenotes/notes/profiling-safer-use-of-task-linking-bfca996e62c5d5b3.yaml
similarity index 100%
rename from releasenotes/notes/profiling-safer-use-of-task-linking-bfca996e62c5d5b3.yaml
rename to dd-trace-py/releasenotes/notes/profiling-safer-use-of-task-linking-bfca996e62c5d5b3.yaml
diff --git a/releasenotes/notes/profiling-salt-string-table-keys-3c42c34b842f8c48.yaml b/dd-trace-py/releasenotes/notes/profiling-salt-string-table-keys-3c42c34b842f8c48.yaml
similarity index 100%
rename from releasenotes/notes/profiling-salt-string-table-keys-3c42c34b842f8c48.yaml
rename to dd-trace-py/releasenotes/notes/profiling-salt-string-table-keys-3c42c34b842f8c48.yaml
diff --git a/releasenotes/notes/profiling-sample-pool-461a108e068dea5b.yaml b/dd-trace-py/releasenotes/notes/profiling-sample-pool-461a108e068dea5b.yaml
similarity index 100%
rename from releasenotes/notes/profiling-sample-pool-461a108e068dea5b.yaml
rename to dd-trace-py/releasenotes/notes/profiling-sample-pool-461a108e068dea5b.yaml
diff --git a/releasenotes/notes/profiling-self-acquired-at-963cadba71ac62b8.yaml b/dd-trace-py/releasenotes/notes/profiling-self-acquired-at-963cadba71ac62b8.yaml
similarity index 100%
rename from releasenotes/notes/profiling-self-acquired-at-963cadba71ac62b8.yaml
rename to dd-trace-py/releasenotes/notes/profiling-self-acquired-at-963cadba71ac62b8.yaml
diff --git a/releasenotes/notes/profiling-smaller-defaults-93481e676688930f.yaml b/dd-trace-py/releasenotes/notes/profiling-smaller-defaults-93481e676688930f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-smaller-defaults-93481e676688930f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-smaller-defaults-93481e676688930f.yaml
diff --git a/releasenotes/notes/profiling-span-link-leak-e7eb1aca3362cd2e.yaml b/dd-trace-py/releasenotes/notes/profiling-span-link-leak-e7eb1aca3362cd2e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-span-link-leak-e7eb1aca3362cd2e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-span-link-leak-e7eb1aca3362cd2e.yaml
diff --git a/releasenotes/notes/profiling-stack-exception-sample-trace-49228a2ce81b32ca.yaml b/dd-trace-py/releasenotes/notes/profiling-stack-exception-sample-trace-49228a2ce81b32ca.yaml
similarity index 100%
rename from releasenotes/notes/profiling-stack-exception-sample-trace-49228a2ce81b32ca.yaml
rename to dd-trace-py/releasenotes/notes/profiling-stack-exception-sample-trace-49228a2ce81b32ca.yaml
diff --git a/releasenotes/notes/profiling-stack-v2-asyncio-task-4f9ead040829f2f5.yaml b/dd-trace-py/releasenotes/notes/profiling-stack-v2-asyncio-task-4f9ead040829f2f5.yaml
similarity index 100%
rename from releasenotes/notes/profiling-stack-v2-asyncio-task-4f9ead040829f2f5.yaml
rename to dd-trace-py/releasenotes/notes/profiling-stack-v2-asyncio-task-4f9ead040829f2f5.yaml
diff --git a/releasenotes/notes/profiling-stack-v2-default-ecd535ccf0c73ce0.yaml b/dd-trace-py/releasenotes/notes/profiling-stack-v2-default-ecd535ccf0c73ce0.yaml
similarity index 100%
rename from releasenotes/notes/profiling-stack-v2-default-ecd535ccf0c73ce0.yaml
rename to dd-trace-py/releasenotes/notes/profiling-stack-v2-default-ecd535ccf0c73ce0.yaml
diff --git a/releasenotes/notes/profiling-stack-v2-endpoint-span-type-none-48a1196296be3742.yaml b/dd-trace-py/releasenotes/notes/profiling-stack-v2-endpoint-span-type-none-48a1196296be3742.yaml
similarity index 100%
rename from releasenotes/notes/profiling-stack-v2-endpoint-span-type-none-48a1196296be3742.yaml
rename to dd-trace-py/releasenotes/notes/profiling-stack-v2-endpoint-span-type-none-48a1196296be3742.yaml
diff --git a/releasenotes/notes/profiling-stack-v2-runtime-7a4700f8571deddc.yaml b/dd-trace-py/releasenotes/notes/profiling-stack-v2-runtime-7a4700f8571deddc.yaml
similarity index 100%
rename from releasenotes/notes/profiling-stack-v2-runtime-7a4700f8571deddc.yaml
rename to dd-trace-py/releasenotes/notes/profiling-stack-v2-runtime-7a4700f8571deddc.yaml
diff --git a/releasenotes/notes/profiling-stack-v2-task-names-1d566a1793280aa0.yaml b/dd-trace-py/releasenotes/notes/profiling-stack-v2-task-names-1d566a1793280aa0.yaml
similarity index 100%
rename from releasenotes/notes/profiling-stack-v2-task-names-1d566a1793280aa0.yaml
rename to dd-trace-py/releasenotes/notes/profiling-stack-v2-task-names-1d566a1793280aa0.yaml
diff --git a/releasenotes/notes/profiling-stack-v2-upside-down-82ebd3073b5e8e43.yaml b/dd-trace-py/releasenotes/notes/profiling-stack-v2-upside-down-82ebd3073b5e8e43.yaml
similarity index 100%
rename from releasenotes/notes/profiling-stack-v2-upside-down-82ebd3073b5e8e43.yaml
rename to dd-trace-py/releasenotes/notes/profiling-stack-v2-upside-down-82ebd3073b5e8e43.yaml
diff --git a/releasenotes/notes/profiling-store-memalloc-samples-as-native-objects-0e63fe0991cb83c7.yaml b/dd-trace-py/releasenotes/notes/profiling-store-memalloc-samples-as-native-objects-0e63fe0991cb83c7.yaml
similarity index 100%
rename from releasenotes/notes/profiling-store-memalloc-samples-as-native-objects-0e63fe0991cb83c7.yaml
rename to dd-trace-py/releasenotes/notes/profiling-store-memalloc-samples-as-native-objects-0e63fe0991cb83c7.yaml
diff --git a/releasenotes/notes/profiling-support-code-provenance-be041af9e18e3056.yaml b/dd-trace-py/releasenotes/notes/profiling-support-code-provenance-be041af9e18e3056.yaml
similarity index 100%
rename from releasenotes/notes/profiling-support-code-provenance-be041af9e18e3056.yaml
rename to dd-trace-py/releasenotes/notes/profiling-support-code-provenance-be041af9e18e3056.yaml
diff --git a/releasenotes/notes/profiling-support-for-weak-links-48427bed4033c2f6.yaml b/dd-trace-py/releasenotes/notes/profiling-support-for-weak-links-48427bed4033c2f6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-support-for-weak-links-48427bed4033c2f6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-support-for-weak-links-48427bed4033c2f6.yaml
diff --git a/releasenotes/notes/profiling-support-native-frames-9599f2d1030e6e58.yaml b/dd-trace-py/releasenotes/notes/profiling-support-native-frames-9599f2d1030e6e58.yaml
similarity index 100%
rename from releasenotes/notes/profiling-support-native-frames-9599f2d1030e6e58.yaml
rename to dd-trace-py/releasenotes/notes/profiling-support-native-frames-9599f2d1030e6e58.yaml
diff --git a/releasenotes/notes/profiling-tags-api-f4d732d3c31ee2cf.yaml b/dd-trace-py/releasenotes/notes/profiling-tags-api-f4d732d3c31ee2cf.yaml
similarity index 100%
rename from releasenotes/notes/profiling-tags-api-f4d732d3c31ee2cf.yaml
rename to dd-trace-py/releasenotes/notes/profiling-tags-api-f4d732d3c31ee2cf.yaml
diff --git a/releasenotes/notes/profiling-task-pprof-3afb83e36a63aeaf.yaml b/dd-trace-py/releasenotes/notes/profiling-task-pprof-3afb83e36a63aeaf.yaml
similarity index 100%
rename from releasenotes/notes/profiling-task-pprof-3afb83e36a63aeaf.yaml
rename to dd-trace-py/releasenotes/notes/profiling-task-pprof-3afb83e36a63aeaf.yaml
diff --git a/releasenotes/notes/profiling-threading-tracing-6877348333bbaa80.yaml b/dd-trace-py/releasenotes/notes/profiling-threading-tracing-6877348333bbaa80.yaml
similarity index 100%
rename from releasenotes/notes/profiling-threading-tracing-6877348333bbaa80.yaml
rename to dd-trace-py/releasenotes/notes/profiling-threading-tracing-6877348333bbaa80.yaml
diff --git a/releasenotes/notes/profiling-threadlink-lock-27df798c36ed64e6.yaml b/dd-trace-py/releasenotes/notes/profiling-threadlink-lock-27df798c36ed64e6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-threadlink-lock-27df798c36ed64e6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-threadlink-lock-27df798c36ed64e6.yaml
diff --git a/releasenotes/notes/profiling-timeline-lock-init-loc-and-frames-39a43f924bde88d2.yaml b/dd-trace-py/releasenotes/notes/profiling-timeline-lock-init-loc-and-frames-39a43f924bde88d2.yaml
similarity index 100%
rename from releasenotes/notes/profiling-timeline-lock-init-loc-and-frames-39a43f924bde88d2.yaml
rename to dd-trace-py/releasenotes/notes/profiling-timeline-lock-init-loc-and-frames-39a43f924bde88d2.yaml
diff --git a/releasenotes/notes/profiling-timeout-10s-a2468ce1444887b5.yaml b/dd-trace-py/releasenotes/notes/profiling-timeout-10s-a2468ce1444887b5.yaml
similarity index 100%
rename from releasenotes/notes/profiling-timeout-10s-a2468ce1444887b5.yaml
rename to dd-trace-py/releasenotes/notes/profiling-timeout-10s-a2468ce1444887b5.yaml
diff --git a/releasenotes/notes/profiling-track-asyncio-as-completed-e6a3e43c316aa921.yaml b/dd-trace-py/releasenotes/notes/profiling-track-asyncio-as-completed-e6a3e43c316aa921.yaml
similarity index 100%
rename from releasenotes/notes/profiling-track-asyncio-as-completed-e6a3e43c316aa921.yaml
rename to dd-trace-py/releasenotes/notes/profiling-track-asyncio-as-completed-e6a3e43c316aa921.yaml
diff --git a/releasenotes/notes/profiling-track-asyncio-traskgroup-324ea88e732a3e45.yaml b/dd-trace-py/releasenotes/notes/profiling-track-asyncio-traskgroup-324ea88e732a3e45.yaml
similarity index 100%
rename from releasenotes/notes/profiling-track-asyncio-traskgroup-324ea88e732a3e45.yaml
rename to dd-trace-py/releasenotes/notes/profiling-track-asyncio-traskgroup-324ea88e732a3e45.yaml
diff --git a/releasenotes/notes/profiling-track-asyncio-wait-5c7c5f7e06760c9f.yaml b/dd-trace-py/releasenotes/notes/profiling-track-asyncio-wait-5c7c5f7e06760c9f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-track-asyncio-wait-5c7c5f7e06760c9f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-track-asyncio-wait-5c7c5f7e06760c9f.yaml
diff --git a/releasenotes/notes/profiling-track-task-gevent-threading-lock-313ac1db779e624a.yaml b/dd-trace-py/releasenotes/notes/profiling-track-task-gevent-threading-lock-313ac1db779e624a.yaml
similarity index 100%
rename from releasenotes/notes/profiling-track-task-gevent-threading-lock-313ac1db779e624a.yaml
rename to dd-trace-py/releasenotes/notes/profiling-track-task-gevent-threading-lock-313ac1db779e624a.yaml
diff --git a/releasenotes/notes/profiling-update-echion-1cb85860b04f891d.yaml b/dd-trace-py/releasenotes/notes/profiling-update-echion-1cb85860b04f891d.yaml
similarity index 100%
rename from releasenotes/notes/profiling-update-echion-1cb85860b04f891d.yaml
rename to dd-trace-py/releasenotes/notes/profiling-update-echion-1cb85860b04f891d.yaml
diff --git a/releasenotes/notes/profiling-update-echion-d2ff9f14c9279d4a.yaml b/dd-trace-py/releasenotes/notes/profiling-update-echion-d2ff9f14c9279d4a.yaml
similarity index 100%
rename from releasenotes/notes/profiling-update-echion-d2ff9f14c9279d4a.yaml
rename to dd-trace-py/releasenotes/notes/profiling-update-echion-d2ff9f14c9279d4a.yaml
diff --git a/releasenotes/notes/profiling-update-echion-d3b1230a3e542bcf.yaml b/dd-trace-py/releasenotes/notes/profiling-update-echion-d3b1230a3e542bcf.yaml
similarity index 100%
rename from releasenotes/notes/profiling-update-echion-d3b1230a3e542bcf.yaml
rename to dd-trace-py/releasenotes/notes/profiling-update-echion-d3b1230a3e542bcf.yaml
diff --git a/releasenotes/notes/profiling-update-echion-d85c69974ad895b6.yaml b/dd-trace-py/releasenotes/notes/profiling-update-echion-d85c69974ad895b6.yaml
similarity index 100%
rename from releasenotes/notes/profiling-update-echion-d85c69974ad895b6.yaml
rename to dd-trace-py/releasenotes/notes/profiling-update-echion-d85c69974ad895b6.yaml
diff --git a/releasenotes/notes/profiling-update-echion-queue-ub-fix-b14e8c603f2e115f.yaml b/dd-trace-py/releasenotes/notes/profiling-update-echion-queue-ub-fix-b14e8c603f2e115f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-update-echion-queue-ub-fix-b14e8c603f2e115f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-update-echion-queue-ub-fix-b14e8c603f2e115f.yaml
diff --git a/releasenotes/notes/profiling-update-trace-resource-after-finish-3ec59fa98d3eded8.yaml b/dd-trace-py/releasenotes/notes/profiling-update-trace-resource-after-finish-3ec59fa98d3eded8.yaml
similarity index 100%
rename from releasenotes/notes/profiling-update-trace-resource-after-finish-3ec59fa98d3eded8.yaml
rename to dd-trace-py/releasenotes/notes/profiling-update-trace-resource-after-finish-3ec59fa98d3eded8.yaml
diff --git a/releasenotes/notes/profiling-use-correct-native-extension-location-7eaf7cd1c727b91e.yaml b/dd-trace-py/releasenotes/notes/profiling-use-correct-native-extension-location-7eaf7cd1c727b91e.yaml
similarity index 100%
rename from releasenotes/notes/profiling-use-correct-native-extension-location-7eaf7cd1c727b91e.yaml
rename to dd-trace-py/releasenotes/notes/profiling-use-correct-native-extension-location-7eaf7cd1c727b91e.yaml
diff --git a/releasenotes/notes/profiling-use-libdatadog-c5d5e6b0c7d873b2.yaml b/dd-trace-py/releasenotes/notes/profiling-use-libdatadog-c5d5e6b0c7d873b2.yaml
similarity index 100%
rename from releasenotes/notes/profiling-use-libdatadog-c5d5e6b0c7d873b2.yaml
rename to dd-trace-py/releasenotes/notes/profiling-use-libdatadog-c5d5e6b0c7d873b2.yaml
diff --git a/releasenotes/notes/profiling-use-official-pygen-yf-for-313-9e9df6f153fae01f.yaml b/dd-trace-py/releasenotes/notes/profiling-use-official-pygen-yf-for-313-9e9df6f153fae01f.yaml
similarity index 100%
rename from releasenotes/notes/profiling-use-official-pygen-yf-for-313-9e9df6f153fae01f.yaml
rename to dd-trace-py/releasenotes/notes/profiling-use-official-pygen-yf-for-313-9e9df6f153fae01f.yaml
diff --git a/releasenotes/notes/profiling-use-tracer-config-83aa0ae0c2c53086.yaml b/dd-trace-py/releasenotes/notes/profiling-use-tracer-config-83aa0ae0c2c53086.yaml
similarity index 100%
rename from releasenotes/notes/profiling-use-tracer-config-83aa0ae0c2c53086.yaml
rename to dd-trace-py/releasenotes/notes/profiling-use-tracer-config-83aa0ae0c2c53086.yaml
diff --git a/releasenotes/notes/profiling-uvloop-event-loop-tracking-37d44e33a5529e60.yaml b/dd-trace-py/releasenotes/notes/profiling-uvloop-event-loop-tracking-37d44e33a5529e60.yaml
similarity index 100%
rename from releasenotes/notes/profiling-uvloop-event-loop-tracking-37d44e33a5529e60.yaml
rename to dd-trace-py/releasenotes/notes/profiling-uvloop-event-loop-tracking-37d44e33a5529e60.yaml
diff --git a/releasenotes/notes/profiling-uwsgi-atexit-978289df89d67ccb.yaml b/dd-trace-py/releasenotes/notes/profiling-uwsgi-atexit-978289df89d67ccb.yaml
similarity index 100%
rename from releasenotes/notes/profiling-uwsgi-atexit-978289df89d67ccb.yaml
rename to dd-trace-py/releasenotes/notes/profiling-uwsgi-atexit-978289df89d67ccb.yaml
diff --git a/releasenotes/notes/profiling-uwsgi-atexit-f7994c8dbcb16e9b.yaml b/dd-trace-py/releasenotes/notes/profiling-uwsgi-atexit-f7994c8dbcb16e9b.yaml
similarity index 100%
rename from releasenotes/notes/profiling-uwsgi-atexit-f7994c8dbcb16e9b.yaml
rename to dd-trace-py/releasenotes/notes/profiling-uwsgi-atexit-f7994c8dbcb16e9b.yaml
diff --git a/releasenotes/notes/profiling-uwsgi-faaeb38f11bd287b.yaml b/dd-trace-py/releasenotes/notes/profiling-uwsgi-faaeb38f11bd287b.yaml
similarity index 100%
rename from releasenotes/notes/profiling-uwsgi-faaeb38f11bd287b.yaml
rename to dd-trace-py/releasenotes/notes/profiling-uwsgi-faaeb38f11bd287b.yaml
diff --git a/releasenotes/notes/profiling-uwsgi-skip-atexit-2d931caef96837b1.yaml b/dd-trace-py/releasenotes/notes/profiling-uwsgi-skip-atexit-2d931caef96837b1.yaml
similarity index 100%
rename from releasenotes/notes/profiling-uwsgi-skip-atexit-2d931caef96837b1.yaml
rename to dd-trace-py/releasenotes/notes/profiling-uwsgi-skip-atexit-2d931caef96837b1.yaml
diff --git a/releasenotes/notes/profiling-v1-deprecate-f02a9d4d757534d9.yaml b/dd-trace-py/releasenotes/notes/profiling-v1-deprecate-f02a9d4d757534d9.yaml
similarity index 100%
rename from releasenotes/notes/profiling-v1-deprecate-f02a9d4d757534d9.yaml
rename to dd-trace-py/releasenotes/notes/profiling-v1-deprecate-f02a9d4d757534d9.yaml
diff --git a/releasenotes/notes/profiling-windows-421799a33aec60eb.yaml b/dd-trace-py/releasenotes/notes/profiling-windows-421799a33aec60eb.yaml
similarity index 100%
rename from releasenotes/notes/profiling-windows-421799a33aec60eb.yaml
rename to dd-trace-py/releasenotes/notes/profiling-windows-421799a33aec60eb.yaml
diff --git a/releasenotes/notes/propagation-tracestate-parse-limits-8c4e91b2a3f5670d.yaml b/dd-trace-py/releasenotes/notes/propagation-tracestate-parse-limits-8c4e91b2a3f5670d.yaml
similarity index 100%
rename from releasenotes/notes/propagation-tracestate-parse-limits-8c4e91b2a3f5670d.yaml
rename to dd-trace-py/releasenotes/notes/propagation-tracestate-parse-limits-8c4e91b2a3f5670d.yaml
diff --git a/releasenotes/notes/propagation_behavior_extract-3d16765cfd07485b.yaml b/dd-trace-py/releasenotes/notes/propagation_behavior_extract-3d16765cfd07485b.yaml
similarity index 100%
rename from releasenotes/notes/propagation_behavior_extract-3d16765cfd07485b.yaml
rename to dd-trace-py/releasenotes/notes/propagation_behavior_extract-3d16765cfd07485b.yaml
diff --git a/releasenotes/notes/propagation_check_id_valid_before_span_link-08be876337762a15.yaml b/dd-trace-py/releasenotes/notes/propagation_check_id_valid_before_span_link-08be876337762a15.yaml
similarity index 100%
rename from releasenotes/notes/propagation_check_id_valid_before_span_link-08be876337762a15.yaml
rename to dd-trace-py/releasenotes/notes/propagation_check_id_valid_before_span_link-08be876337762a15.yaml
diff --git a/releasenotes/notes/psycopg-before-27-removal-d6e551e47038abde.yaml b/dd-trace-py/releasenotes/notes/psycopg-before-27-removal-d6e551e47038abde.yaml
similarity index 100%
rename from releasenotes/notes/psycopg-before-27-removal-d6e551e47038abde.yaml
rename to dd-trace-py/releasenotes/notes/psycopg-before-27-removal-d6e551e47038abde.yaml
diff --git a/releasenotes/notes/psycopg-circular-6caf3b5fba4a1221.yaml b/dd-trace-py/releasenotes/notes/psycopg-circular-6caf3b5fba4a1221.yaml
similarity index 100%
rename from releasenotes/notes/psycopg-circular-6caf3b5fba4a1221.yaml
rename to dd-trace-py/releasenotes/notes/psycopg-circular-6caf3b5fba4a1221.yaml
diff --git a/releasenotes/notes/psycopg-trace-connect-option-0893f5b2d2745ed0.yaml b/dd-trace-py/releasenotes/notes/psycopg-trace-connect-option-0893f5b2d2745ed0.yaml
similarity index 100%
rename from releasenotes/notes/psycopg-trace-connect-option-0893f5b2d2745ed0.yaml
rename to dd-trace-py/releasenotes/notes/psycopg-trace-connect-option-0893f5b2d2745ed0.yaml
diff --git a/releasenotes/notes/psycopg3-aexit-808941eef6191d86.yaml b/dd-trace-py/releasenotes/notes/psycopg3-aexit-808941eef6191d86.yaml
similarity index 100%
rename from releasenotes/notes/psycopg3-aexit-808941eef6191d86.yaml
rename to dd-trace-py/releasenotes/notes/psycopg3-aexit-808941eef6191d86.yaml
diff --git a/releasenotes/notes/py38-deprecate-34dc9ef0416b0381.yaml b/dd-trace-py/releasenotes/notes/py38-deprecate-34dc9ef0416b0381.yaml
similarity index 100%
rename from releasenotes/notes/py38-deprecate-34dc9ef0416b0381.yaml
rename to dd-trace-py/releasenotes/notes/py38-deprecate-34dc9ef0416b0381.yaml
diff --git a/releasenotes/notes/py38-remove-52943a5d318b4736.yaml b/dd-trace-py/releasenotes/notes/py38-remove-52943a5d318b4736.yaml
similarity index 100%
rename from releasenotes/notes/py38-remove-52943a5d318b4736.yaml
rename to dd-trace-py/releasenotes/notes/py38-remove-52943a5d318b4736.yaml
diff --git a/releasenotes/notes/py39-5a422b73ba563189.yaml b/dd-trace-py/releasenotes/notes/py39-5a422b73ba563189.yaml
similarity index 100%
rename from releasenotes/notes/py39-5a422b73ba563189.yaml
rename to dd-trace-py/releasenotes/notes/py39-5a422b73ba563189.yaml
diff --git a/releasenotes/notes/pydantic-ai-apm-integration-279845b06ab611dc.yaml b/dd-trace-py/releasenotes/notes/pydantic-ai-apm-integration-279845b06ab611dc.yaml
similarity index 100%
rename from releasenotes/notes/pydantic-ai-apm-integration-279845b06ab611dc.yaml
rename to dd-trace-py/releasenotes/notes/pydantic-ai-apm-integration-279845b06ab611dc.yaml
diff --git a/releasenotes/notes/pydantic-ai-llmobs-tracing-41047b43ecd9167b.yaml b/dd-trace-py/releasenotes/notes/pydantic-ai-llmobs-tracing-41047b43ecd9167b.yaml
similarity index 100%
rename from releasenotes/notes/pydantic-ai-llmobs-tracing-41047b43ecd9167b.yaml
rename to dd-trace-py/releasenotes/notes/pydantic-ai-llmobs-tracing-41047b43ecd9167b.yaml
diff --git a/releasenotes/notes/pydantic-ai-message-history-input-value-6b88c06781dc47e0.yaml b/dd-trace-py/releasenotes/notes/pydantic-ai-message-history-input-value-6b88c06781dc47e0.yaml
similarity index 100%
rename from releasenotes/notes/pydantic-ai-message-history-input-value-6b88c06781dc47e0.yaml
rename to dd-trace-py/releasenotes/notes/pydantic-ai-message-history-input-value-6b88c06781dc47e0.yaml
diff --git a/releasenotes/notes/pydantic-ai-support-stream-responses-96a5959ffd70fa15.yaml b/dd-trace-py/releasenotes/notes/pydantic-ai-support-stream-responses-96a5959ffd70fa15.yaml
similarity index 100%
rename from releasenotes/notes/pydantic-ai-support-stream-responses-96a5959ffd70fa15.yaml
rename to dd-trace-py/releasenotes/notes/pydantic-ai-support-stream-responses-96a5959ffd70fa15.yaml
diff --git a/releasenotes/notes/pydantic-evaluators-integration-6ded00e77ea1541e.yaml b/dd-trace-py/releasenotes/notes/pydantic-evaluators-integration-6ded00e77ea1541e.yaml
similarity index 100%
rename from releasenotes/notes/pydantic-evaluators-integration-6ded00e77ea1541e.yaml
rename to dd-trace-py/releasenotes/notes/pydantic-evaluators-integration-6ded00e77ea1541e.yaml
diff --git a/releasenotes/notes/pydantic-summary-evaluators-integration-52da1f23be343afd.yaml b/dd-trace-py/releasenotes/notes/pydantic-summary-evaluators-integration-52da1f23be343afd.yaml
similarity index 100%
rename from releasenotes/notes/pydantic-summary-evaluators-integration-52da1f23be343afd.yaml
rename to dd-trace-py/releasenotes/notes/pydantic-summary-evaluators-integration-52da1f23be343afd.yaml
diff --git a/releasenotes/notes/pylibmc-bug-fix-client-419c7912f54418b7.yaml b/dd-trace-py/releasenotes/notes/pylibmc-bug-fix-client-419c7912f54418b7.yaml
similarity index 100%
rename from releasenotes/notes/pylibmc-bug-fix-client-419c7912f54418b7.yaml
rename to dd-trace-py/releasenotes/notes/pylibmc-bug-fix-client-419c7912f54418b7.yaml
diff --git a/releasenotes/notes/pylibmc-fix-pin-632e1601923e0259.yaml b/dd-trace-py/releasenotes/notes/pylibmc-fix-pin-632e1601923e0259.yaml
similarity index 100%
rename from releasenotes/notes/pylibmc-fix-pin-632e1601923e0259.yaml
rename to dd-trace-py/releasenotes/notes/pylibmc-fix-pin-632e1601923e0259.yaml
diff --git a/releasenotes/notes/pylons-http-3d542b80b3fc4b48.yaml b/dd-trace-py/releasenotes/notes/pylons-http-3d542b80b3fc4b48.yaml
similarity index 100%
rename from releasenotes/notes/pylons-http-3d542b80b3fc4b48.yaml
rename to dd-trace-py/releasenotes/notes/pylons-http-3d542b80b3fc4b48.yaml
diff --git a/releasenotes/notes/pylons-int-config-b500a59f78297b88.yaml b/dd-trace-py/releasenotes/notes/pylons-int-config-b500a59f78297b88.yaml
similarity index 100%
rename from releasenotes/notes/pylons-int-config-b500a59f78297b88.yaml
rename to dd-trace-py/releasenotes/notes/pylons-int-config-b500a59f78297b88.yaml
diff --git a/releasenotes/notes/pymemcache-hashclient-usepooling-83f63f7014367b48.yaml b/dd-trace-py/releasenotes/notes/pymemcache-hashclient-usepooling-83f63f7014367b48.yaml
similarity index 100%
rename from releasenotes/notes/pymemcache-hashclient-usepooling-83f63f7014367b48.yaml
rename to dd-trace-py/releasenotes/notes/pymemcache-hashclient-usepooling-83f63f7014367b48.yaml
diff --git a/releasenotes/notes/pymemcache-update-c6d830daa541b3c8.yaml b/dd-trace-py/releasenotes/notes/pymemcache-update-c6d830daa541b3c8.yaml
similarity index 100%
rename from releasenotes/notes/pymemcache-update-c6d830daa541b3c8.yaml
rename to dd-trace-py/releasenotes/notes/pymemcache-update-c6d830daa541b3c8.yaml
diff --git a/releasenotes/notes/pymemcached-command-b0eaed2bfa1dcdc8.yaml b/dd-trace-py/releasenotes/notes/pymemcached-command-b0eaed2bfa1dcdc8.yaml
similarity index 100%
rename from releasenotes/notes/pymemcached-command-b0eaed2bfa1dcdc8.yaml
rename to dd-trace-py/releasenotes/notes/pymemcached-command-b0eaed2bfa1dcdc8.yaml
diff --git a/releasenotes/notes/pymong-4-9-support-83f7c613e5e009e6.yaml b/dd-trace-py/releasenotes/notes/pymong-4-9-support-83f7c613e5e009e6.yaml
similarity index 100%
rename from releasenotes/notes/pymong-4-9-support-83f7c613e5e009e6.yaml
rename to dd-trace-py/releasenotes/notes/pymong-4-9-support-83f7c613e5e009e6.yaml
diff --git a/releasenotes/notes/pymongo-4.0.2-1f5d2b6af5c158d2.yaml b/dd-trace-py/releasenotes/notes/pymongo-4.0.2-1f5d2b6af5c158d2.yaml
similarity index 100%
rename from releasenotes/notes/pymongo-4.0.2-1f5d2b6af5c158d2.yaml
rename to dd-trace-py/releasenotes/notes/pymongo-4.0.2-1f5d2b6af5c158d2.yaml
diff --git a/releasenotes/notes/pymongo-add-service-name-config-option-f4eb81539b2d39dc.yaml b/dd-trace-py/releasenotes/notes/pymongo-add-service-name-config-option-f4eb81539b2d39dc.yaml
similarity index 100%
rename from releasenotes/notes/pymongo-add-service-name-config-option-f4eb81539b2d39dc.yaml
rename to dd-trace-py/releasenotes/notes/pymongo-add-service-name-config-option-f4eb81539b2d39dc.yaml
diff --git a/releasenotes/notes/pymongo-check-pin-c3cb9d1fbdc82fb3.yaml b/dd-trace-py/releasenotes/notes/pymongo-check-pin-c3cb9d1fbdc82fb3.yaml
similarity index 100%
rename from releasenotes/notes/pymongo-check-pin-c3cb9d1fbdc82fb3.yaml
rename to dd-trace-py/releasenotes/notes/pymongo-check-pin-c3cb9d1fbdc82fb3.yaml
diff --git a/releasenotes/notes/pymongo-config-6e4495f0be97e288.yaml b/dd-trace-py/releasenotes/notes/pymongo-config-6e4495f0be97e288.yaml
similarity index 100%
rename from releasenotes/notes/pymongo-config-6e4495f0be97e288.yaml
rename to dd-trace-py/releasenotes/notes/pymongo-config-6e4495f0be97e288.yaml
diff --git a/releasenotes/notes/pymongo-disabled-tracer-bug-fix-d7782296afe5c1a9.yaml b/dd-trace-py/releasenotes/notes/pymongo-disabled-tracer-bug-fix-d7782296afe5c1a9.yaml
similarity index 100%
rename from releasenotes/notes/pymongo-disabled-tracer-bug-fix-d7782296afe5c1a9.yaml
rename to dd-trace-py/releasenotes/notes/pymongo-disabled-tracer-bug-fix-d7782296afe5c1a9.yaml
diff --git a/releasenotes/notes/pymongo-double-patching-topology-dd90eda48daa051c.yaml b/dd-trace-py/releasenotes/notes/pymongo-double-patching-topology-dd90eda48daa051c.yaml
similarity index 100%
rename from releasenotes/notes/pymongo-double-patching-topology-dd90eda48daa051c.yaml
rename to dd-trace-py/releasenotes/notes/pymongo-double-patching-topology-dd90eda48daa051c.yaml
diff --git a/releasenotes/notes/pymongo-fix-session-validation-error-1a05f8ad45bbbc35.yaml b/dd-trace-py/releasenotes/notes/pymongo-fix-session-validation-error-1a05f8ad45bbbc35.yaml
similarity index 100%
rename from releasenotes/notes/pymongo-fix-session-validation-error-1a05f8ad45bbbc35.yaml
rename to dd-trace-py/releasenotes/notes/pymongo-fix-session-validation-error-1a05f8ad45bbbc35.yaml
diff --git a/releasenotes/notes/pymongo-get-socket-808421288343ab81.yaml b/dd-trace-py/releasenotes/notes/pymongo-get-socket-808421288343ab81.yaml
similarity index 100%
rename from releasenotes/notes/pymongo-get-socket-808421288343ab81.yaml
rename to dd-trace-py/releasenotes/notes/pymongo-get-socket-808421288343ab81.yaml
diff --git a/releasenotes/notes/pyramid-config-7db0cb8f089c9417.yaml b/dd-trace-py/releasenotes/notes/pyramid-config-7db0cb8f089c9417.yaml
similarity index 100%
rename from releasenotes/notes/pyramid-config-7db0cb8f089c9417.yaml
rename to dd-trace-py/releasenotes/notes/pyramid-config-7db0cb8f089c9417.yaml
diff --git a/releasenotes/notes/pyramid-init-ea34d2717aab6aab.yaml b/dd-trace-py/releasenotes/notes/pyramid-init-ea34d2717aab6aab.yaml
similarity index 100%
rename from releasenotes/notes/pyramid-init-ea34d2717aab6aab.yaml
rename to dd-trace-py/releasenotes/notes/pyramid-init-ea34d2717aab6aab.yaml
diff --git a/releasenotes/notes/pytest-add-test-framework-version-adfb7fb30f7b304b.yaml b/dd-trace-py/releasenotes/notes/pytest-add-test-framework-version-adfb7fb30f7b304b.yaml
similarity index 100%
rename from releasenotes/notes/pytest-add-test-framework-version-adfb7fb30f7b304b.yaml
rename to dd-trace-py/releasenotes/notes/pytest-add-test-framework-version-adfb7fb30f7b304b.yaml
diff --git a/releasenotes/notes/pytest-d174e595f0c8abd0.yaml b/dd-trace-py/releasenotes/notes/pytest-d174e595f0c8abd0.yaml
similarity index 100%
rename from releasenotes/notes/pytest-d174e595f0c8abd0.yaml
rename to dd-trace-py/releasenotes/notes/pytest-d174e595f0c8abd0.yaml
diff --git a/releasenotes/notes/pytest-ddtrace-auto-e6c09074a4b0af3d.yaml b/dd-trace-py/releasenotes/notes/pytest-ddtrace-auto-e6c09074a4b0af3d.yaml
similarity index 100%
rename from releasenotes/notes/pytest-ddtrace-auto-e6c09074a4b0af3d.yaml
rename to dd-trace-py/releasenotes/notes/pytest-ddtrace-auto-e6c09074a4b0af3d.yaml
diff --git a/releasenotes/notes/pytest-disable-note-dababc18228d1f85.yaml b/dd-trace-py/releasenotes/notes/pytest-disable-note-dababc18228d1f85.yaml
similarity index 100%
rename from releasenotes/notes/pytest-disable-note-dababc18228d1f85.yaml
rename to dd-trace-py/releasenotes/notes/pytest-disable-note-dababc18228d1f85.yaml
diff --git a/releasenotes/notes/pytest-filter-out-non-test-traces-5864d681dd4d7017.yaml b/dd-trace-py/releasenotes/notes/pytest-filter-out-non-test-traces-5864d681dd4d7017.yaml
similarity index 100%
rename from releasenotes/notes/pytest-filter-out-non-test-traces-5864d681dd4d7017.yaml
rename to dd-trace-py/releasenotes/notes/pytest-filter-out-non-test-traces-5864d681dd4d7017.yaml
diff --git a/releasenotes/notes/pytest-fix-xfail-unsafe-access-f579fef50d5bd4fa.yaml b/dd-trace-py/releasenotes/notes/pytest-fix-xfail-unsafe-access-f579fef50d5bd4fa.yaml
similarity index 100%
rename from releasenotes/notes/pytest-fix-xfail-unsafe-access-f579fef50d5bd4fa.yaml
rename to dd-trace-py/releasenotes/notes/pytest-fix-xfail-unsafe-access-f579fef50d5bd4fa.yaml
diff --git a/releasenotes/notes/pytest-nocov-7f79128e1562e033.yaml b/dd-trace-py/releasenotes/notes/pytest-nocov-7f79128e1562e033.yaml
similarity index 100%
rename from releasenotes/notes/pytest-nocov-7f79128e1562e033.yaml
rename to dd-trace-py/releasenotes/notes/pytest-nocov-7f79128e1562e033.yaml
diff --git a/releasenotes/notes/pytest-parameters-7d6acf4ca1419be0.yaml b/dd-trace-py/releasenotes/notes/pytest-parameters-7d6acf4ca1419be0.yaml
similarity index 100%
rename from releasenotes/notes/pytest-parameters-7d6acf4ca1419be0.yaml
rename to dd-trace-py/releasenotes/notes/pytest-parameters-7d6acf4ca1419be0.yaml
diff --git a/releasenotes/notes/pytest-patch-all-05b2c812bf6ce0c2.yaml b/dd-trace-py/releasenotes/notes/pytest-patch-all-05b2c812bf6ce0c2.yaml
similarity index 100%
rename from releasenotes/notes/pytest-patch-all-05b2c812bf6ce0c2.yaml
rename to dd-trace-py/releasenotes/notes/pytest-patch-all-05b2c812bf6ce0c2.yaml
diff --git a/releasenotes/notes/pytest-service-name-8c9d0f37b159a561.yaml b/dd-trace-py/releasenotes/notes/pytest-service-name-8c9d0f37b159a561.yaml
similarity index 100%
rename from releasenotes/notes/pytest-service-name-8c9d0f37b159a561.yaml
rename to dd-trace-py/releasenotes/notes/pytest-service-name-8c9d0f37b159a561.yaml
diff --git a/releasenotes/notes/pytest-xfail-c15914f8ae3281c9.yaml b/dd-trace-py/releasenotes/notes/pytest-xfail-c15914f8ae3281c9.yaml
similarity index 100%
rename from releasenotes/notes/pytest-xfail-c15914f8ae3281c9.yaml
rename to dd-trace-py/releasenotes/notes/pytest-xfail-c15914f8ae3281c9.yaml
diff --git a/releasenotes/notes/python-3.7-deprecation-warning-c6c00bcafda1523f.yaml b/dd-trace-py/releasenotes/notes/python-3.7-deprecation-warning-c6c00bcafda1523f.yaml
similarity index 100%
rename from releasenotes/notes/python-3.7-deprecation-warning-c6c00bcafda1523f.yaml
rename to dd-trace-py/releasenotes/notes/python-3.7-deprecation-warning-c6c00bcafda1523f.yaml
diff --git a/releasenotes/notes/python-314-f80c8356eaaf8392.yaml b/dd-trace-py/releasenotes/notes/python-314-f80c8356eaaf8392.yaml
similarity index 100%
rename from releasenotes/notes/python-314-f80c8356eaaf8392.yaml
rename to dd-trace-py/releasenotes/notes/python-314-f80c8356eaaf8392.yaml
diff --git a/releasenotes/notes/python-exception-profiling-2efbb5289d133cb9.yaml b/dd-trace-py/releasenotes/notes/python-exception-profiling-2efbb5289d133cb9.yaml
similarity index 100%
rename from releasenotes/notes/python-exception-profiling-2efbb5289d133cb9.yaml
rename to dd-trace-py/releasenotes/notes/python-exception-profiling-2efbb5289d133cb9.yaml
diff --git a/releasenotes/notes/python310-cd0cbde016d9dced.yaml b/dd-trace-py/releasenotes/notes/python310-cd0cbde016d9dced.yaml
similarity index 100%
rename from releasenotes/notes/python310-cd0cbde016d9dced.yaml
rename to dd-trace-py/releasenotes/notes/python310-cd0cbde016d9dced.yaml
diff --git a/releasenotes/notes/python311-tracer-a7077c0e461622d2.yaml b/dd-trace-py/releasenotes/notes/python311-tracer-a7077c0e461622d2.yaml
similarity index 100%
rename from releasenotes/notes/python311-tracer-a7077c0e461622d2.yaml
rename to dd-trace-py/releasenotes/notes/python311-tracer-a7077c0e461622d2.yaml
diff --git a/releasenotes/notes/pythondetector-better-regex-5a0148ccade51b0e.yaml b/dd-trace-py/releasenotes/notes/pythondetector-better-regex-5a0148ccade51b0e.yaml
similarity index 100%
rename from releasenotes/notes/pythondetector-better-regex-5a0148ccade51b0e.yaml
rename to dd-trace-py/releasenotes/notes/pythondetector-better-regex-5a0148ccade51b0e.yaml
diff --git a/releasenotes/notes/pytyped-1a3fed96165afef1.yaml b/dd-trace-py/releasenotes/notes/pytyped-1a3fed96165afef1.yaml
similarity index 100%
rename from releasenotes/notes/pytyped-1a3fed96165afef1.yaml
rename to dd-trace-py/releasenotes/notes/pytyped-1a3fed96165afef1.yaml
diff --git a/releasenotes/notes/querystring_improved_sensitive_data_information-b055d0cda09da1c5.yaml b/dd-trace-py/releasenotes/notes/querystring_improved_sensitive_data_information-b055d0cda09da1c5.yaml
similarity index 100%
rename from releasenotes/notes/querystring_improved_sensitive_data_information-b055d0cda09da1c5.yaml
rename to dd-trace-py/releasenotes/notes/querystring_improved_sensitive_data_information-b055d0cda09da1c5.yaml
diff --git a/releasenotes/notes/ragas-integration-a81b696757c0e7a5.yaml b/dd-trace-py/releasenotes/notes/ragas-integration-a81b696757c0e7a5.yaml
similarity index 100%
rename from releasenotes/notes/ragas-integration-a81b696757c0e7a5.yaml
rename to dd-trace-py/releasenotes/notes/ragas-integration-a81b696757c0e7a5.yaml
diff --git a/releasenotes/notes/rasp-pathlib-lfi-protection-c0c6799c0bcb5f43.yaml b/dd-trace-py/releasenotes/notes/rasp-pathlib-lfi-protection-c0c6799c0bcb5f43.yaml
similarity index 100%
rename from releasenotes/notes/rasp-pathlib-lfi-protection-c0c6799c0bcb5f43.yaml
rename to dd-trace-py/releasenotes/notes/rasp-pathlib-lfi-protection-c0c6799c0bcb5f43.yaml
diff --git a/releasenotes/notes/rasp_cmdi-3c7819ee9e33e447.yaml b/dd-trace-py/releasenotes/notes/rasp_cmdi-3c7819ee9e33e447.yaml
similarity index 100%
rename from releasenotes/notes/rasp_cmdi-3c7819ee9e33e447.yaml
rename to dd-trace-py/releasenotes/notes/rasp_cmdi-3c7819ee9e33e447.yaml
diff --git a/releasenotes/notes/rasp_command_inject_os_system-ec5c2193bd451264.yaml b/dd-trace-py/releasenotes/notes/rasp_command_inject_os_system-ec5c2193bd451264.yaml
similarity index 100%
rename from releasenotes/notes/rasp_command_inject_os_system-ec5c2193bd451264.yaml
rename to dd-trace-py/releasenotes/notes/rasp_command_inject_os_system-ec5c2193bd451264.yaml
diff --git a/releasenotes/notes/rasp_conditional_call-f700a122b82b4c4f.yaml b/dd-trace-py/releasenotes/notes/rasp_conditional_call-f700a122b82b4c4f.yaml
similarity index 100%
rename from releasenotes/notes/rasp_conditional_call-f700a122b82b4c4f.yaml
rename to dd-trace-py/releasenotes/notes/rasp_conditional_call-f700a122b82b4c4f.yaml
diff --git a/releasenotes/notes/rate-limiting-fix-06e1952610b246f1.yaml b/dd-trace-py/releasenotes/notes/rate-limiting-fix-06e1952610b246f1.yaml
similarity index 100%
rename from releasenotes/notes/rate-limiting-fix-06e1952610b246f1.yaml
rename to dd-trace-py/releasenotes/notes/rate-limiting-fix-06e1952610b246f1.yaml
diff --git a/releasenotes/notes/raw_uri_for_wsgi-35328265e7a44028.yaml b/dd-trace-py/releasenotes/notes/raw_uri_for_wsgi-35328265e7a44028.yaml
similarity index 100%
rename from releasenotes/notes/raw_uri_for_wsgi-35328265e7a44028.yaml
rename to dd-trace-py/releasenotes/notes/raw_uri_for_wsgi-35328265e7a44028.yaml
diff --git a/releasenotes/notes/ray-core-integration-91f88d121822166d.yaml b/dd-trace-py/releasenotes/notes/ray-core-integration-91f88d121822166d.yaml
similarity index 100%
rename from releasenotes/notes/ray-core-integration-91f88d121822166d.yaml
rename to dd-trace-py/releasenotes/notes/ray-core-integration-91f88d121822166d.yaml
diff --git a/releasenotes/notes/ray-fix-internal-actors-57d41ebbcb000b98.yaml b/dd-trace-py/releasenotes/notes/ray-fix-internal-actors-57d41ebbcb000b98.yaml
similarity index 100%
rename from releasenotes/notes/ray-fix-internal-actors-57d41ebbcb000b98.yaml
rename to dd-trace-py/releasenotes/notes/ray-fix-internal-actors-57d41ebbcb000b98.yaml
diff --git a/releasenotes/notes/ray-fix-stuck-job-span-e5c1a175c10968f9.yaml b/dd-trace-py/releasenotes/notes/ray-fix-stuck-job-span-e5c1a175c10968f9.yaml
similarity index 100%
rename from releasenotes/notes/ray-fix-stuck-job-span-e5c1a175c10968f9.yaml
rename to dd-trace-py/releasenotes/notes/ray-fix-stuck-job-span-e5c1a175c10968f9.yaml
diff --git a/releasenotes/notes/ray-remove-job-submission-span-6b24dbbb78c76980.yaml b/dd-trace-py/releasenotes/notes/ray-remove-job-submission-span-6b24dbbb78c76980.yaml
similarity index 100%
rename from releasenotes/notes/ray-remove-job-submission-span-6b24dbbb78c76980.yaml
rename to dd-trace-py/releasenotes/notes/ray-remove-job-submission-span-6b24dbbb78c76980.yaml
diff --git a/releasenotes/notes/rc-poll-resilience-a4735a9d76f9f603.yaml b/dd-trace-py/releasenotes/notes/rc-poll-resilience-a4735a9d76f9f603.yaml
similarity index 100%
rename from releasenotes/notes/rc-poll-resilience-a4735a9d76f9f603.yaml
rename to dd-trace-py/releasenotes/notes/rc-poll-resilience-a4735a9d76f9f603.yaml
diff --git a/releasenotes/notes/rc_asm_features_fix-56fb35d0ca6c5d69.yaml b/dd-trace-py/releasenotes/notes/rc_asm_features_fix-56fb35d0ca6c5d69.yaml
similarity index 100%
rename from releasenotes/notes/rc_asm_features_fix-56fb35d0ca6c5d69.yaml
rename to dd-trace-py/releasenotes/notes/rc_asm_features_fix-56fb35d0ca6c5d69.yaml
diff --git a/releasenotes/notes/rc_logs_to_debug_level-13534746d9759332.yaml b/dd-trace-py/releasenotes/notes/rc_logs_to_debug_level-13534746d9759332.yaml
similarity index 100%
rename from releasenotes/notes/rc_logs_to_debug_level-13534746d9759332.yaml
rename to dd-trace-py/releasenotes/notes/rc_logs_to_debug_level-13534746d9759332.yaml
diff --git a/releasenotes/notes/rc_payload_fix-a03a98dcad934658.yaml b/dd-trace-py/releasenotes/notes/rc_payload_fix-a03a98dcad934658.yaml
similarity index 100%
rename from releasenotes/notes/rc_payload_fix-a03a98dcad934658.yaml
rename to dd-trace-py/releasenotes/notes/rc_payload_fix-a03a98dcad934658.yaml
diff --git a/releasenotes/notes/rc_switch_to_typecode-9409c92e8a07a8be.yaml b/dd-trace-py/releasenotes/notes/rc_switch_to_typecode-9409c92e8a07a8be.yaml
similarity index 100%
rename from releasenotes/notes/rc_switch_to_typecode-9409c92e8a07a8be.yaml
rename to dd-trace-py/releasenotes/notes/rc_switch_to_typecode-9409c92e8a07a8be.yaml
diff --git a/releasenotes/notes/rcm-fix-disable-f45787a4e6576f53.yaml b/dd-trace-py/releasenotes/notes/rcm-fix-disable-f45787a4e6576f53.yaml
similarity index 100%
rename from releasenotes/notes/rcm-fix-disable-f45787a4e6576f53.yaml
rename to dd-trace-py/releasenotes/notes/rcm-fix-disable-f45787a4e6576f53.yaml
diff --git a/releasenotes/notes/rcm-fix-disable-product-06e4343ba60a89cd.yaml b/dd-trace-py/releasenotes/notes/rcm-fix-disable-product-06e4343ba60a89cd.yaml
similarity index 100%
rename from releasenotes/notes/rcm-fix-disable-product-06e4343ba60a89cd.yaml
rename to dd-trace-py/releasenotes/notes/rcm-fix-disable-product-06e4343ba60a89cd.yaml
diff --git a/releasenotes/notes/rcm-fix-payload-errors-808e827b978c829a.yaml b/dd-trace-py/releasenotes/notes/rcm-fix-payload-errors-808e827b978c829a.yaml
similarity index 100%
rename from releasenotes/notes/rcm-fix-payload-errors-808e827b978c829a.yaml
rename to dd-trace-py/releasenotes/notes/rcm-fix-payload-errors-808e827b978c829a.yaml
diff --git a/releasenotes/notes/rcm-fix-product-callback-d4d33b56ed8e17b4.yaml b/dd-trace-py/releasenotes/notes/rcm-fix-product-callback-d4d33b56ed8e17b4.yaml
similarity index 100%
rename from releasenotes/notes/rcm-fix-product-callback-d4d33b56ed8e17b4.yaml
rename to dd-trace-py/releasenotes/notes/rcm-fix-product-callback-d4d33b56ed8e17b4.yaml
diff --git a/releasenotes/notes/rcm-validations-162716c50ea90f1b.yaml b/dd-trace-py/releasenotes/notes/rcm-validations-162716c50ea90f1b.yaml
similarity index 100%
rename from releasenotes/notes/rcm-validations-162716c50ea90f1b.yaml
rename to dd-trace-py/releasenotes/notes/rcm-validations-162716c50ea90f1b.yaml
diff --git a/releasenotes/notes/reconcile-sampling-decsions-otel-21c6aae6ccbcfa31.yaml b/dd-trace-py/releasenotes/notes/reconcile-sampling-decsions-otel-21c6aae6ccbcfa31.yaml
similarity index 100%
rename from releasenotes/notes/reconcile-sampling-decsions-otel-21c6aae6ccbcfa31.yaml
rename to dd-trace-py/releasenotes/notes/reconcile-sampling-decsions-otel-21c6aae6ccbcfa31.yaml
diff --git a/releasenotes/notes/record-exception-deprecate-arguments-c82d62d15485e60a.yaml b/dd-trace-py/releasenotes/notes/record-exception-deprecate-arguments-c82d62d15485e60a.yaml
similarity index 100%
rename from releasenotes/notes/record-exception-deprecate-arguments-c82d62d15485e60a.yaml
rename to dd-trace-py/releasenotes/notes/record-exception-deprecate-arguments-c82d62d15485e60a.yaml
diff --git a/releasenotes/notes/redact-commands-from-redis-resources-c1bc594b98f299c5.yaml b/dd-trace-py/releasenotes/notes/redact-commands-from-redis-resources-c1bc594b98f299c5.yaml
similarity index 100%
rename from releasenotes/notes/redact-commands-from-redis-resources-c1bc594b98f299c5.yaml
rename to dd-trace-py/releasenotes/notes/redact-commands-from-redis-resources-c1bc594b98f299c5.yaml
diff --git a/releasenotes/notes/redact-sensitive-querystrings-in-http-url-522461022535a1e2.yaml b/dd-trace-py/releasenotes/notes/redact-sensitive-querystrings-in-http-url-522461022535a1e2.yaml
similarity index 100%
rename from releasenotes/notes/redact-sensitive-querystrings-in-http-url-522461022535a1e2.yaml
rename to dd-trace-py/releasenotes/notes/redact-sensitive-querystrings-in-http-url-522461022535a1e2.yaml
diff --git a/releasenotes/notes/redaction-exclude-identifiers-cd968f28d32e52ee.yaml b/dd-trace-py/releasenotes/notes/redaction-exclude-identifiers-cd968f28d32e52ee.yaml
similarity index 100%
rename from releasenotes/notes/redaction-exclude-identifiers-cd968f28d32e52ee.yaml
rename to dd-trace-py/releasenotes/notes/redaction-exclude-identifiers-cd968f28d32e52ee.yaml
diff --git a/releasenotes/notes/redis-asyncio-4b0b6a2a9d8f58c0.yaml b/dd-trace-py/releasenotes/notes/redis-asyncio-4b0b6a2a9d8f58c0.yaml
similarity index 100%
rename from releasenotes/notes/redis-asyncio-4b0b6a2a9d8f58c0.yaml
rename to dd-trace-py/releasenotes/notes/redis-asyncio-4b0b6a2a9d8f58c0.yaml
diff --git a/releasenotes/notes/redis-asyncio-client-name-b3f7bb35536d25bc.yaml b/dd-trace-py/releasenotes/notes/redis-asyncio-client-name-b3f7bb35536d25bc.yaml
similarity index 100%
rename from releasenotes/notes/redis-asyncio-client-name-b3f7bb35536d25bc.yaml
rename to dd-trace-py/releasenotes/notes/redis-asyncio-client-name-b3f7bb35536d25bc.yaml
diff --git a/releasenotes/notes/redis-asyncio-fix-f74f07b715b007d1.yaml b/dd-trace-py/releasenotes/notes/redis-asyncio-fix-f74f07b715b007d1.yaml
similarity index 100%
rename from releasenotes/notes/redis-asyncio-fix-f74f07b715b007d1.yaml
rename to dd-trace-py/releasenotes/notes/redis-asyncio-fix-f74f07b715b007d1.yaml
diff --git a/releasenotes/notes/redis-circular-2d53f27a7f6f413d.yaml b/dd-trace-py/releasenotes/notes/redis-circular-2d53f27a7f6f413d.yaml
similarity index 100%
rename from releasenotes/notes/redis-circular-2d53f27a7f6f413d.yaml
rename to dd-trace-py/releasenotes/notes/redis-circular-2d53f27a7f6f413d.yaml
diff --git a/releasenotes/notes/redis-utils-fix-undefined-variable-6c7d2d5ffcd01b41.yaml b/dd-trace-py/releasenotes/notes/redis-utils-fix-undefined-variable-6c7d2d5ffcd01b41.yaml
similarity index 100%
rename from releasenotes/notes/redis-utils-fix-undefined-variable-6c7d2d5ffcd01b41.yaml
rename to dd-trace-py/releasenotes/notes/redis-utils-fix-undefined-variable-6c7d2d5ffcd01b41.yaml
diff --git a/releasenotes/notes/rediscluster-add-service-name-config-option-cebcd5d2c408f65b.yaml b/dd-trace-py/releasenotes/notes/rediscluster-add-service-name-config-option-cebcd5d2c408f65b.yaml
similarity index 100%
rename from releasenotes/notes/rediscluster-add-service-name-config-option-cebcd5d2c408f65b.yaml
rename to dd-trace-py/releasenotes/notes/rediscluster-add-service-name-config-option-cebcd5d2c408f65b.yaml
diff --git a/releasenotes/notes/reduce-span-pointer-noise-e1cf01ec581a409c.yaml b/dd-trace-py/releasenotes/notes/reduce-span-pointer-noise-e1cf01ec581a409c.yaml
similarity index 100%
rename from releasenotes/notes/reduce-span-pointer-noise-e1cf01ec581a409c.yaml
rename to dd-trace-py/releasenotes/notes/reduce-span-pointer-noise-e1cf01ec581a409c.yaml
diff --git a/releasenotes/notes/refactor-di-er-enablement-env-var-12056782561eecc6.yaml b/dd-trace-py/releasenotes/notes/refactor-di-er-enablement-env-var-12056782561eecc6.yaml
similarity index 100%
rename from releasenotes/notes/refactor-di-er-enablement-env-var-12056782561eecc6.yaml
rename to dd-trace-py/releasenotes/notes/refactor-di-er-enablement-env-var-12056782561eecc6.yaml
diff --git a/releasenotes/notes/refactor-di-upload-interval-env-var-fea1f3a2d6ba6e52.yaml b/dd-trace-py/releasenotes/notes/refactor-di-upload-interval-env-var-fea1f3a2d6ba6e52.yaml
similarity index 100%
rename from releasenotes/notes/refactor-di-upload-interval-env-var-fea1f3a2d6ba6e52.yaml
rename to dd-trace-py/releasenotes/notes/refactor-di-upload-interval-env-var-fea1f3a2d6ba6e52.yaml
diff --git a/releasenotes/notes/refactor-patch-error-ssi-1a2e9fe206d6d6df.yaml b/dd-trace-py/releasenotes/notes/refactor-patch-error-ssi-1a2e9fe206d6d6df.yaml
similarity index 100%
rename from releasenotes/notes/refactor-patch-error-ssi-1a2e9fe206d6d6df.yaml
rename to dd-trace-py/releasenotes/notes/refactor-patch-error-ssi-1a2e9fe206d6d6df.yaml
diff --git a/releasenotes/notes/referrer-hostname-8aa6dc6edb9d53b1.yaml b/dd-trace-py/releasenotes/notes/referrer-hostname-8aa6dc6edb9d53b1.yaml
similarity index 100%
rename from releasenotes/notes/referrer-hostname-8aa6dc6edb9d53b1.yaml
rename to dd-trace-py/releasenotes/notes/referrer-hostname-8aa6dc6edb9d53b1.yaml
diff --git a/releasenotes/notes/release-1.0-758fc917e40d7eb3.yaml b/dd-trace-py/releasenotes/notes/release-1.0-758fc917e40d7eb3.yaml
similarity index 100%
rename from releasenotes/notes/release-1.0-758fc917e40d7eb3.yaml
rename to dd-trace-py/releasenotes/notes/release-1.0-758fc917e40d7eb3.yaml
diff --git a/releasenotes/notes/release-2.0-3af0045e2261bd02.yaml b/dd-trace-py/releasenotes/notes/release-2.0-3af0045e2261bd02.yaml
similarity index 100%
rename from releasenotes/notes/release-2.0-3af0045e2261bd02.yaml
rename to dd-trace-py/releasenotes/notes/release-2.0-3af0045e2261bd02.yaml
diff --git a/releasenotes/notes/remote-disable-tracing-3627e14fb30615ad.yaml b/dd-trace-py/releasenotes/notes/remote-disable-tracing-3627e14fb30615ad.yaml
similarity index 100%
rename from releasenotes/notes/remote-disable-tracing-3627e14fb30615ad.yaml
rename to dd-trace-py/releasenotes/notes/remote-disable-tracing-3627e14fb30615ad.yaml
diff --git a/releasenotes/notes/remote-evaluator-05918285997a09ce.yaml b/dd-trace-py/releasenotes/notes/remote-evaluator-05918285997a09ce.yaml
similarity index 100%
rename from releasenotes/notes/remote-evaluator-05918285997a09ce.yaml
rename to dd-trace-py/releasenotes/notes/remote-evaluator-05918285997a09ce.yaml
diff --git a/releasenotes/notes/remote-header-tags-76e5cbea308b87a1.yaml b/dd-trace-py/releasenotes/notes/remote-header-tags-76e5cbea308b87a1.yaml
similarity index 100%
rename from releasenotes/notes/remote-header-tags-76e5cbea308b87a1.yaml
rename to dd-trace-py/releasenotes/notes/remote-header-tags-76e5cbea308b87a1.yaml
diff --git a/releasenotes/notes/remote-logs-injection-b078bb1b9bd424eb.yaml b/dd-trace-py/releasenotes/notes/remote-logs-injection-b078bb1b9bd424eb.yaml
similarity index 100%
rename from releasenotes/notes/remote-logs-injection-b078bb1b9bd424eb.yaml
rename to dd-trace-py/releasenotes/notes/remote-logs-injection-b078bb1b9bd424eb.yaml
diff --git a/releasenotes/notes/remote-trace-tags-3e4d8c87afb18b86.yaml b/dd-trace-py/releasenotes/notes/remote-trace-tags-3e4d8c87afb18b86.yaml
similarity index 100%
rename from releasenotes/notes/remote-trace-tags-3e4d8c87afb18b86.yaml
rename to dd-trace-py/releasenotes/notes/remote-trace-tags-3e4d8c87afb18b86.yaml
diff --git a/releasenotes/notes/remote_config_threads_improvements-b048d409a93e4086.yaml b/dd-trace-py/releasenotes/notes/remote_config_threads_improvements-b048d409a93e4086.yaml
similarity index 100%
rename from releasenotes/notes/remote_config_threads_improvements-b048d409a93e4086.yaml
rename to dd-trace-py/releasenotes/notes/remote_config_threads_improvements-b048d409a93e4086.yaml
diff --git a/releasenotes/notes/removal_of_DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING-c1b4d2141ee92add.yaml b/dd-trace-py/releasenotes/notes/removal_of_DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING-c1b4d2141ee92add.yaml
similarity index 100%
rename from releasenotes/notes/removal_of_DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING-c1b4d2141ee92add.yaml
rename to dd-trace-py/releasenotes/notes/removal_of_DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING-c1b4d2141ee92add.yaml
diff --git a/releasenotes/notes/remove-API_appsec_private_constants-ec4b05f7bf5f6c29.yaml b/dd-trace-py/releasenotes/notes/remove-API_appsec_private_constants-ec4b05f7bf5f6c29.yaml
similarity index 100%
rename from releasenotes/notes/remove-API_appsec_private_constants-ec4b05f7bf5f6c29.yaml
rename to dd-trace-py/releasenotes/notes/remove-API_appsec_private_constants-ec4b05f7bf5f6c29.yaml
diff --git a/releasenotes/notes/remove-aioredis-3ebab9a4d3a2fc8f.yaml b/dd-trace-py/releasenotes/notes/remove-aioredis-3ebab9a4d3a2fc8f.yaml
similarity index 100%
rename from releasenotes/notes/remove-aioredis-3ebab9a4d3a2fc8f.yaml
rename to dd-trace-py/releasenotes/notes/remove-aioredis-3ebab9a4d3a2fc8f.yaml
diff --git a/releasenotes/notes/remove-alt-vmreader-07cb63ec874c8111.yaml b/dd-trace-py/releasenotes/notes/remove-alt-vmreader-07cb63ec874c8111.yaml
similarity index 100%
rename from releasenotes/notes/remove-alt-vmreader-07cb63ec874c8111.yaml
rename to dd-trace-py/releasenotes/notes/remove-alt-vmreader-07cb63ec874c8111.yaml
diff --git a/releasenotes/notes/remove-app-analytics-52ac993f27e2607f.yaml b/dd-trace-py/releasenotes/notes/remove-app-analytics-52ac993f27e2607f.yaml
similarity index 100%
rename from releasenotes/notes/remove-app-analytics-52ac993f27e2607f.yaml
rename to dd-trace-py/releasenotes/notes/remove-app-analytics-52ac993f27e2607f.yaml
diff --git a/releasenotes/notes/remove-apptypes-76c78d46c1792863.yaml b/dd-trace-py/releasenotes/notes/remove-apptypes-76c78d46c1792863.yaml
similarity index 100%
rename from releasenotes/notes/remove-apptypes-76c78d46c1792863.yaml
rename to dd-trace-py/releasenotes/notes/remove-apptypes-76c78d46c1792863.yaml
diff --git a/releasenotes/notes/remove-b3-single--4c16c32466c69709.yaml b/dd-trace-py/releasenotes/notes/remove-b3-single--4c16c32466c69709.yaml
similarity index 100%
rename from releasenotes/notes/remove-b3-single--4c16c32466c69709.yaml
rename to dd-trace-py/releasenotes/notes/remove-b3-single--4c16c32466c69709.yaml
diff --git a/releasenotes/notes/remove-before_in_child-error-log-35bfbe07236adf92.yaml b/dd-trace-py/releasenotes/notes/remove-before_in_child-error-log-35bfbe07236adf92.yaml
similarity index 100%
rename from releasenotes/notes/remove-before_in_child-error-log-35bfbe07236adf92.yaml
rename to dd-trace-py/releasenotes/notes/remove-before_in_child-error-log-35bfbe07236adf92.yaml
diff --git a/releasenotes/notes/remove-cassandra-traced-1b3211d1f9071e6f.yaml b/dd-trace-py/releasenotes/notes/remove-cassandra-traced-1b3211d1f9071e6f.yaml
similarity index 100%
rename from releasenotes/notes/remove-cassandra-traced-1b3211d1f9071e6f.yaml
rename to dd-trace-py/releasenotes/notes/remove-cassandra-traced-1b3211d1f9071e6f.yaml
diff --git a/releasenotes/notes/remove-celery-patch-task-3ad91299e26259d0.yaml b/dd-trace-py/releasenotes/notes/remove-celery-patch-task-3ad91299e26259d0.yaml
similarity index 100%
rename from releasenotes/notes/remove-celery-patch-task-3ad91299e26259d0.yaml
rename to dd-trace-py/releasenotes/notes/remove-celery-patch-task-3ad91299e26259d0.yaml
diff --git a/releasenotes/notes/remove-clone-context-3cc6f3d73f15345e.yaml b/dd-trace-py/releasenotes/notes/remove-clone-context-3cc6f3d73f15345e.yaml
similarity index 100%
rename from releasenotes/notes/remove-clone-context-3cc6f3d73f15345e.yaml
rename to dd-trace-py/releasenotes/notes/remove-clone-context-3cc6f3d73f15345e.yaml
diff --git a/releasenotes/notes/remove-constants-deprecations-023fbd010e7c767c.yaml b/dd-trace-py/releasenotes/notes/remove-constants-deprecations-023fbd010e7c767c.yaml
similarity index 100%
rename from releasenotes/notes/remove-constants-deprecations-023fbd010e7c767c.yaml
rename to dd-trace-py/releasenotes/notes/remove-constants-deprecations-023fbd010e7c767c.yaml
diff --git a/releasenotes/notes/remove-contrib-util-e4a33ee4684b457a.yaml b/dd-trace-py/releasenotes/notes/remove-contrib-util-e4a33ee4684b457a.yaml
similarity index 100%
rename from releasenotes/notes/remove-contrib-util-e4a33ee4684b457a.yaml
rename to dd-trace-py/releasenotes/notes/remove-contrib-util-e4a33ee4684b457a.yaml
diff --git a/releasenotes/notes/remove-core-settings-c2c7518876a1ca20.yaml b/dd-trace-py/releasenotes/notes/remove-core-settings-c2c7518876a1ca20.yaml
similarity index 100%
rename from releasenotes/notes/remove-core-settings-c2c7518876a1ca20.yaml
rename to dd-trace-py/releasenotes/notes/remove-core-settings-c2c7518876a1ca20.yaml
diff --git a/releasenotes/notes/remove-ddtrace-compat-4146d5adc293bf17.yaml b/dd-trace-py/releasenotes/notes/remove-ddtrace-compat-4146d5adc293bf17.yaml
similarity index 100%
rename from releasenotes/notes/remove-ddtrace-compat-4146d5adc293bf17.yaml
rename to dd-trace-py/releasenotes/notes/remove-ddtrace-compat-4146d5adc293bf17.yaml
diff --git a/releasenotes/notes/remove-ddtrace-encoding-5e35232cc5b3f855.yaml b/dd-trace-py/releasenotes/notes/remove-ddtrace-encoding-5e35232cc5b3f855.yaml
similarity index 100%
rename from releasenotes/notes/remove-ddtrace-encoding-5e35232cc5b3f855.yaml
rename to dd-trace-py/releasenotes/notes/remove-ddtrace-encoding-5e35232cc5b3f855.yaml
diff --git a/releasenotes/notes/remove-ddtrace-http-affe61bc13f9c613.yaml b/dd-trace-py/releasenotes/notes/remove-ddtrace-http-affe61bc13f9c613.yaml
similarity index 100%
rename from releasenotes/notes/remove-ddtrace-http-affe61bc13f9c613.yaml
rename to dd-trace-py/releasenotes/notes/remove-ddtrace-http-affe61bc13f9c613.yaml
diff --git a/releasenotes/notes/remove-ddtrace-install-excepthooks-8107b679a9f51ef3.yaml b/dd-trace-py/releasenotes/notes/remove-ddtrace-install-excepthooks-8107b679a9f51ef3.yaml
similarity index 100%
rename from releasenotes/notes/remove-ddtrace-install-excepthooks-8107b679a9f51ef3.yaml
rename to dd-trace-py/releasenotes/notes/remove-ddtrace-install-excepthooks-8107b679a9f51ef3.yaml
diff --git a/releasenotes/notes/remove-ddtrace-monkey-16e56038dc409769.yaml b/dd-trace-py/releasenotes/notes/remove-ddtrace-monkey-16e56038dc409769.yaml
similarity index 100%
rename from releasenotes/notes/remove-ddtrace-monkey-16e56038dc409769.yaml
rename to dd-trace-py/releasenotes/notes/remove-ddtrace-monkey-16e56038dc409769.yaml
diff --git a/releasenotes/notes/remove-ddtrace-propagation-utils-171fa44d0479028f.yaml b/dd-trace-py/releasenotes/notes/remove-ddtrace-propagation-utils-171fa44d0479028f.yaml
similarity index 100%
rename from releasenotes/notes/remove-ddtrace-propagation-utils-171fa44d0479028f.yaml
rename to dd-trace-py/releasenotes/notes/remove-ddtrace-propagation-utils-171fa44d0479028f.yaml
diff --git a/releasenotes/notes/remove-ddtrace-utils-ae7231d2e4f130b2.yaml b/dd-trace-py/releasenotes/notes/remove-ddtrace-utils-ae7231d2e4f130b2.yaml
similarity index 100%
rename from releasenotes/notes/remove-ddtrace-utils-ae7231d2e4f130b2.yaml
rename to dd-trace-py/releasenotes/notes/remove-ddtrace-utils-ae7231d2e4f130b2.yaml
diff --git a/releasenotes/notes/remove-deprecated-code-integrations-ae6970bbf9b10047.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-code-integrations-ae6970bbf9b10047.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-code-integrations-ae6970bbf9b10047.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-code-integrations-ae6970bbf9b10047.yaml
diff --git a/releasenotes/notes/remove-deprecated-collect-metrics-82d9bbff853a6704.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-collect-metrics-82d9bbff853a6704.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-collect-metrics-82d9bbff853a6704.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-collect-metrics-82d9bbff853a6704.yaml
diff --git a/releasenotes/notes/remove-deprecated-dbapi-config-b25bc1b236672fed.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-dbapi-config-b25bc1b236672fed.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-dbapi-config-b25bc1b236672fed.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-dbapi-config-b25bc1b236672fed.yaml
diff --git a/releasenotes/notes/remove-deprecated-flask-methods-8d7a4a3d32c3c69d.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-flask-methods-8d7a4a3d32c3c69d.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-flask-methods-8d7a4a3d32c3c69d.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-flask-methods-8d7a4a3d32c3c69d.yaml
diff --git a/releasenotes/notes/remove-deprecated-items-2.0-89eac06472c59554.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-items-2.0-89eac06472c59554.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-items-2.0-89eac06472c59554.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-items-2.0-89eac06472c59554.yaml
diff --git a/releasenotes/notes/remove-deprecated-span-methods-0e7bfc757ba64595.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-span-methods-0e7bfc757ba64595.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-span-methods-0e7bfc757ba64595.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-span-methods-0e7bfc757ba64595.yaml
diff --git a/releasenotes/notes/remove-deprecated-tracer-attributes-4bb24b794a1aacb9.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-tracer-attributes-4bb24b794a1aacb9.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-tracer-attributes-4bb24b794a1aacb9.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-tracer-attributes-4bb24b794a1aacb9.yaml
diff --git a/releasenotes/notes/remove-deprecated-tracing-configs-c6711b57037576f6.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-tracing-configs-c6711b57037576f6.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-tracing-configs-c6711b57037576f6.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-tracing-configs-c6711b57037576f6.yaml
diff --git a/releasenotes/notes/remove-deprecated-tracing-modules-a129231d42e1218d.yaml b/dd-trace-py/releasenotes/notes/remove-deprecated-tracing-modules-a129231d42e1218d.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecated-tracing-modules-a129231d42e1218d.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecated-tracing-modules-a129231d42e1218d.yaml
diff --git a/releasenotes/notes/remove-deprecations-from-pin-a700ae0cb6d51d03.yaml b/dd-trace-py/releasenotes/notes/remove-deprecations-from-pin-a700ae0cb6d51d03.yaml
similarity index 100%
rename from releasenotes/notes/remove-deprecations-from-pin-a700ae0cb6d51d03.yaml
rename to dd-trace-py/releasenotes/notes/remove-deprecations-from-pin-a700ae0cb6d51d03.yaml
diff --git a/releasenotes/notes/remove-ext-errors-43d7aca3e1765807.yaml b/dd-trace-py/releasenotes/notes/remove-ext-errors-43d7aca3e1765807.yaml
similarity index 100%
rename from releasenotes/notes/remove-ext-errors-43d7aca3e1765807.yaml
rename to dd-trace-py/releasenotes/notes/remove-ext-errors-43d7aca3e1765807.yaml
diff --git a/releasenotes/notes/remove-ext-priority-be59e69e52c65ec9.yaml b/dd-trace-py/releasenotes/notes/remove-ext-priority-be59e69e52c65ec9.yaml
similarity index 100%
rename from releasenotes/notes/remove-ext-priority-be59e69e52c65ec9.yaml
rename to dd-trace-py/releasenotes/notes/remove-ext-priority-be59e69e52c65ec9.yaml
diff --git a/releasenotes/notes/remove-ext-system-a70c1fbbec3b32ff.yaml b/dd-trace-py/releasenotes/notes/remove-ext-system-a70c1fbbec3b32ff.yaml
similarity index 100%
rename from releasenotes/notes/remove-ext-system-a70c1fbbec3b32ff.yaml
rename to dd-trace-py/releasenotes/notes/remove-ext-system-a70c1fbbec3b32ff.yaml
diff --git a/releasenotes/notes/remove-helpers-f3c274e83104ff2a.yaml b/dd-trace-py/releasenotes/notes/remove-helpers-f3c274e83104ff2a.yaml
similarity index 100%
rename from releasenotes/notes/remove-helpers-f3c274e83104ff2a.yaml
rename to dd-trace-py/releasenotes/notes/remove-helpers-f3c274e83104ff2a.yaml
diff --git a/releasenotes/notes/remove-interval-envvar-88c126a791a448a0.yaml b/dd-trace-py/releasenotes/notes/remove-interval-envvar-88c126a791a448a0.yaml
similarity index 100%
rename from releasenotes/notes/remove-interval-envvar-88c126a791a448a0.yaml
rename to dd-trace-py/releasenotes/notes/remove-interval-envvar-88c126a791a448a0.yaml
diff --git a/releasenotes/notes/remove-io-data-from-apm-span-bedrock-integration-4269a599d64a5756.yaml b/dd-trace-py/releasenotes/notes/remove-io-data-from-apm-span-bedrock-integration-4269a599d64a5756.yaml
similarity index 100%
rename from releasenotes/notes/remove-io-data-from-apm-span-bedrock-integration-4269a599d64a5756.yaml
rename to dd-trace-py/releasenotes/notes/remove-io-data-from-apm-span-bedrock-integration-4269a599d64a5756.yaml
diff --git a/releasenotes/notes/remove-io-data-from-apm-span-langchain-integration-4db5579a7d3af555.yaml b/dd-trace-py/releasenotes/notes/remove-io-data-from-apm-span-langchain-integration-4db5579a7d3af555.yaml
similarity index 100%
rename from releasenotes/notes/remove-io-data-from-apm-span-langchain-integration-4db5579a7d3af555.yaml
rename to dd-trace-py/releasenotes/notes/remove-io-data-from-apm-span-langchain-integration-4db5579a7d3af555.yaml
diff --git a/releasenotes/notes/remove-io-data-from-apm-span-openai-integration-81f3ae914a5d2faf.yaml b/dd-trace-py/releasenotes/notes/remove-io-data-from-apm-span-openai-integration-81f3ae914a5d2faf.yaml
similarity index 100%
rename from releasenotes/notes/remove-io-data-from-apm-span-openai-integration-81f3ae914a5d2faf.yaml
rename to dd-trace-py/releasenotes/notes/remove-io-data-from-apm-span-openai-integration-81f3ae914a5d2faf.yaml
diff --git a/releasenotes/notes/remove-io-data-from-span-anthropic-integration-a8b9ccdd3ac1d22d.yaml b/dd-trace-py/releasenotes/notes/remove-io-data-from-span-anthropic-integration-a8b9ccdd3ac1d22d.yaml
similarity index 100%
rename from releasenotes/notes/remove-io-data-from-span-anthropic-integration-a8b9ccdd3ac1d22d.yaml
rename to dd-trace-py/releasenotes/notes/remove-io-data-from-span-anthropic-integration-a8b9ccdd3ac1d22d.yaml
diff --git a/releasenotes/notes/remove-io-data-from-span-gemini-integration-743cc458841345b4.yaml b/dd-trace-py/releasenotes/notes/remove-io-data-from-span-gemini-integration-743cc458841345b4.yaml
similarity index 100%
rename from releasenotes/notes/remove-io-data-from-span-gemini-integration-743cc458841345b4.yaml
rename to dd-trace-py/releasenotes/notes/remove-io-data-from-span-gemini-integration-743cc458841345b4.yaml
diff --git a/releasenotes/notes/remove-io-data-from-span-vertexai-integration-0ceacffc030e3f37.yaml b/dd-trace-py/releasenotes/notes/remove-io-data-from-span-vertexai-integration-0ceacffc030e3f37.yaml
similarity index 100%
rename from releasenotes/notes/remove-io-data-from-span-vertexai-integration-0ceacffc030e3f37.yaml
rename to dd-trace-py/releasenotes/notes/remove-io-data-from-span-vertexai-integration-0ceacffc030e3f37.yaml
diff --git a/releasenotes/notes/remove-legacy-service-name-365da3952e073dd5.yaml b/dd-trace-py/releasenotes/notes/remove-legacy-service-name-365da3952e073dd5.yaml
similarity index 100%
rename from releasenotes/notes/remove-legacy-service-name-365da3952e073dd5.yaml
rename to dd-trace-py/releasenotes/notes/remove-legacy-service-name-365da3952e073dd5.yaml
diff --git a/releasenotes/notes/remove-llm-data-from-apm-span-openai-integration-audio-image-41f5afa6d421af59.yaml b/dd-trace-py/releasenotes/notes/remove-llm-data-from-apm-span-openai-integration-audio-image-41f5afa6d421af59.yaml
similarity index 100%
rename from releasenotes/notes/remove-llm-data-from-apm-span-openai-integration-audio-image-41f5afa6d421af59.yaml
rename to dd-trace-py/releasenotes/notes/remove-llm-data-from-apm-span-openai-integration-audio-image-41f5afa6d421af59.yaml
diff --git a/releasenotes/notes/remove-llmobs-parameters-annotation-97406f9cece3fac4.yaml b/dd-trace-py/releasenotes/notes/remove-llmobs-parameters-annotation-97406f9cece3fac4.yaml
similarity index 100%
rename from releasenotes/notes/remove-llmobs-parameters-annotation-97406f9cece3fac4.yaml
rename to dd-trace-py/releasenotes/notes/remove-llmobs-parameters-annotation-97406f9cece3fac4.yaml
diff --git a/releasenotes/notes/remove-mongoengine-traced-4e00b1175e6e5ca0.yaml b/dd-trace-py/releasenotes/notes/remove-mongoengine-traced-4e00b1175e6e5ca0.yaml
similarity index 100%
rename from releasenotes/notes/remove-mongoengine-traced-4e00b1175e6e5ca0.yaml
rename to dd-trace-py/releasenotes/notes/remove-mongoengine-traced-4e00b1175e6e5ca0.yaml
diff --git a/releasenotes/notes/remove-multi-tracer-support-from-pin-f2f20ca3fa731929.yaml b/dd-trace-py/releasenotes/notes/remove-multi-tracer-support-from-pin-f2f20ca3fa731929.yaml
similarity index 100%
rename from releasenotes/notes/remove-multi-tracer-support-from-pin-f2f20ca3fa731929.yaml
rename to dd-trace-py/releasenotes/notes/remove-multi-tracer-support-from-pin-f2f20ca3fa731929.yaml
diff --git a/releasenotes/notes/remove-mysql-legacy-c09206695dcaf541.yaml b/dd-trace-py/releasenotes/notes/remove-mysql-legacy-c09206695dcaf541.yaml
similarity index 100%
rename from releasenotes/notes/remove-mysql-legacy-c09206695dcaf541.yaml
rename to dd-trace-py/releasenotes/notes/remove-mysql-legacy-c09206695dcaf541.yaml
diff --git a/releasenotes/notes/remove-openai-metrics-logs-656c6ba8e2e07ea3.yaml b/dd-trace-py/releasenotes/notes/remove-openai-metrics-logs-656c6ba8e2e07ea3.yaml
similarity index 100%
rename from releasenotes/notes/remove-openai-metrics-logs-656c6ba8e2e07ea3.yaml
rename to dd-trace-py/releasenotes/notes/remove-openai-metrics-logs-656c6ba8e2e07ea3.yaml
diff --git a/releasenotes/notes/remove-patch-unpatch-get-version-from-ints-pub-7bcbcf706a99b70a.yaml b/dd-trace-py/releasenotes/notes/remove-patch-unpatch-get-version-from-ints-pub-7bcbcf706a99b70a.yaml
similarity index 100%
rename from releasenotes/notes/remove-patch-unpatch-get-version-from-ints-pub-7bcbcf706a99b70a.yaml
rename to dd-trace-py/releasenotes/notes/remove-patch-unpatch-get-version-from-ints-pub-7bcbcf706a99b70a.yaml
diff --git a/releasenotes/notes/remove-payload-submodule-58fac4aaf3d4f5da.yaml b/dd-trace-py/releasenotes/notes/remove-payload-submodule-58fac4aaf3d4f5da.yaml
similarity index 100%
rename from releasenotes/notes/remove-payload-submodule-58fac4aaf3d4f5da.yaml
rename to dd-trace-py/releasenotes/notes/remove-payload-submodule-58fac4aaf3d4f5da.yaml
diff --git a/releasenotes/notes/remove-pin-app-apptype-8d0addd243deb7f9.yaml b/dd-trace-py/releasenotes/notes/remove-pin-app-apptype-8d0addd243deb7f9.yaml
similarity index 100%
rename from releasenotes/notes/remove-pin-app-apptype-8d0addd243deb7f9.yaml
rename to dd-trace-py/releasenotes/notes/remove-pin-app-apptype-8d0addd243deb7f9.yaml
diff --git a/releasenotes/notes/remove-psycopg-factory-98769b2b2e040dd8.yaml b/dd-trace-py/releasenotes/notes/remove-psycopg-factory-98769b2b2e040dd8.yaml
similarity index 100%
rename from releasenotes/notes/remove-psycopg-factory-98769b2b2e040dd8.yaml
rename to dd-trace-py/releasenotes/notes/remove-psycopg-factory-98769b2b2e040dd8.yaml
diff --git a/releasenotes/notes/remove-pymongo-engine-0584c2055377f718.yaml b/dd-trace-py/releasenotes/notes/remove-pymongo-engine-0584c2055377f718.yaml
similarity index 100%
rename from releasenotes/notes/remove-pymongo-engine-0584c2055377f718.yaml
rename to dd-trace-py/releasenotes/notes/remove-pymongo-engine-0584c2055377f718.yaml
diff --git a/releasenotes/notes/remove-ragas-integration-deb58af73ebe28dd.yaml b/dd-trace-py/releasenotes/notes/remove-ragas-integration-deb58af73ebe28dd.yaml
similarity index 100%
rename from releasenotes/notes/remove-ragas-integration-deb58af73ebe28dd.yaml
rename to dd-trace-py/releasenotes/notes/remove-ragas-integration-deb58af73ebe28dd.yaml
diff --git a/releasenotes/notes/remove-requests-legacy-distributed-302154022c58186a.yaml b/dd-trace-py/releasenotes/notes/remove-requests-legacy-distributed-302154022c58186a.yaml
similarity index 100%
rename from releasenotes/notes/remove-requests-legacy-distributed-302154022c58186a.yaml
rename to dd-trace-py/releasenotes/notes/remove-requests-legacy-distributed-302154022c58186a.yaml
diff --git a/releasenotes/notes/remove-set-log-formatting-a8b9c7d2e1f3g4h5.yaml b/dd-trace-py/releasenotes/notes/remove-set-log-formatting-a8b9c7d2e1f3g4h5.yaml
similarity index 100%
rename from releasenotes/notes/remove-set-log-formatting-a8b9c7d2e1f3g4h5.yaml
rename to dd-trace-py/releasenotes/notes/remove-set-log-formatting-a8b9c7d2e1f3g4h5.yaml
diff --git a/releasenotes/notes/remove-span-deprecated-51fa2f55f53aebd5.yaml b/dd-trace-py/releasenotes/notes/remove-span-deprecated-51fa2f55f53aebd5.yaml
similarity index 100%
rename from releasenotes/notes/remove-span-deprecated-51fa2f55f53aebd5.yaml
rename to dd-trace-py/releasenotes/notes/remove-span-deprecated-51fa2f55f53aebd5.yaml
diff --git a/releasenotes/notes/remove-span-finished-finish-with-ancestors-fb2d11b874206f59.yaml b/dd-trace-py/releasenotes/notes/remove-span-finished-finish-with-ancestors-fb2d11b874206f59.yaml
similarity index 100%
rename from releasenotes/notes/remove-span-finished-finish-with-ancestors-fb2d11b874206f59.yaml
rename to dd-trace-py/releasenotes/notes/remove-span-finished-finish-with-ancestors-fb2d11b874206f59.yaml
diff --git a/releasenotes/notes/remove-span-get-set-meta-c6fb2528d198414d.yaml b/dd-trace-py/releasenotes/notes/remove-span-get-set-meta-c6fb2528d198414d.yaml
similarity index 100%
rename from releasenotes/notes/remove-span-get-set-meta-c6fb2528d198414d.yaml
rename to dd-trace-py/releasenotes/notes/remove-span-get-set-meta-c6fb2528d198414d.yaml
diff --git a/releasenotes/notes/remove-span-todict-98117485031335cd.yaml b/dd-trace-py/releasenotes/notes/remove-span-todict-98117485031335cd.yaml
similarity index 100%
rename from releasenotes/notes/remove-span-todict-98117485031335cd.yaml
rename to dd-trace-py/releasenotes/notes/remove-span-todict-98117485031335cd.yaml
diff --git a/releasenotes/notes/remove-span-tracer-ddtrace-1-0-bc0ced48b2806e3c.yaml b/dd-trace-py/releasenotes/notes/remove-span-tracer-ddtrace-1-0-bc0ced48b2806e3c.yaml
similarity index 100%
rename from releasenotes/notes/remove-span-tracer-ddtrace-1-0-bc0ced48b2806e3c.yaml
rename to dd-trace-py/releasenotes/notes/remove-span-tracer-ddtrace-1-0-bc0ced48b2806e3c.yaml
diff --git a/releasenotes/notes/remove-sqlite3-connection-f641a48c5fa90e1f.yaml b/dd-trace-py/releasenotes/notes/remove-sqlite3-connection-f641a48c5fa90e1f.yaml
similarity index 100%
rename from releasenotes/notes/remove-sqlite3-connection-f641a48c5fa90e1f.yaml
rename to dd-trace-py/releasenotes/notes/remove-sqlite3-connection-f641a48c5fa90e1f.yaml
diff --git a/releasenotes/notes/remove-submit-evaluation-for-ef0c5a217eb18a46.yaml b/dd-trace-py/releasenotes/notes/remove-submit-evaluation-for-ef0c5a217eb18a46.yaml
similarity index 100%
rename from releasenotes/notes/remove-submit-evaluation-for-ef0c5a217eb18a46.yaml
rename to dd-trace-py/releasenotes/notes/remove-submit-evaluation-for-ef0c5a217eb18a46.yaml
diff --git a/releasenotes/notes/remove-tracer-deprecations-c0abaecda9c24b79.yaml b/dd-trace-py/releasenotes/notes/remove-tracer-deprecations-c0abaecda9c24b79.yaml
similarity index 100%
rename from releasenotes/notes/remove-tracer-deprecations-c0abaecda9c24b79.yaml
rename to dd-trace-py/releasenotes/notes/remove-tracer-deprecations-c0abaecda9c24b79.yaml
diff --git a/releasenotes/notes/remove-tracer-writer-b1875a1fa3230236.yaml b/dd-trace-py/releasenotes/notes/remove-tracer-writer-b1875a1fa3230236.yaml
similarity index 100%
rename from releasenotes/notes/remove-tracer-writer-b1875a1fa3230236.yaml
rename to dd-trace-py/releasenotes/notes/remove-tracer-writer-b1875a1fa3230236.yaml
diff --git a/releasenotes/notes/remove-tracing-attrs-3-0-5743fa668289d5bc.yaml b/dd-trace-py/releasenotes/notes/remove-tracing-attrs-3-0-5743fa668289d5bc.yaml
similarity index 100%
rename from releasenotes/notes/remove-tracing-attrs-3-0-5743fa668289d5bc.yaml
rename to dd-trace-py/releasenotes/notes/remove-tracing-attrs-3-0-5743fa668289d5bc.yaml
diff --git a/releasenotes/notes/remove-unsupported-pylons-446483284367294b.yaml b/dd-trace-py/releasenotes/notes/remove-unsupported-pylons-446483284367294b.yaml
similarity index 100%
rename from releasenotes/notes/remove-unsupported-pylons-446483284367294b.yaml
rename to dd-trace-py/releasenotes/notes/remove-unsupported-pylons-446483284367294b.yaml
diff --git a/releasenotes/notes/remove-user-sampler-b7bf7a81e0b2ddf1.yaml b/dd-trace-py/releasenotes/notes/remove-user-sampler-b7bf7a81e0b2ddf1.yaml
similarity index 100%
rename from releasenotes/notes/remove-user-sampler-b7bf7a81e0b2ddf1.yaml
rename to dd-trace-py/releasenotes/notes/remove-user-sampler-b7bf7a81e0b2ddf1.yaml
diff --git a/releasenotes/notes/remove-v03-encoder-1f36d48dc297c6fa.yaml b/dd-trace-py/releasenotes/notes/remove-v03-encoder-1f36d48dc297c6fa.yaml
similarity index 100%
rename from releasenotes/notes/remove-v03-encoder-1f36d48dc297c6fa.yaml
rename to dd-trace-py/releasenotes/notes/remove-v03-encoder-1f36d48dc297c6fa.yaml
diff --git a/releasenotes/notes/remove-v1deprecationwarning-2c251ca219182b97.yaml b/dd-trace-py/releasenotes/notes/remove-v1deprecationwarning-2c251ca219182b97.yaml
similarity index 100%
rename from releasenotes/notes/remove-v1deprecationwarning-2c251ca219182b97.yaml
rename to dd-trace-py/releasenotes/notes/remove-v1deprecationwarning-2c251ca219182b97.yaml
diff --git a/releasenotes/notes/remove-wrapt-lock-profiler-c5f2e83097e0ff28.yaml b/dd-trace-py/releasenotes/notes/remove-wrapt-lock-profiler-c5f2e83097e0ff28.yaml
similarity index 100%
rename from releasenotes/notes/remove-wrapt-lock-profiler-c5f2e83097e0ff28.yaml
rename to dd-trace-py/releasenotes/notes/remove-wrapt-lock-profiler-c5f2e83097e0ff28.yaml
diff --git a/releasenotes/notes/remove_app_analytics-badc74407a1bcefd.yaml b/dd-trace-py/releasenotes/notes/remove_app_analytics-badc74407a1bcefd.yaml
similarity index 100%
rename from releasenotes/notes/remove_app_analytics-badc74407a1bcefd.yaml
rename to dd-trace-py/releasenotes/notes/remove_app_analytics-badc74407a1bcefd.yaml
diff --git a/releasenotes/notes/remove_deprecated_environment_variables-3ed446513ab21409.yaml b/dd-trace-py/releasenotes/notes/remove_deprecated_environment_variables-3ed446513ab21409.yaml
similarity index 100%
rename from releasenotes/notes/remove_deprecated_environment_variables-3ed446513ab21409.yaml
rename to dd-trace-py/releasenotes/notes/remove_deprecated_environment_variables-3ed446513ab21409.yaml
diff --git a/releasenotes/notes/remove_flask_login_instrumentation-1ab257a3d0903862.yaml b/dd-trace-py/releasenotes/notes/remove_flask_login_instrumentation-1ab257a3d0903862.yaml
similarity index 100%
rename from releasenotes/notes/remove_flask_login_instrumentation-1ab257a3d0903862.yaml
rename to dd-trace-py/releasenotes/notes/remove_flask_login_instrumentation-1ab257a3d0903862.yaml
diff --git a/releasenotes/notes/remove_unneeded_unregister-ad20120201768a7e.yaml b/dd-trace-py/releasenotes/notes/remove_unneeded_unregister-ad20120201768a7e.yaml
similarity index 100%
rename from releasenotes/notes/remove_unneeded_unregister-ad20120201768a7e.yaml
rename to dd-trace-py/releasenotes/notes/remove_unneeded_unregister-ad20120201768a7e.yaml
diff --git a/releasenotes/notes/remove_x-forwarded_from_ip_resolution-d63292c0fda42dd9.yaml b/dd-trace-py/releasenotes/notes/remove_x-forwarded_from_ip_resolution-d63292c0fda42dd9.yaml
similarity index 100%
rename from releasenotes/notes/remove_x-forwarded_from_ip_resolution-d63292c0fda42dd9.yaml
rename to dd-trace-py/releasenotes/notes/remove_x-forwarded_from_ip_resolution-d63292c0fda42dd9.yaml
diff --git a/releasenotes/notes/removed_ddtrace.util.py-0d0f48aefa6d9779.yaml b/dd-trace-py/releasenotes/notes/removed_ddtrace.util.py-0d0f48aefa6d9779.yaml
similarity index 100%
rename from releasenotes/notes/removed_ddtrace.util.py-0d0f48aefa6d9779.yaml
rename to dd-trace-py/releasenotes/notes/removed_ddtrace.util.py-0d0f48aefa6d9779.yaml
diff --git a/releasenotes/notes/removes-dd-prioritiy-sampling-config-5d07f4aedbfa4dc4.yaml b/dd-trace-py/releasenotes/notes/removes-dd-prioritiy-sampling-config-5d07f4aedbfa4dc4.yaml
similarity index 100%
rename from releasenotes/notes/removes-dd-prioritiy-sampling-config-5d07f4aedbfa4dc4.yaml
rename to dd-trace-py/releasenotes/notes/removes-dd-prioritiy-sampling-config-5d07f4aedbfa4dc4.yaml
diff --git a/releasenotes/notes/removing_api_security_metrics-4b6a6ba8643b5ab3.yaml b/dd-trace-py/releasenotes/notes/removing_api_security_metrics-4b6a6ba8643b5ab3.yaml
similarity index 100%
rename from releasenotes/notes/removing_api_security_metrics-4b6a6ba8643b5ab3.yaml
rename to dd-trace-py/releasenotes/notes/removing_api_security_metrics-4b6a6ba8643b5ab3.yaml
diff --git a/releasenotes/notes/report-kafka-bootstrap.servers-value-in-tag-8e6793b89e07bb7c.yaml b/dd-trace-py/releasenotes/notes/report-kafka-bootstrap.servers-value-in-tag-8e6793b89e07bb7c.yaml
similarity index 100%
rename from releasenotes/notes/report-kafka-bootstrap.servers-value-in-tag-8e6793b89e07bb7c.yaml
rename to dd-trace-py/releasenotes/notes/report-kafka-bootstrap.servers-value-in-tag-8e6793b89e07bb7c.yaml
diff --git a/releasenotes/notes/report-peer-hostname-or-ip-in-grpc-spans-3bc6f37e16002eae.yaml b/dd-trace-py/releasenotes/notes/report-peer-hostname-or-ip-in-grpc-spans-3bc6f37e16002eae.yaml
similarity index 100%
rename from releasenotes/notes/report-peer-hostname-or-ip-in-grpc-spans-3bc6f37e16002eae.yaml
rename to dd-trace-py/releasenotes/notes/report-peer-hostname-or-ip-in-grpc-spans-3bc6f37e16002eae.yaml
diff --git a/releasenotes/notes/report-rpc.service-tag-e6363657f2ccbd5d.yaml b/dd-trace-py/releasenotes/notes/report-rpc.service-tag-e6363657f2ccbd5d.yaml
similarity index 100%
rename from releasenotes/notes/report-rpc.service-tag-e6363657f2ccbd5d.yaml
rename to dd-trace-py/releasenotes/notes/report-rpc.service-tag-e6363657f2ccbd5d.yaml
diff --git a/releasenotes/notes/report_extra_service_names_from_spans-b98b87fbefe97337.yaml b/dd-trace-py/releasenotes/notes/report_extra_service_names_from_spans-b98b87fbefe97337.yaml
similarity index 100%
rename from releasenotes/notes/report_extra_service_names_from_spans-b98b87fbefe97337.yaml
rename to dd-trace-py/releasenotes/notes/report_extra_service_names_from_spans-b98b87fbefe97337.yaml
diff --git a/releasenotes/notes/requests-b06e324e36e03ae5.yaml b/dd-trace-py/releasenotes/notes/requests-b06e324e36e03ae5.yaml
similarity index 100%
rename from releasenotes/notes/requests-b06e324e36e03ae5.yaml
rename to dd-trace-py/releasenotes/notes/requests-b06e324e36e03ae5.yaml
diff --git a/dd-trace-py/releasenotes/notes/require-ddtrace-internal-dep-a1b2c3d4e5f67890.yaml b/dd-trace-py/releasenotes/notes/require-ddtrace-internal-dep-a1b2c3d4e5f67890.yaml
new file mode 100644
index 00000000000..7594ba23c6f
--- /dev/null
+++ b/dd-trace-py/releasenotes/notes/require-ddtrace-internal-dep-a1b2c3d4e5f67890.yaml
@@ -0,0 +1,4 @@
+---
+other:
+ - |
+ The ``ddtrace-internal`` package is now a required dependency of ``ddtrace``.
diff --git a/releasenotes/notes/resolve-attribute-error-psycopg3-patch-c2b722b1c9474f09.yaml b/dd-trace-py/releasenotes/notes/resolve-attribute-error-psycopg3-patch-c2b722b1c9474f09.yaml
similarity index 100%
rename from releasenotes/notes/resolve-attribute-error-psycopg3-patch-c2b722b1c9474f09.yaml
rename to dd-trace-py/releasenotes/notes/resolve-attribute-error-psycopg3-patch-c2b722b1c9474f09.yaml
diff --git a/releasenotes/notes/resolve-telemetry-forwarder-bug-e71f154d954eda4c.yaml b/dd-trace-py/releasenotes/notes/resolve-telemetry-forwarder-bug-e71f154d954eda4c.yaml
similarity index 100%
rename from releasenotes/notes/resolve-telemetry-forwarder-bug-e71f154d954eda4c.yaml
rename to dd-trace-py/releasenotes/notes/resolve-telemetry-forwarder-bug-e71f154d954eda4c.yaml
diff --git a/releasenotes/notes/resolve-trace-contexts-43450ad9a5a0d59e.yaml b/dd-trace-py/releasenotes/notes/resolve-trace-contexts-43450ad9a5a0d59e.yaml
similarity index 100%
rename from releasenotes/notes/resolve-trace-contexts-43450ad9a5a0d59e.yaml
rename to dd-trace-py/releasenotes/notes/resolve-trace-contexts-43450ad9a5a0d59e.yaml
diff --git a/releasenotes/notes/resolves-gevent-asyncio-incompatiblities-246028676b10bea9.yaml b/dd-trace-py/releasenotes/notes/resolves-gevent-asyncio-incompatiblities-246028676b10bea9.yaml
similarity index 100%
rename from releasenotes/notes/resolves-gevent-asyncio-incompatiblities-246028676b10bea9.yaml
rename to dd-trace-py/releasenotes/notes/resolves-gevent-asyncio-incompatiblities-246028676b10bea9.yaml
diff --git a/releasenotes/notes/restart-profiler-fork-9bfaec1942112026.yaml b/dd-trace-py/releasenotes/notes/restart-profiler-fork-9bfaec1942112026.yaml
similarity index 100%
rename from releasenotes/notes/restart-profiler-fork-9bfaec1942112026.yaml
rename to dd-trace-py/releasenotes/notes/restart-profiler-fork-9bfaec1942112026.yaml
diff --git a/releasenotes/notes/revendor-psutil-1d24b2b3a27cf4a5.yaml b/dd-trace-py/releasenotes/notes/revendor-psutil-1d24b2b3a27cf4a5.yaml
similarity index 100%
rename from releasenotes/notes/revendor-psutil-1d24b2b3a27cf4a5.yaml
rename to dd-trace-py/releasenotes/notes/revendor-psutil-1d24b2b3a27cf4a5.yaml
diff --git a/releasenotes/notes/rq-98bc7f540452e948.yaml b/dd-trace-py/releasenotes/notes/rq-98bc7f540452e948.yaml
similarity index 100%
rename from releasenotes/notes/rq-98bc7f540452e948.yaml
rename to dd-trace-py/releasenotes/notes/rq-98bc7f540452e948.yaml
diff --git a/releasenotes/notes/rq-ttl-status-warnings-e3ce603404e41754.yaml b/dd-trace-py/releasenotes/notes/rq-ttl-status-warnings-e3ce603404e41754.yaml
similarity index 100%
rename from releasenotes/notes/rq-ttl-status-warnings-e3ce603404e41754.yaml
rename to dd-trace-py/releasenotes/notes/rq-ttl-status-warnings-e3ce603404e41754.yaml
diff --git a/releasenotes/notes/runtime-metrics-avoid-multiple-service-names-6895255636b5dfc7.yaml b/dd-trace-py/releasenotes/notes/runtime-metrics-avoid-multiple-service-names-6895255636b5dfc7.yaml
similarity index 100%
rename from releasenotes/notes/runtime-metrics-avoid-multiple-service-names-6895255636b5dfc7.yaml
rename to dd-trace-py/releasenotes/notes/runtime-metrics-avoid-multiple-service-names-6895255636b5dfc7.yaml
diff --git a/releasenotes/notes/runtime-metrics-runtime-error-33e2d4cc17cf4aca.yaml b/dd-trace-py/releasenotes/notes/runtime-metrics-runtime-error-33e2d4cc17cf4aca.yaml
similarity index 100%
rename from releasenotes/notes/runtime-metrics-runtime-error-33e2d4cc17cf4aca.yaml
rename to dd-trace-py/releasenotes/notes/runtime-metrics-runtime-error-33e2d4cc17cf4aca.yaml
diff --git a/releasenotes/notes/runtime-stack-frame-507353b6b01490ad.yaml b/dd-trace-py/releasenotes/notes/runtime-stack-frame-507353b6b01490ad.yaml
similarity index 100%
rename from releasenotes/notes/runtime-stack-frame-507353b6b01490ad.yaml
rename to dd-trace-py/releasenotes/notes/runtime-stack-frame-507353b6b01490ad.yaml
diff --git a/releasenotes/notes/runtimeid-39dfdf1e0c1af45d.yaml b/dd-trace-py/releasenotes/notes/runtimeid-39dfdf1e0c1af45d.yaml
similarity index 100%
rename from releasenotes/notes/runtimeid-39dfdf1e0c1af45d.yaml
rename to dd-trace-py/releasenotes/notes/runtimeid-39dfdf1e0c1af45d.yaml
diff --git a/releasenotes/notes/sample-allow-false-1c38c7f248f0e656.yaml b/dd-trace-py/releasenotes/notes/sample-allow-false-1c38c7f248f0e656.yaml
similarity index 100%
rename from releasenotes/notes/sample-allow-false-1c38c7f248f0e656.yaml
rename to dd-trace-py/releasenotes/notes/sample-allow-false-1c38c7f248f0e656.yaml
diff --git a/releasenotes/notes/sample-rate-rc-13119efdf34bc462.yaml b/dd-trace-py/releasenotes/notes/sample-rate-rc-13119efdf34bc462.yaml
similarity index 100%
rename from releasenotes/notes/sample-rate-rc-13119efdf34bc462.yaml
rename to dd-trace-py/releasenotes/notes/sample-rate-rc-13119efdf34bc462.yaml
diff --git a/releasenotes/notes/sampling-do-not-early-exit-too-much-098fcef099b25239.yaml b/dd-trace-py/releasenotes/notes/sampling-do-not-early-exit-too-much-098fcef099b25239.yaml
similarity index 100%
rename from releasenotes/notes/sampling-do-not-early-exit-too-much-098fcef099b25239.yaml
rename to dd-trace-py/releasenotes/notes/sampling-do-not-early-exit-too-much-098fcef099b25239.yaml
diff --git a/releasenotes/notes/sampling-tags-2405915a3657270b.yaml b/dd-trace-py/releasenotes/notes/sampling-tags-2405915a3657270b.yaml
similarity index 100%
rename from releasenotes/notes/sampling-tags-2405915a3657270b.yaml
rename to dd-trace-py/releasenotes/notes/sampling-tags-2405915a3657270b.yaml
diff --git a/releasenotes/notes/sanic-fix-is-pattern-check-c6e4109e933bf37f.yaml b/dd-trace-py/releasenotes/notes/sanic-fix-is-pattern-check-c6e4109e933bf37f.yaml
similarity index 100%
rename from releasenotes/notes/sanic-fix-is-pattern-check-c6e4109e933bf37f.yaml
rename to dd-trace-py/releasenotes/notes/sanic-fix-is-pattern-check-c6e4109e933bf37f.yaml
diff --git a/releasenotes/notes/security_rule_update_1.13.1-374c18e4f0a8c338.yaml b/dd-trace-py/releasenotes/notes/security_rule_update_1.13.1-374c18e4f0a8c338.yaml
similarity index 100%
rename from releasenotes/notes/security_rule_update_1.13.1-374c18e4f0a8c338.yaml
rename to dd-trace-py/releasenotes/notes/security_rule_update_1.13.1-374c18e4f0a8c338.yaml
diff --git a/releasenotes/notes/serverless-base-service-lambda-b3c9f1e2d4a58701.yaml b/dd-trace-py/releasenotes/notes/serverless-base-service-lambda-b3c9f1e2d4a58701.yaml
similarity index 100%
rename from releasenotes/notes/serverless-base-service-lambda-b3c9f1e2d4a58701.yaml
rename to dd-trace-py/releasenotes/notes/serverless-base-service-lambda-b3c9f1e2d4a58701.yaml
diff --git a/releasenotes/notes/serverless-scheduler-ns-fix-5362abc4d19e5299.yaml b/dd-trace-py/releasenotes/notes/serverless-scheduler-ns-fix-5362abc4d19e5299.yaml
similarity index 100%
rename from releasenotes/notes/serverless-scheduler-ns-fix-5362abc4d19e5299.yaml
rename to dd-trace-py/releasenotes/notes/serverless-scheduler-ns-fix-5362abc4d19e5299.yaml
diff --git a/releasenotes/notes/service_name_and_resource_glob_matching-6cb980871e78b27c.yaml b/dd-trace-py/releasenotes/notes/service_name_and_resource_glob_matching-6cb980871e78b27c.yaml
similarity index 100%
rename from releasenotes/notes/service_name_and_resource_glob_matching-6cb980871e78b27c.yaml
rename to dd-trace-py/releasenotes/notes/service_name_and_resource_glob_matching-6cb980871e78b27c.yaml
diff --git a/releasenotes/notes/session_fingerprint-b20cefb1ae3e24dc.yaml b/dd-trace-py/releasenotes/notes/session_fingerprint-b20cefb1ae3e24dc.yaml
similarity index 100%
rename from releasenotes/notes/session_fingerprint-b20cefb1ae3e24dc.yaml
rename to dd-trace-py/releasenotes/notes/session_fingerprint-b20cefb1ae3e24dc.yaml
diff --git a/releasenotes/notes/session_id_for_django-df996bc9819dc84e.yaml b/dd-trace-py/releasenotes/notes/session_id_for_django-df996bc9819dc84e.yaml
similarity index 100%
rename from releasenotes/notes/session_id_for_django-df996bc9819dc84e.yaml
rename to dd-trace-py/releasenotes/notes/session_id_for_django-df996bc9819dc84e.yaml
diff --git a/releasenotes/notes/set-boto-kinesis-pathway-using-DSM-context-7826f50237abcf36.yaml b/dd-trace-py/releasenotes/notes/set-boto-kinesis-pathway-using-DSM-context-7826f50237abcf36.yaml
similarity index 100%
rename from releasenotes/notes/set-boto-kinesis-pathway-using-DSM-context-7826f50237abcf36.yaml
rename to dd-trace-py/releasenotes/notes/set-boto-kinesis-pathway-using-DSM-context-7826f50237abcf36.yaml
diff --git a/releasenotes/notes/set-tags-hint-0f3d2e5665c595df.yaml b/dd-trace-py/releasenotes/notes/set-tags-hint-0f3d2e5665c595df.yaml
similarity index 100%
rename from releasenotes/notes/set-tags-hint-0f3d2e5665c595df.yaml
rename to dd-trace-py/releasenotes/notes/set-tags-hint-0f3d2e5665c595df.yaml
diff --git a/releasenotes/notes/set-user-information-in-span-06ef7cf21b2f56d4.yaml b/dd-trace-py/releasenotes/notes/set-user-information-in-span-06ef7cf21b2f56d4.yaml
similarity index 100%
rename from releasenotes/notes/set-user-information-in-span-06ef7cf21b2f56d4.yaml
rename to dd-trace-py/releasenotes/notes/set-user-information-in-span-06ef7cf21b2f56d4.yaml
diff --git a/releasenotes/notes/setup-oom-errors-426c9951d5c9ed57.yaml b/dd-trace-py/releasenotes/notes/setup-oom-errors-426c9951d5c9ed57.yaml
similarity index 100%
rename from releasenotes/notes/setup-oom-errors-426c9951d5c9ed57.yaml
rename to dd-trace-py/releasenotes/notes/setup-oom-errors-426c9951d5c9ed57.yaml
diff --git a/releasenotes/notes/signal-shutdown-flush-42aa1273cbe5e39e.yaml b/dd-trace-py/releasenotes/notes/signal-shutdown-flush-42aa1273cbe5e39e.yaml
similarity index 100%
rename from releasenotes/notes/signal-shutdown-flush-42aa1273cbe5e39e.yaml
rename to dd-trace-py/releasenotes/notes/signal-shutdown-flush-42aa1273cbe5e39e.yaml
diff --git a/releasenotes/notes/signals-fix-import-in-thread-error-1d68cb76472268d7.yaml b/dd-trace-py/releasenotes/notes/signals-fix-import-in-thread-error-1d68cb76472268d7.yaml
similarity index 100%
rename from releasenotes/notes/signals-fix-import-in-thread-error-1d68cb76472268d7.yaml
rename to dd-trace-py/releasenotes/notes/signals-fix-import-in-thread-error-1d68cb76472268d7.yaml
diff --git a/releasenotes/notes/single-span-fix-382cba5891e2a691.yaml b/dd-trace-py/releasenotes/notes/single-span-fix-382cba5891e2a691.yaml
similarity index 100%
rename from releasenotes/notes/single-span-fix-382cba5891e2a691.yaml
rename to dd-trace-py/releasenotes/notes/single-span-fix-382cba5891e2a691.yaml
diff --git a/releasenotes/notes/single-span-sampling-tags-95f5f0723403ca75.yaml b/dd-trace-py/releasenotes/notes/single-span-sampling-tags-95f5f0723403ca75.yaml
similarity index 100%
rename from releasenotes/notes/single-span-sampling-tags-95f5f0723403ca75.yaml
rename to dd-trace-py/releasenotes/notes/single-span-sampling-tags-95f5f0723403ca75.yaml
diff --git a/releasenotes/notes/single-step-3-12-support-45b60e50eefac26c.yaml b/dd-trace-py/releasenotes/notes/single-step-3-12-support-45b60e50eefac26c.yaml
similarity index 100%
rename from releasenotes/notes/single-step-3-12-support-45b60e50eefac26c.yaml
rename to dd-trace-py/releasenotes/notes/single-step-3-12-support-45b60e50eefac26c.yaml
diff --git a/releasenotes/notes/slice-aspect-leak-95e264c4f1aa851c.yaml b/dd-trace-py/releasenotes/notes/slice-aspect-leak-95e264c4f1aa851c.yaml
similarity index 100%
rename from releasenotes/notes/slice-aspect-leak-95e264c4f1aa851c.yaml
rename to dd-trace-py/releasenotes/notes/slice-aspect-leak-95e264c4f1aa851c.yaml
diff --git a/releasenotes/notes/snowflake-feature-add-sfqid-1142e1c991e42247.yaml b/dd-trace-py/releasenotes/notes/snowflake-feature-add-sfqid-1142e1c991e42247.yaml
similarity index 100%
rename from releasenotes/notes/snowflake-feature-add-sfqid-1142e1c991e42247.yaml
rename to dd-trace-py/releasenotes/notes/snowflake-feature-add-sfqid-1142e1c991e42247.yaml
diff --git a/releasenotes/notes/sourcecode-check-env-vars-cab3d9b6311c2695.yaml b/dd-trace-py/releasenotes/notes/sourcecode-check-env-vars-cab3d9b6311c2695.yaml
similarity index 100%
rename from releasenotes/notes/sourcecode-check-env-vars-cab3d9b6311c2695.yaml
rename to dd-trace-py/releasenotes/notes/sourcecode-check-env-vars-cab3d9b6311c2695.yaml
diff --git a/releasenotes/notes/sourcecode-setuptools-b869c154bbb897d9.yaml b/dd-trace-py/releasenotes/notes/sourcecode-setuptools-b869c154bbb897d9.yaml
similarity index 100%
rename from releasenotes/notes/sourcecode-setuptools-b869c154bbb897d9.yaml
rename to dd-trace-py/releasenotes/notes/sourcecode-setuptools-b869c154bbb897d9.yaml
diff --git a/releasenotes/notes/span-22c2917b9580c0e6.yaml b/dd-trace-py/releasenotes/notes/span-22c2917b9580c0e6.yaml
similarity index 100%
rename from releasenotes/notes/span-22c2917b9580c0e6.yaml
rename to dd-trace-py/releasenotes/notes/span-22c2917b9580c0e6.yaml
diff --git a/releasenotes/notes/span-_set_str_tag-is-replaced-by-span-set_tag_str-271b7829efd9e6ac.yaml b/dd-trace-py/releasenotes/notes/span-_set_str_tag-is-replaced-by-span-set_tag_str-271b7829efd9e6ac.yaml
similarity index 100%
rename from releasenotes/notes/span-_set_str_tag-is-replaced-by-span-set_tag_str-271b7829efd9e6ac.yaml
rename to dd-trace-py/releasenotes/notes/span-_set_str_tag-is-replaced-by-span-set_tag_str-271b7829efd9e6ac.yaml
diff --git a/releasenotes/notes/span-args-remove-5feecae6cf00537f.yaml b/dd-trace-py/releasenotes/notes/span-args-remove-5feecae6cf00537f.yaml
similarity index 100%
rename from releasenotes/notes/span-args-remove-5feecae6cf00537f.yaml
rename to dd-trace-py/releasenotes/notes/span-args-remove-5feecae6cf00537f.yaml
diff --git a/releasenotes/notes/span-link-getter-setters-08ff8b2e476091ae.yaml b/dd-trace-py/releasenotes/notes/span-link-getter-setters-08ff8b2e476091ae.yaml
similarity index 100%
rename from releasenotes/notes/span-link-getter-setters-08ff8b2e476091ae.yaml
rename to dd-trace-py/releasenotes/notes/span-link-getter-setters-08ff8b2e476091ae.yaml
diff --git a/releasenotes/notes/span-pointers-aws-dynamodb-batchwriteitem-7c2321a26f212520.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-batchwriteitem-7c2321a26f212520.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-dynamodb-batchwriteitem-7c2321a26f212520.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-batchwriteitem-7c2321a26f212520.yaml
diff --git a/releasenotes/notes/span-pointers-aws-dynamodb-deleteitem-ad22b22efa1a7789.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-deleteitem-ad22b22efa1a7789.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-dynamodb-deleteitem-ad22b22efa1a7789.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-deleteitem-ad22b22efa1a7789.yaml
diff --git a/releasenotes/notes/span-pointers-aws-dynamodb-putitem-f4be08418bc99093.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-putitem-f4be08418bc99093.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-dynamodb-putitem-f4be08418bc99093.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-putitem-f4be08418bc99093.yaml
diff --git a/releasenotes/notes/span-pointers-aws-dynamodb-transactwriteitem-faf3ad03a100631d.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-transactwriteitem-faf3ad03a100631d.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-dynamodb-transactwriteitem-faf3ad03a100631d.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-transactwriteitem-faf3ad03a100631d.yaml
diff --git a/releasenotes/notes/span-pointers-aws-dynamodb-updateitem-bd6a81e26371a855.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-updateitem-bd6a81e26371a855.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-dynamodb-updateitem-bd6a81e26371a855.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-dynamodb-updateitem-bd6a81e26371a855.yaml
diff --git a/releasenotes/notes/span-pointers-aws-opt-out-option-45f852835e642e98.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-opt-out-option-45f852835e642e98.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-opt-out-option-45f852835e642e98.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-opt-out-option-45f852835e642e98.yaml
diff --git a/releasenotes/notes/span-pointers-aws-s3-completemultipartupload-7ddd8a88050e710b.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-s3-completemultipartupload-7ddd8a88050e710b.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-s3-completemultipartupload-7ddd8a88050e710b.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-s3-completemultipartupload-7ddd8a88050e710b.yaml
diff --git a/releasenotes/notes/span-pointers-aws-s3-copyobject-3d8ab886b32695b9.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-s3-copyobject-3d8ab886b32695b9.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-s3-copyobject-3d8ab886b32695b9.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-s3-copyobject-3d8ab886b32695b9.yaml
diff --git a/releasenotes/notes/span-pointers-aws-s3-putobject-32b66688c9cad5e6.yaml b/dd-trace-py/releasenotes/notes/span-pointers-aws-s3-putobject-32b66688c9cad5e6.yaml
similarity index 100%
rename from releasenotes/notes/span-pointers-aws-s3-putobject-32b66688c9cad5e6.yaml
rename to dd-trace-py/releasenotes/notes/span-pointers-aws-s3-putobject-32b66688c9cad5e6.yaml
diff --git a/releasenotes/notes/span-pprint-json-855d32f50798fd8d.yaml b/dd-trace-py/releasenotes/notes/span-pprint-json-855d32f50798fd8d.yaml
similarity index 100%
rename from releasenotes/notes/span-pprint-json-855d32f50798fd8d.yaml
rename to dd-trace-py/releasenotes/notes/span-pprint-json-855d32f50798fd8d.yaml
diff --git a/releasenotes/notes/span-types-enum-5ca7cb35031a199e.yaml b/dd-trace-py/releasenotes/notes/span-types-enum-5ca7cb35031a199e.yaml
similarity index 100%
rename from releasenotes/notes/span-types-enum-5ca7cb35031a199e.yaml
rename to dd-trace-py/releasenotes/notes/span-types-enum-5ca7cb35031a199e.yaml
diff --git a/releasenotes/notes/span_aggregator_rlock_default_true-eeab94abb8773480.yaml b/dd-trace-py/releasenotes/notes/span_aggregator_rlock_default_true-eeab94abb8773480.yaml
similarity index 100%
rename from releasenotes/notes/span_aggregator_rlock_default_true-eeab94abb8773480.yaml
rename to dd-trace-py/releasenotes/notes/span_aggregator_rlock_default_true-eeab94abb8773480.yaml
diff --git a/releasenotes/notes/span_finish_with_ancestors-da848c160c0af08c.yaml b/dd-trace-py/releasenotes/notes/span_finish_with_ancestors-da848c160c0af08c.yaml
similarity index 100%
rename from releasenotes/notes/span_finish_with_ancestors-da848c160c0af08c.yaml
rename to dd-trace-py/releasenotes/notes/span_finish_with_ancestors-da848c160c0af08c.yaml
diff --git a/releasenotes/notes/ssi-constraint-runtime-1d31502a3848369b.yaml b/dd-trace-py/releasenotes/notes/ssi-constraint-runtime-1d31502a3848369b.yaml
similarity index 100%
rename from releasenotes/notes/ssi-constraint-runtime-1d31502a3848369b.yaml
rename to dd-trace-py/releasenotes/notes/ssi-constraint-runtime-1d31502a3848369b.yaml
diff --git a/releasenotes/notes/ssi-crashtracker-receiver-753abd766a86446d.yaml b/dd-trace-py/releasenotes/notes/ssi-crashtracker-receiver-753abd766a86446d.yaml
similarity index 100%
rename from releasenotes/notes/ssi-crashtracker-receiver-753abd766a86446d.yaml
rename to dd-trace-py/releasenotes/notes/ssi-crashtracker-receiver-753abd766a86446d.yaml
diff --git a/releasenotes/notes/ssi-enable-3.14-fd53785aba30d8d6.yaml b/dd-trace-py/releasenotes/notes/ssi-enable-3.14-fd53785aba30d8d6.yaml
similarity index 100%
rename from releasenotes/notes/ssi-enable-3.14-fd53785aba30d8d6.yaml
rename to dd-trace-py/releasenotes/notes/ssi-enable-3.14-fd53785aba30d8d6.yaml
diff --git a/releasenotes/notes/stack_traces_for_iast-cd2c008168f6181e.yaml b/dd-trace-py/releasenotes/notes/stack_traces_for_iast-cd2c008168f6181e.yaml
similarity index 100%
rename from releasenotes/notes/stack_traces_for_iast-cd2c008168f6181e.yaml
rename to dd-trace-py/releasenotes/notes/stack_traces_for_iast-cd2c008168f6181e.yaml
diff --git a/releasenotes/notes/stacktrace-leak-d6840ab48b29af99.yaml b/dd-trace-py/releasenotes/notes/stacktrace-leak-d6840ab48b29af99.yaml
similarity index 100%
rename from releasenotes/notes/stacktrace-leak-d6840ab48b29af99.yaml
rename to dd-trace-py/releasenotes/notes/stacktrace-leak-d6840ab48b29af99.yaml
diff --git a/releasenotes/notes/starlette-fastapi-use-span-links-to-trace-background-tasks-c33659612ab939fb.yaml b/dd-trace-py/releasenotes/notes/starlette-fastapi-use-span-links-to-trace-background-tasks-c33659612ab939fb.yaml
similarity index 100%
rename from releasenotes/notes/starlette-fastapi-use-span-links-to-trace-background-tasks-c33659612ab939fb.yaml
rename to dd-trace-py/releasenotes/notes/starlette-fastapi-use-span-links-to-trace-background-tasks-c33659612ab939fb.yaml
diff --git a/releasenotes/notes/starlette-root-path-bugfix-ad372cc320f384dd.yaml b/dd-trace-py/releasenotes/notes/starlette-root-path-bugfix-ad372cc320f384dd.yaml
similarity index 100%
rename from releasenotes/notes/starlette-root-path-bugfix-ad372cc320f384dd.yaml
rename to dd-trace-py/releasenotes/notes/starlette-root-path-bugfix-ad372cc320f384dd.yaml
diff --git a/releasenotes/notes/startup-logs-4d7acd6fa6b34074.yaml b/dd-trace-py/releasenotes/notes/startup-logs-4d7acd6fa6b34074.yaml
similarity index 100%
rename from releasenotes/notes/startup-logs-4d7acd6fa6b34074.yaml
rename to dd-trace-py/releasenotes/notes/startup-logs-4d7acd6fa6b34074.yaml
diff --git a/releasenotes/notes/store-tracer-config-on-disk-9436bbe8d84bcb04.yaml b/dd-trace-py/releasenotes/notes/store-tracer-config-on-disk-9436bbe8d84bcb04.yaml
similarity index 100%
rename from releasenotes/notes/store-tracer-config-on-disk-9436bbe8d84bcb04.yaml
rename to dd-trace-py/releasenotes/notes/store-tracer-config-on-disk-9436bbe8d84bcb04.yaml
diff --git a/releasenotes/notes/strip-deep-tool-schemas-0287520d6771b263.yaml b/dd-trace-py/releasenotes/notes/strip-deep-tool-schemas-0287520d6771b263.yaml
similarity index 100%
rename from releasenotes/notes/strip-deep-tool-schemas-0287520d6771b263.yaml
rename to dd-trace-py/releasenotes/notes/strip-deep-tool-schemas-0287520d6771b263.yaml
diff --git a/releasenotes/notes/strip-deferred-tools-d5c387af8224bd9b.yaml b/dd-trace-py/releasenotes/notes/strip-deferred-tools-d5c387af8224bd9b.yaml
similarity index 100%
rename from releasenotes/notes/strip-deferred-tools-d5c387af8224bd9b.yaml
rename to dd-trace-py/releasenotes/notes/strip-deferred-tools-d5c387af8224bd9b.yaml
diff --git a/releasenotes/notes/structlog-configure-patch-479a0534962957e8.yaml b/dd-trace-py/releasenotes/notes/structlog-configure-patch-479a0534962957e8.yaml
similarity index 100%
rename from releasenotes/notes/structlog-configure-patch-479a0534962957e8.yaml
rename to dd-trace-py/releasenotes/notes/structlog-configure-patch-479a0534962957e8.yaml
diff --git a/releasenotes/notes/structlog_integration-91b212bc8e416219.yaml b/dd-trace-py/releasenotes/notes/structlog_integration-91b212bc8e416219.yaml
similarity index 100%
rename from releasenotes/notes/structlog_integration-91b212bc8e416219.yaml
rename to dd-trace-py/releasenotes/notes/structlog_integration-91b212bc8e416219.yaml
diff --git a/releasenotes/notes/submit-eval-for-metadata-dd2db604463b1fb6.yaml b/dd-trace-py/releasenotes/notes/submit-eval-for-metadata-dd2db604463b1fb6.yaml
similarity index 100%
rename from releasenotes/notes/submit-eval-for-metadata-dd2db604463b1fb6.yaml
rename to dd-trace-py/releasenotes/notes/submit-eval-for-metadata-dd2db604463b1fb6.yaml
diff --git a/releasenotes/notes/support-3-11-celery-39053a6ccb7de942.yaml b/dd-trace-py/releasenotes/notes/support-3-11-celery-39053a6ccb7de942.yaml
similarity index 100%
rename from releasenotes/notes/support-3-11-celery-39053a6ccb7de942.yaml
rename to dd-trace-py/releasenotes/notes/support-3-11-celery-39053a6ccb7de942.yaml
diff --git a/releasenotes/notes/support-async-redis-cluster-3447583f1a117df6.yaml b/dd-trace-py/releasenotes/notes/support-async-redis-cluster-3447583f1a117df6.yaml
similarity index 100%
rename from releasenotes/notes/support-async-redis-cluster-3447583f1a117df6.yaml
rename to dd-trace-py/releasenotes/notes/support-async-redis-cluster-3447583f1a117df6.yaml
diff --git a/releasenotes/notes/support-b3-headers-25f8fc24ca4f7233.yaml b/dd-trace-py/releasenotes/notes/support-b3-headers-25f8fc24ca4f7233.yaml
similarity index 100%
rename from releasenotes/notes/support-b3-headers-25f8fc24ca4f7233.yaml
rename to dd-trace-py/releasenotes/notes/support-b3-headers-25f8fc24ca4f7233.yaml
diff --git a/releasenotes/notes/support-decorator-on-async-f7348d136f1540b8.yaml b/dd-trace-py/releasenotes/notes/support-decorator-on-async-f7348d136f1540b8.yaml
similarity index 100%
rename from releasenotes/notes/support-decorator-on-async-f7348d136f1540b8.yaml
rename to dd-trace-py/releasenotes/notes/support-decorator-on-async-f7348d136f1540b8.yaml
diff --git a/releasenotes/notes/support-error-events-64fdce253ab0bfaf.yaml b/dd-trace-py/releasenotes/notes/support-error-events-64fdce253ab0bfaf.yaml
similarity index 100%
rename from releasenotes/notes/support-error-events-64fdce253ab0bfaf.yaml
rename to dd-trace-py/releasenotes/notes/support-error-events-64fdce253ab0bfaf.yaml
diff --git a/releasenotes/notes/support-flask-2-659163726a5f66aa.yaml b/dd-trace-py/releasenotes/notes/support-flask-2-659163726a5f66aa.yaml
similarity index 100%
rename from releasenotes/notes/support-flask-2-659163726a5f66aa.yaml
rename to dd-trace-py/releasenotes/notes/support-flask-2-659163726a5f66aa.yaml
diff --git a/releasenotes/notes/support-lcel-378960fbe6b670bc.yaml b/dd-trace-py/releasenotes/notes/support-lcel-378960fbe6b670bc.yaml
similarity index 100%
rename from releasenotes/notes/support-lcel-378960fbe6b670bc.yaml
rename to dd-trace-py/releasenotes/notes/support-lcel-378960fbe6b670bc.yaml
diff --git a/releasenotes/notes/support-new-psycopg3-package-4d62fe50af7fec7e.yaml b/dd-trace-py/releasenotes/notes/support-new-psycopg3-package-4d62fe50af7fec7e.yaml
similarity index 100%
rename from releasenotes/notes/support-new-psycopg3-package-4d62fe50af7fec7e.yaml
rename to dd-trace-py/releasenotes/notes/support-new-psycopg3-package-4d62fe50af7fec7e.yaml
diff --git a/releasenotes/notes/support-prompt-annotations-b8e406261197f61a.yaml b/dd-trace-py/releasenotes/notes/support-prompt-annotations-b8e406261197f61a.yaml
similarity index 100%
rename from releasenotes/notes/support-prompt-annotations-b8e406261197f61a.yaml
rename to dd-trace-py/releasenotes/notes/support-prompt-annotations-b8e406261197f61a.yaml
diff --git a/releasenotes/notes/support-sanic-21.9.0-6c5de52c832f9dcc.yaml b/dd-trace-py/releasenotes/notes/support-sanic-21.9.0-6c5de52c832f9dcc.yaml
similarity index 100%
rename from releasenotes/notes/support-sanic-21.9.0-6c5de52c832f9dcc.yaml
rename to dd-trace-py/releasenotes/notes/support-sanic-21.9.0-6c5de52c832f9dcc.yaml
diff --git a/releasenotes/notes/support_http_client_error_status_env-acdf049c64330a20.yaml b/dd-trace-py/releasenotes/notes/support_http_client_error_status_env-acdf049c64330a20.yaml
similarity index 100%
rename from releasenotes/notes/support_http_client_error_status_env-acdf049c64330a20.yaml
rename to dd-trace-py/releasenotes/notes/support_http_client_error_status_env-acdf049c64330a20.yaml
diff --git a/releasenotes/notes/suspicious_attacker_blocking-0331938836dd0bdf.yaml b/dd-trace-py/releasenotes/notes/suspicious_attacker_blocking-0331938836dd0bdf.yaml
similarity index 100%
rename from releasenotes/notes/suspicious_attacker_blocking-0331938836dd0bdf.yaml
rename to dd-trace-py/releasenotes/notes/suspicious_attacker_blocking-0331938836dd0bdf.yaml
diff --git a/releasenotes/notes/suspicious_request_blocking-dd220e9cc860c3ca.yaml b/dd-trace-py/releasenotes/notes/suspicious_request_blocking-dd220e9cc860c3ca.yaml
similarity index 100%
rename from releasenotes/notes/suspicious_request_blocking-dd220e9cc860c3ca.yaml
rename to dd-trace-py/releasenotes/notes/suspicious_request_blocking-dd220e9cc860c3ca.yaml
diff --git a/releasenotes/notes/svc-src-multi-defaults-8fc529fc93537b0a.yaml b/dd-trace-py/releasenotes/notes/svc-src-multi-defaults-8fc529fc93537b0a.yaml
similarity index 100%
rename from releasenotes/notes/svc-src-multi-defaults-8fc529fc93537b0a.yaml
rename to dd-trace-py/releasenotes/notes/svc-src-multi-defaults-8fc529fc93537b0a.yaml
diff --git a/releasenotes/notes/sysexit-984ee3900f70859c.yaml b/dd-trace-py/releasenotes/notes/sysexit-984ee3900f70859c.yaml
similarity index 100%
rename from releasenotes/notes/sysexit-984ee3900f70859c.yaml
rename to dd-trace-py/releasenotes/notes/sysexit-984ee3900f70859c.yaml
diff --git a/releasenotes/notes/system.pid-tag-change-d9e68052b1e5baaf.yaml b/dd-trace-py/releasenotes/notes/system.pid-tag-change-d9e68052b1e5baaf.yaml
similarity index 100%
rename from releasenotes/notes/system.pid-tag-change-d9e68052b1e5baaf.yaml
rename to dd-trace-py/releasenotes/notes/system.pid-tag-change-d9e68052b1e5baaf.yaml
diff --git a/releasenotes/notes/tag-agent-manifest-fa6c399b5ec46e18.yaml b/dd-trace-py/releasenotes/notes/tag-agent-manifest-fa6c399b5ec46e18.yaml
similarity index 100%
rename from releasenotes/notes/tag-agent-manifest-fa6c399b5ec46e18.yaml
rename to dd-trace-py/releasenotes/notes/tag-agent-manifest-fa6c399b5ec46e18.yaml
diff --git a/releasenotes/notes/tag-inheritance-interprocess-bc5a2bd188fc08db.yaml b/dd-trace-py/releasenotes/notes/tag-inheritance-interprocess-bc5a2bd188fc08db.yaml
similarity index 100%
rename from releasenotes/notes/tag-inheritance-interprocess-bc5a2bd188fc08db.yaml
rename to dd-trace-py/releasenotes/notes/tag-inheritance-interprocess-bc5a2bd188fc08db.yaml
diff --git a/releasenotes/notes/telemetry-deadlocks-ea3f457ab0611c8b.yaml b/dd-trace-py/releasenotes/notes/telemetry-deadlocks-ea3f457ab0611c8b.yaml
similarity index 100%
rename from releasenotes/notes/telemetry-deadlocks-ea3f457ab0611c8b.yaml
rename to dd-trace-py/releasenotes/notes/telemetry-deadlocks-ea3f457ab0611c8b.yaml
diff --git a/releasenotes/notes/telemetry-debug-env-var-0723258715ad3a90.yaml b/dd-trace-py/releasenotes/notes/telemetry-debug-env-var-0723258715ad3a90.yaml
similarity index 100%
rename from releasenotes/notes/telemetry-debug-env-var-0723258715ad3a90.yaml
rename to dd-trace-py/releasenotes/notes/telemetry-debug-env-var-0723258715ad3a90.yaml
diff --git a/releasenotes/notes/telemetry-logs-validate-unique-messages-5a020f0531952e0c.yaml b/dd-trace-py/releasenotes/notes/telemetry-logs-validate-unique-messages-5a020f0531952e0c.yaml
similarity index 100%
rename from releasenotes/notes/telemetry-logs-validate-unique-messages-5a020f0531952e0c.yaml
rename to dd-trace-py/releasenotes/notes/telemetry-logs-validate-unique-messages-5a020f0531952e0c.yaml
diff --git a/releasenotes/notes/telemetry-release-note-1-5-2376710f62cba11b.yaml b/dd-trace-py/releasenotes/notes/telemetry-release-note-1-5-2376710f62cba11b.yaml
similarity index 100%
rename from releasenotes/notes/telemetry-release-note-1-5-2376710f62cba11b.yaml
rename to dd-trace-py/releasenotes/notes/telemetry-release-note-1-5-2376710f62cba11b.yaml
diff --git a/releasenotes/notes/telemetry-signal-shutdown-flush-3fed757dd1765a94.yaml b/dd-trace-py/releasenotes/notes/telemetry-signal-shutdown-flush-3fed757dd1765a94.yaml
similarity index 100%
rename from releasenotes/notes/telemetry-signal-shutdown-flush-3fed757dd1765a94.yaml
rename to dd-trace-py/releasenotes/notes/telemetry-signal-shutdown-flush-3fed757dd1765a94.yaml
diff --git a/releasenotes/notes/tentative_fix_for_waf_builder_error-e3e15de63c5e1363.yaml b/dd-trace-py/releasenotes/notes/tentative_fix_for_waf_builder_error-e3e15de63c5e1363.yaml
similarity index 100%
rename from releasenotes/notes/tentative_fix_for_waf_builder_error-e3e15de63c5e1363.yaml
rename to dd-trace-py/releasenotes/notes/tentative_fix_for_waf_builder_error-e3e15de63c5e1363.yaml
diff --git a/releasenotes/notes/test-optimization-xdist-coverage-fix-b349ed080feeaa69.yaml b/dd-trace-py/releasenotes/notes/test-optimization-xdist-coverage-fix-b349ed080feeaa69.yaml
similarity index 100%
rename from releasenotes/notes/test-optimization-xdist-coverage-fix-b349ed080feeaa69.yaml
rename to dd-trace-py/releasenotes/notes/test-optimization-xdist-coverage-fix-b349ed080feeaa69.yaml
diff --git a/releasenotes/notes/threethirteen-botocore-ee2431d065f99d7b.yaml b/dd-trace-py/releasenotes/notes/threethirteen-botocore-ee2431d065f99d7b.yaml
similarity index 100%
rename from releasenotes/notes/threethirteen-botocore-ee2431d065f99d7b.yaml
rename to dd-trace-py/releasenotes/notes/threethirteen-botocore-ee2431d065f99d7b.yaml
diff --git a/releasenotes/notes/threethirteen-d40d659d8939fe5e.yaml b/dd-trace-py/releasenotes/notes/threethirteen-d40d659d8939fe5e.yaml
similarity index 100%
rename from releasenotes/notes/threethirteen-d40d659d8939fe5e.yaml
rename to dd-trace-py/releasenotes/notes/threethirteen-d40d659d8939fe5e.yaml
diff --git a/releasenotes/notes/timeline-default-true-bd22654f74b51fe8.yaml b/dd-trace-py/releasenotes/notes/timeline-default-true-bd22654f74b51fe8.yaml
similarity index 100%
rename from releasenotes/notes/timeline-default-true-bd22654f74b51fe8.yaml
rename to dd-trace-py/releasenotes/notes/timeline-default-true-bd22654f74b51fe8.yaml
diff --git a/releasenotes/notes/tornado-endpoint-collection-c1ec79cc42995b94.yaml b/dd-trace-py/releasenotes/notes/tornado-endpoint-collection-c1ec79cc42995b94.yaml
similarity index 100%
rename from releasenotes/notes/tornado-endpoint-collection-c1ec79cc42995b94.yaml
rename to dd-trace-py/releasenotes/notes/tornado-endpoint-collection-c1ec79cc42995b94.yaml
diff --git a/releasenotes/notes/tornado-int-config-a8900a60201d4d61.yaml b/dd-trace-py/releasenotes/notes/tornado-int-config-a8900a60201d4d61.yaml
similarity index 100%
rename from releasenotes/notes/tornado-int-config-a8900a60201d4d61.yaml
rename to dd-trace-py/releasenotes/notes/tornado-int-config-a8900a60201d4d61.yaml
diff --git a/releasenotes/notes/tornado-none-bug-85faed75c859f5e5.yaml b/dd-trace-py/releasenotes/notes/tornado-none-bug-85faed75c859f5e5.yaml
similarity index 100%
rename from releasenotes/notes/tornado-none-bug-85faed75c859f5e5.yaml
rename to dd-trace-py/releasenotes/notes/tornado-none-bug-85faed75c859f5e5.yaml
diff --git a/releasenotes/notes/tornado_error_code_http_server-d1532491cb89563c.yaml b/dd-trace-py/releasenotes/notes/tornado_error_code_http_server-d1532491cb89563c.yaml
similarity index 100%
rename from releasenotes/notes/tornado_error_code_http_server-d1532491cb89563c.yaml
rename to dd-trace-py/releasenotes/notes/tornado_error_code_http_server-d1532491cb89563c.yaml
diff --git a/releasenotes/notes/tornado_for_aap-9df4506a31dbb1be.yaml b/dd-trace-py/releasenotes/notes/tornado_for_aap-9df4506a31dbb1be.yaml
similarity index 100%
rename from releasenotes/notes/tornado_for_aap-9df4506a31dbb1be.yaml
rename to dd-trace-py/releasenotes/notes/tornado_for_aap-9df4506a31dbb1be.yaml
diff --git a/releasenotes/notes/trace-58c201a4a5f38002.yaml b/dd-trace-py/releasenotes/notes/trace-58c201a4a5f38002.yaml
similarity index 100%
rename from releasenotes/notes/trace-58c201a4a5f38002.yaml
rename to dd-trace-py/releasenotes/notes/trace-58c201a4a5f38002.yaml
diff --git a/releasenotes/notes/trace-api-v05-encoding-reset-string-table-17ee19c026b22af9.yaml b/dd-trace-py/releasenotes/notes/trace-api-v05-encoding-reset-string-table-17ee19c026b22af9.yaml
similarity index 100%
rename from releasenotes/notes/trace-api-v05-encoding-reset-string-table-17ee19c026b22af9.yaml
rename to dd-trace-py/releasenotes/notes/trace-api-v05-encoding-reset-string-table-17ee19c026b22af9.yaml
diff --git a/releasenotes/notes/trace-header-tags-88711cc9a4466d8e.yaml b/dd-trace-py/releasenotes/notes/trace-header-tags-88711cc9a4466d8e.yaml
similarity index 100%
rename from releasenotes/notes/trace-header-tags-88711cc9a4466d8e.yaml
rename to dd-trace-py/releasenotes/notes/trace-header-tags-88711cc9a4466d8e.yaml
diff --git a/releasenotes/notes/trace-kafka-consume-10a797a1305b1cd9.yaml b/dd-trace-py/releasenotes/notes/trace-kafka-consume-10a797a1305b1cd9.yaml
similarity index 100%
rename from releasenotes/notes/trace-kafka-consume-10a797a1305b1cd9.yaml
rename to dd-trace-py/releasenotes/notes/trace-kafka-consume-10a797a1305b1cd9.yaml
diff --git a/releasenotes/notes/trace-mcp-998f8cb35062a77e.yaml b/dd-trace-py/releasenotes/notes/trace-mcp-998f8cb35062a77e.yaml
similarity index 100%
rename from releasenotes/notes/trace-mcp-998f8cb35062a77e.yaml
rename to dd-trace-py/releasenotes/notes/trace-mcp-998f8cb35062a77e.yaml
diff --git a/releasenotes/notes/trace-mcp-distributed-tracing-fa5df4e00ab94b36.yaml b/dd-trace-py/releasenotes/notes/trace-mcp-distributed-tracing-fa5df4e00ab94b36.yaml
similarity index 100%
rename from releasenotes/notes/trace-mcp-distributed-tracing-fa5df4e00ab94b36.yaml
rename to dd-trace-py/releasenotes/notes/trace-mcp-distributed-tracing-fa5df4e00ab94b36.yaml
diff --git a/releasenotes/notes/trace-propagation-style-extract-order-baa0637bc4f506f2.yaml b/dd-trace-py/releasenotes/notes/trace-propagation-style-extract-order-baa0637bc4f506f2.yaml
similarity index 100%
rename from releasenotes/notes/trace-propagation-style-extract-order-baa0637bc4f506f2.yaml
rename to dd-trace-py/releasenotes/notes/trace-propagation-style-extract-order-baa0637bc4f506f2.yaml
diff --git a/releasenotes/notes/traceback-size-bacb550e1d454378.yaml b/dd-trace-py/releasenotes/notes/traceback-size-bacb550e1d454378.yaml
similarity index 100%
rename from releasenotes/notes/traceback-size-bacb550e1d454378.yaml
rename to dd-trace-py/releasenotes/notes/traceback-size-bacb550e1d454378.yaml
diff --git a/releasenotes/notes/traced-session-1f2134ac99449b91.yaml b/dd-trace-py/releasenotes/notes/traced-session-1f2134ac99449b91.yaml
similarity index 100%
rename from releasenotes/notes/traced-session-1f2134ac99449b91.yaml
rename to dd-trace-py/releasenotes/notes/traced-session-1f2134ac99449b91.yaml
diff --git a/releasenotes/notes/tracer-200a66ebb04f6cb0.yaml b/dd-trace-py/releasenotes/notes/tracer-200a66ebb04f6cb0.yaml
similarity index 100%
rename from releasenotes/notes/tracer-200a66ebb04f6cb0.yaml
rename to dd-trace-py/releasenotes/notes/tracer-200a66ebb04f6cb0.yaml
diff --git a/releasenotes/notes/tracer-asyncio-create_task-wrap-3d171cb8429be8a7.yaml b/dd-trace-py/releasenotes/notes/tracer-asyncio-create_task-wrap-3d171cb8429be8a7.yaml
similarity index 100%
rename from releasenotes/notes/tracer-asyncio-create_task-wrap-3d171cb8429be8a7.yaml
rename to dd-trace-py/releasenotes/notes/tracer-asyncio-create_task-wrap-3d171cb8429be8a7.yaml
diff --git a/releasenotes/notes/tracer-fix-freezegun-span-durations-8386151643ca8d35.yaml b/dd-trace-py/releasenotes/notes/tracer-fix-freezegun-span-durations-8386151643ca8d35.yaml
similarity index 100%
rename from releasenotes/notes/tracer-fix-freezegun-span-durations-8386151643ca8d35.yaml
rename to dd-trace-py/releasenotes/notes/tracer-fix-freezegun-span-durations-8386151643ca8d35.yaml
diff --git a/releasenotes/notes/tracer-fix-sampling-formula-57cbb8ae119e5129.yaml b/dd-trace-py/releasenotes/notes/tracer-fix-sampling-formula-57cbb8ae119e5129.yaml
similarity index 100%
rename from releasenotes/notes/tracer-fix-sampling-formula-57cbb8ae119e5129.yaml
rename to dd-trace-py/releasenotes/notes/tracer-fix-sampling-formula-57cbb8ae119e5129.yaml
diff --git a/releasenotes/notes/tracer-flares-fixes-10c1ed70d444fc9a.yaml b/dd-trace-py/releasenotes/notes/tracer-flares-fixes-10c1ed70d444fc9a.yaml
similarity index 100%
rename from releasenotes/notes/tracer-flares-fixes-10c1ed70d444fc9a.yaml
rename to dd-trace-py/releasenotes/notes/tracer-flares-fixes-10c1ed70d444fc9a.yaml
diff --git a/releasenotes/notes/tracer-rc-unset-361dc5080cd4a112.yaml b/dd-trace-py/releasenotes/notes/tracer-rc-unset-361dc5080cd4a112.yaml
similarity index 100%
rename from releasenotes/notes/tracer-rc-unset-361dc5080cd4a112.yaml
rename to dd-trace-py/releasenotes/notes/tracer-rc-unset-361dc5080cd4a112.yaml
diff --git a/releasenotes/notes/tracer-set-tags-ade1e93c9f40090a.yaml b/dd-trace-py/releasenotes/notes/tracer-set-tags-ade1e93c9f40090a.yaml
similarity index 100%
rename from releasenotes/notes/tracer-set-tags-ade1e93c9f40090a.yaml
rename to dd-trace-py/releasenotes/notes/tracer-set-tags-ade1e93c9f40090a.yaml
diff --git a/releasenotes/notes/tracer-toplevel-a1600adc84be9039.yaml b/dd-trace-py/releasenotes/notes/tracer-toplevel-a1600adc84be9039.yaml
similarity index 100%
rename from releasenotes/notes/tracer-toplevel-a1600adc84be9039.yaml
rename to dd-trace-py/releasenotes/notes/tracer-toplevel-a1600adc84be9039.yaml
diff --git a/releasenotes/notes/tracer-upload-retry-d60310aa6c91059d.yaml b/dd-trace-py/releasenotes/notes/tracer-upload-retry-d60310aa6c91059d.yaml
similarity index 100%
rename from releasenotes/notes/tracer-upload-retry-d60310aa6c91059d.yaml
rename to dd-trace-py/releasenotes/notes/tracer-upload-retry-d60310aa6c91059d.yaml
diff --git a/releasenotes/notes/tracer-write-dc2f9d95c0e4d11f.yaml b/dd-trace-py/releasenotes/notes/tracer-write-dc2f9d95c0e4d11f.yaml
similarity index 100%
rename from releasenotes/notes/tracer-write-dc2f9d95c0e4d11f.yaml
rename to dd-trace-py/releasenotes/notes/tracer-write-dc2f9d95c0e4d11f.yaml
diff --git a/releasenotes/notes/tracing-baggage-extract-respects-max-limits-0b2b2ba957799159.yaml b/dd-trace-py/releasenotes/notes/tracing-baggage-extract-respects-max-limits-0b2b2ba957799159.yaml
similarity index 100%
rename from releasenotes/notes/tracing-baggage-extract-respects-max-limits-0b2b2ba957799159.yaml
rename to dd-trace-py/releasenotes/notes/tracing-baggage-extract-respects-max-limits-0b2b2ba957799159.yaml
diff --git a/releasenotes/notes/tracing-wrap-default-name-class-scope-9f2b8e3a1c5d4f67.yaml b/dd-trace-py/releasenotes/notes/tracing-wrap-default-name-class-scope-9f2b8e3a1c5d4f67.yaml
similarity index 100%
rename from releasenotes/notes/tracing-wrap-default-name-class-scope-9f2b8e3a1c5d4f67.yaml
rename to dd-trace-py/releasenotes/notes/tracing-wrap-default-name-class-scope-9f2b8e3a1c5d4f67.yaml
diff --git a/releasenotes/notes/track_user_id-2004e931ddf254a9.yaml b/dd-trace-py/releasenotes/notes/track_user_id-2004e931ddf254a9.yaml
similarity index 100%
rename from releasenotes/notes/track_user_id-2004e931ddf254a9.yaml
rename to dd-trace-py/releasenotes/notes/track_user_id-2004e931ddf254a9.yaml
diff --git a/releasenotes/notes/troubleshooting-root-errors-cfe9af0c0083e03f.yaml b/dd-trace-py/releasenotes/notes/troubleshooting-root-errors-cfe9af0c0083e03f.yaml
similarity index 100%
rename from releasenotes/notes/troubleshooting-root-errors-cfe9af0c0083e03f.yaml
rename to dd-trace-py/releasenotes/notes/troubleshooting-root-errors-cfe9af0c0083e03f.yaml
diff --git a/releasenotes/notes/truncate-long-span-attributes-a4900ee9844160b4.yaml b/dd-trace-py/releasenotes/notes/truncate-long-span-attributes-a4900ee9844160b4.yaml
similarity index 100%
rename from releasenotes/notes/truncate-long-span-attributes-a4900ee9844160b4.yaml
rename to dd-trace-py/releasenotes/notes/truncate-long-span-attributes-a4900ee9844160b4.yaml
diff --git a/releasenotes/notes/truncate-long-span-attributes-unicode-6bb71d739f989051.yaml b/dd-trace-py/releasenotes/notes/truncate-long-span-attributes-unicode-6bb71d739f989051.yaml
similarity index 100%
rename from releasenotes/notes/truncate-long-span-attributes-unicode-6bb71d739f989051.yaml
rename to dd-trace-py/releasenotes/notes/truncate-long-span-attributes-unicode-6bb71d739f989051.yaml
diff --git a/releasenotes/notes/truncate-oversized-llmobs-span-events-6e8a54015739ba82.yaml b/dd-trace-py/releasenotes/notes/truncate-oversized-llmobs-span-events-6e8a54015739ba82.yaml
similarity index 100%
rename from releasenotes/notes/truncate-oversized-llmobs-span-events-6e8a54015739ba82.yaml
rename to dd-trace-py/releasenotes/notes/truncate-oversized-llmobs-span-events-6e8a54015739ba82.yaml
diff --git a/releasenotes/notes/truncation_metrics-70574b018370e8c7.yaml b/dd-trace-py/releasenotes/notes/truncation_metrics-70574b018370e8c7.yaml
similarity index 100%
rename from releasenotes/notes/truncation_metrics-70574b018370e8c7.yaml
rename to dd-trace-py/releasenotes/notes/truncation_metrics-70574b018370e8c7.yaml
diff --git a/releasenotes/notes/uds-socket-timeout-c1c2055f1b661827.yaml b/dd-trace-py/releasenotes/notes/uds-socket-timeout-c1c2055f1b661827.yaml
similarity index 100%
rename from releasenotes/notes/uds-socket-timeout-c1c2055f1b661827.yaml
rename to dd-trace-py/releasenotes/notes/uds-socket-timeout-c1c2055f1b661827.yaml
diff --git a/releasenotes/notes/umap-learn-denylist-b7c55f42f2408c24.yaml b/dd-trace-py/releasenotes/notes/umap-learn-denylist-b7c55f42f2408c24.yaml
similarity index 100%
rename from releasenotes/notes/umap-learn-denylist-b7c55f42f2408c24.yaml
rename to dd-trace-py/releasenotes/notes/umap-learn-denylist-b7c55f42f2408c24.yaml
diff --git a/releasenotes/notes/unknown-provider-google-genai-3a2f335265d6278a.yaml b/dd-trace-py/releasenotes/notes/unknown-provider-google-genai-3a2f335265d6278a.yaml
similarity index 100%
rename from releasenotes/notes/unknown-provider-google-genai-3a2f335265d6278a.yaml
rename to dd-trace-py/releasenotes/notes/unknown-provider-google-genai-3a2f335265d6278a.yaml
diff --git a/releasenotes/notes/update-agent-tags-200920a48913617c.yaml b/dd-trace-py/releasenotes/notes/update-agent-tags-200920a48913617c.yaml
similarity index 100%
rename from releasenotes/notes/update-agent-tags-200920a48913617c.yaml
rename to dd-trace-py/releasenotes/notes/update-agent-tags-200920a48913617c.yaml
diff --git a/releasenotes/notes/update-celery-out-host-tag-be8da4f2ab88b4cf.yaml b/dd-trace-py/releasenotes/notes/update-celery-out-host-tag-be8da4f2ab88b4cf.yaml
similarity index 100%
rename from releasenotes/notes/update-celery-out-host-tag-be8da4f2ab88b4cf.yaml
rename to dd-trace-py/releasenotes/notes/update-celery-out-host-tag-be8da4f2ab88b4cf.yaml
diff --git a/releasenotes/notes/update-ci-metadata-extraction-1f5c1b2b0da14287.yaml b/dd-trace-py/releasenotes/notes/update-ci-metadata-extraction-1f5c1b2b0da14287.yaml
similarity index 100%
rename from releasenotes/notes/update-ci-metadata-extraction-1f5c1b2b0da14287.yaml
rename to dd-trace-py/releasenotes/notes/update-ci-metadata-extraction-1f5c1b2b0da14287.yaml
diff --git a/releasenotes/notes/update-ci-metadata-extraction-7f5259a18a60fa83.yaml b/dd-trace-py/releasenotes/notes/update-ci-metadata-extraction-7f5259a18a60fa83.yaml
similarity index 100%
rename from releasenotes/notes/update-ci-metadata-extraction-7f5259a18a60fa83.yaml
rename to dd-trace-py/releasenotes/notes/update-ci-metadata-extraction-7f5259a18a60fa83.yaml
diff --git a/releasenotes/notes/update-ci-visibility-variable-extraction-ade027627cd4bb28.yaml b/dd-trace-py/releasenotes/notes/update-ci-visibility-variable-extraction-ade027627cd4bb28.yaml
similarity index 100%
rename from releasenotes/notes/update-ci-visibility-variable-extraction-ade027627cd4bb28.yaml
rename to dd-trace-py/releasenotes/notes/update-ci-visibility-variable-extraction-ade027627cd4bb28.yaml
diff --git a/releasenotes/notes/update-deprecated-contrib-removal-version-ca920d9e1d91b6e0.yaml b/dd-trace-py/releasenotes/notes/update-deprecated-contrib-removal-version-ca920d9e1d91b6e0.yaml
similarity index 100%
rename from releasenotes/notes/update-deprecated-contrib-removal-version-ca920d9e1d91b6e0.yaml
rename to dd-trace-py/releasenotes/notes/update-deprecated-contrib-removal-version-ca920d9e1d91b6e0.yaml
diff --git a/releasenotes/notes/update-lambda-apm-flush-deadline-env-var-usage-0c25ebe909992b8e.yaml b/dd-trace-py/releasenotes/notes/update-lambda-apm-flush-deadline-env-var-usage-0c25ebe909992b8e.yaml
similarity index 100%
rename from releasenotes/notes/update-lambda-apm-flush-deadline-env-var-usage-0c25ebe909992b8e.yaml
rename to dd-trace-py/releasenotes/notes/update-lambda-apm-flush-deadline-env-var-usage-0c25ebe909992b8e.yaml
diff --git a/releasenotes/notes/update-lambda-logs-to-debug-6139084ba50e75bb.yaml b/dd-trace-py/releasenotes/notes/update-lambda-logs-to-debug-6139084ba50e75bb.yaml
similarity index 100%
rename from releasenotes/notes/update-lambda-logs-to-debug-6139084ba50e75bb.yaml
rename to dd-trace-py/releasenotes/notes/update-lambda-logs-to-debug-6139084ba50e75bb.yaml
diff --git a/releasenotes/notes/update-lib-injection-to-use-safe-instrumentation-patching-e2035b51fafb793b.yaml b/dd-trace-py/releasenotes/notes/update-lib-injection-to-use-safe-instrumentation-patching-e2035b51fafb793b.yaml
similarity index 100%
rename from releasenotes/notes/update-lib-injection-to-use-safe-instrumentation-patching-e2035b51fafb793b.yaml
rename to dd-trace-py/releasenotes/notes/update-lib-injection-to-use-safe-instrumentation-patching-e2035b51fafb793b.yaml
diff --git a/releasenotes/notes/update-monkey-patching-error-log-91e5eb3326da2f4b.yaml b/dd-trace-py/releasenotes/notes/update-monkey-patching-error-log-91e5eb3326da2f4b.yaml
similarity index 100%
rename from releasenotes/notes/update-monkey-patching-error-log-91e5eb3326da2f4b.yaml
rename to dd-trace-py/releasenotes/notes/update-monkey-patching-error-log-91e5eb3326da2f4b.yaml
diff --git a/releasenotes/notes/update-prompt-annotation-0fa90edf6829fe1d.yaml b/dd-trace-py/releasenotes/notes/update-prompt-annotation-0fa90edf6829fe1d.yaml
similarity index 100%
rename from releasenotes/notes/update-prompt-annotation-0fa90edf6829fe1d.yaml
rename to dd-trace-py/releasenotes/notes/update-prompt-annotation-0fa90edf6829fe1d.yaml
diff --git a/releasenotes/notes/update-pydantic-tool-calls-33ef839b072c45ca.yaml b/dd-trace-py/releasenotes/notes/update-pydantic-tool-calls-33ef839b072c45ca.yaml
similarity index 100%
rename from releasenotes/notes/update-pydantic-tool-calls-33ef839b072c45ca.yaml
rename to dd-trace-py/releasenotes/notes/update-pydantic-tool-calls-33ef839b072c45ca.yaml
diff --git a/releasenotes/notes/update-tornado-support-5c87ee2d79ae54c4.yaml b/dd-trace-py/releasenotes/notes/update-tornado-support-5c87ee2d79ae54c4.yaml
similarity index 100%
rename from releasenotes/notes/update-tornado-support-5c87ee2d79ae54c4.yaml
rename to dd-trace-py/releasenotes/notes/update-tornado-support-5c87ee2d79ae54c4.yaml
diff --git a/releasenotes/notes/update-tracer-log-corelation-method-e13bf44eb1085145.yaml b/dd-trace-py/releasenotes/notes/update-tracer-log-corelation-method-e13bf44eb1085145.yaml
similarity index 100%
rename from releasenotes/notes/update-tracer-log-corelation-method-e13bf44eb1085145.yaml
rename to dd-trace-py/releasenotes/notes/update-tracer-log-corelation-method-e13bf44eb1085145.yaml
diff --git a/releasenotes/notes/upgrade-encoding-to-v05-601bce23c0928d8f.yaml b/dd-trace-py/releasenotes/notes/upgrade-encoding-to-v05-601bce23c0928d8f.yaml
similarity index 100%
rename from releasenotes/notes/upgrade-encoding-to-v05-601bce23c0928d8f.yaml
rename to dd-trace-py/releasenotes/notes/upgrade-encoding-to-v05-601bce23c0928d8f.yaml
diff --git a/releasenotes/notes/upgrade-google-generativeai-removed-23cedc4c9dc95408.yaml b/dd-trace-py/releasenotes/notes/upgrade-google-generativeai-removed-23cedc4c9dc95408.yaml
similarity index 100%
rename from releasenotes/notes/upgrade-google-generativeai-removed-23cedc4c9dc95408.yaml
rename to dd-trace-py/releasenotes/notes/upgrade-google-generativeai-removed-23cedc4c9dc95408.yaml
diff --git a/releasenotes/notes/upgrade-libdatadog-v16-0-3-c47ce9b03c69cb63.yaml b/dd-trace-py/releasenotes/notes/upgrade-libdatadog-v16-0-3-c47ce9b03c69cb63.yaml
similarity index 100%
rename from releasenotes/notes/upgrade-libdatadog-v16-0-3-c47ce9b03c69cb63.yaml
rename to dd-trace-py/releasenotes/notes/upgrade-libdatadog-v16-0-3-c47ce9b03c69cb63.yaml
diff --git a/releasenotes/notes/upgrade-min-aws-lambda-f9d9d31cf1f8685f.yaml b/dd-trace-py/releasenotes/notes/upgrade-min-aws-lambda-f9d9d31cf1f8685f.yaml
similarity index 100%
rename from releasenotes/notes/upgrade-min-aws-lambda-f9d9d31cf1f8685f.yaml
rename to dd-trace-py/releasenotes/notes/upgrade-min-aws-lambda-f9d9d31cf1f8685f.yaml
diff --git a/releasenotes/notes/upgrade-tiktoken-removed-a10db578f5354615.yaml b/dd-trace-py/releasenotes/notes/upgrade-tiktoken-removed-a10db578f5354615.yaml
similarity index 100%
rename from releasenotes/notes/upgrade-tiktoken-removed-a10db578f5354615.yaml
rename to dd-trace-py/releasenotes/notes/upgrade-tiktoken-removed-a10db578f5354615.yaml
diff --git a/releasenotes/notes/upgrade_waf_value_regex_obfuscator-b62a7e68bdfa6b98.yaml b/dd-trace-py/releasenotes/notes/upgrade_waf_value_regex_obfuscator-b62a7e68bdfa6b98.yaml
similarity index 100%
rename from releasenotes/notes/upgrade_waf_value_regex_obfuscator-b62a7e68bdfa6b98.yaml
rename to dd-trace-py/releasenotes/notes/upgrade_waf_value_regex_obfuscator-b62a7e68bdfa6b98.yaml
diff --git a/releasenotes/notes/url-7d1cb4e659ebca31.yaml b/dd-trace-py/releasenotes/notes/url-7d1cb4e659ebca31.yaml
similarity index 100%
rename from releasenotes/notes/url-7d1cb4e659ebca31.yaml
rename to dd-trace-py/releasenotes/notes/url-7d1cb4e659ebca31.yaml
diff --git a/releasenotes/notes/url-sanitizer-26c7078e37f395c0.yaml b/dd-trace-py/releasenotes/notes/url-sanitizer-26c7078e37f395c0.yaml
similarity index 100%
rename from releasenotes/notes/url-sanitizer-26c7078e37f395c0.yaml
rename to dd-trace-py/releasenotes/notes/url-sanitizer-26c7078e37f395c0.yaml
diff --git a/releasenotes/notes/use-gauge-metrics-in-rm-61ae620e83b95740.yaml b/dd-trace-py/releasenotes/notes/use-gauge-metrics-in-rm-61ae620e83b95740.yaml
similarity index 100%
rename from releasenotes/notes/use-gauge-metrics-in-rm-61ae620e83b95740.yaml
rename to dd-trace-py/releasenotes/notes/use-gauge-metrics-in-rm-61ae620e83b95740.yaml
diff --git a/releasenotes/notes/use-report-hostname-in-stats-c60c5a6cb96d2481.yaml b/dd-trace-py/releasenotes/notes/use-report-hostname-in-stats-c60c5a6cb96d2481.yaml
similarity index 100%
rename from releasenotes/notes/use-report-hostname-in-stats-c60c5a6cb96d2481.yaml
rename to dd-trace-py/releasenotes/notes/use-report-hostname-in-stats-c60c5a6cb96d2481.yaml
diff --git a/releasenotes/notes/user-defined-git-metadata-c333300e16662551.yaml b/dd-trace-py/releasenotes/notes/user-defined-git-metadata-c333300e16662551.yaml
similarity index 100%
rename from releasenotes/notes/user-defined-git-metadata-c333300e16662551.yaml
rename to dd-trace-py/releasenotes/notes/user-defined-git-metadata-c333300e16662551.yaml
diff --git a/releasenotes/notes/utils-remove-merge-dicts-9252805c864677f8.yaml b/dd-trace-py/releasenotes/notes/utils-remove-merge-dicts-9252805c864677f8.yaml
similarity index 100%
rename from releasenotes/notes/utils-remove-merge-dicts-9252805c864677f8.yaml
rename to dd-trace-py/releasenotes/notes/utils-remove-merge-dicts-9252805c864677f8.yaml
diff --git a/releasenotes/notes/uwsgi-workaround-6fbfde6c19691d8b.yaml b/dd-trace-py/releasenotes/notes/uwsgi-workaround-6fbfde6c19691d8b.yaml
similarity index 100%
rename from releasenotes/notes/uwsgi-workaround-6fbfde6c19691d8b.yaml
rename to dd-trace-py/releasenotes/notes/uwsgi-workaround-6fbfde6c19691d8b.yaml
diff --git a/releasenotes/notes/v05-encoding-eac70f23850a445e.yaml b/dd-trace-py/releasenotes/notes/v05-encoding-eac70f23850a445e.yaml
similarity index 100%
rename from releasenotes/notes/v05-encoding-eac70f23850a445e.yaml
rename to dd-trace-py/releasenotes/notes/v05-encoding-eac70f23850a445e.yaml
diff --git a/releasenotes/notes/v05-encoding-pack-str-error-handle-d11960b72472af7c.yaml b/dd-trace-py/releasenotes/notes/v05-encoding-pack-str-error-handle-d11960b72472af7c.yaml
similarity index 100%
rename from releasenotes/notes/v05-encoding-pack-str-error-handle-d11960b72472af7c.yaml
rename to dd-trace-py/releasenotes/notes/v05-encoding-pack-str-error-handle-d11960b72472af7c.yaml
diff --git a/releasenotes/notes/version_guard_es8-7b11c3f2f6c76948.yaml b/dd-trace-py/releasenotes/notes/version_guard_es8-7b11c3f2f6c76948.yaml
similarity index 100%
rename from releasenotes/notes/version_guard_es8-7b11c3f2f6c76948.yaml
rename to dd-trace-py/releasenotes/notes/version_guard_es8-7b11c3f2f6c76948.yaml
diff --git a/releasenotes/notes/versions-arent-just-ints-909349433f58b79b.yaml b/dd-trace-py/releasenotes/notes/versions-arent-just-ints-909349433f58b79b.yaml
similarity index 100%
rename from releasenotes/notes/versions-arent-just-ints-909349433f58b79b.yaml
rename to dd-trace-py/releasenotes/notes/versions-arent-just-ints-909349433f58b79b.yaml
diff --git a/releasenotes/notes/vertexai-reasoing-token-fc950e2dee45bfa2.yaml b/dd-trace-py/releasenotes/notes/vertexai-reasoing-token-fc950e2dee45bfa2.yaml
similarity index 100%
rename from releasenotes/notes/vertexai-reasoing-token-fc950e2dee45bfa2.yaml
rename to dd-trace-py/releasenotes/notes/vertexai-reasoing-token-fc950e2dee45bfa2.yaml
diff --git a/releasenotes/notes/vertexai_tool_usage-9a175c277e55674b.yaml b/dd-trace-py/releasenotes/notes/vertexai_tool_usage-9a175c277e55674b.yaml
similarity index 100%
rename from releasenotes/notes/vertexai_tool_usage-9a175c277e55674b.yaml
rename to dd-trace-py/releasenotes/notes/vertexai_tool_usage-9a175c277e55674b.yaml
diff --git a/releasenotes/notes/vertica-deprecate-09d0c9b54de0a60f.yaml b/dd-trace-py/releasenotes/notes/vertica-deprecate-09d0c9b54de0a60f.yaml
similarity index 100%
rename from releasenotes/notes/vertica-deprecate-09d0c9b54de0a60f.yaml
rename to dd-trace-py/releasenotes/notes/vertica-deprecate-09d0c9b54de0a60f.yaml
diff --git a/releasenotes/notes/w3c-phase-3-take2-bd8905504d1420d9.yaml b/dd-trace-py/releasenotes/notes/w3c-phase-3-take2-bd8905504d1420d9.yaml
similarity index 100%
rename from releasenotes/notes/w3c-phase-3-take2-bd8905504d1420d9.yaml
rename to dd-trace-py/releasenotes/notes/w3c-phase-3-take2-bd8905504d1420d9.yaml
diff --git a/releasenotes/notes/w3c-phase2-0598d22f78c45fb5.yaml b/dd-trace-py/releasenotes/notes/w3c-phase2-0598d22f78c45fb5.yaml
similarity index 100%
rename from releasenotes/notes/w3c-phase2-0598d22f78c45fb5.yaml
rename to dd-trace-py/releasenotes/notes/w3c-phase2-0598d22f78c45fb5.yaml
diff --git a/releasenotes/notes/waf-rules-update-1.18.0-06f1033dd304c05c.yaml b/dd-trace-py/releasenotes/notes/waf-rules-update-1.18.0-06f1033dd304c05c.yaml
similarity index 100%
rename from releasenotes/notes/waf-rules-update-1.18.0-06f1033dd304c05c.yaml
rename to dd-trace-py/releasenotes/notes/waf-rules-update-1.18.0-06f1033dd304c05c.yaml
diff --git a/releasenotes/notes/waf_1.22.0-05b1dfbaa0d47059.yaml b/dd-trace-py/releasenotes/notes/waf_1.22.0-05b1dfbaa0d47059.yaml
similarity index 100%
rename from releasenotes/notes/waf_1.22.0-05b1dfbaa0d47059.yaml
rename to dd-trace-py/releasenotes/notes/waf_1.22.0-05b1dfbaa0d47059.yaml
diff --git a/releasenotes/notes/waf_trace_tagging-56448e2332bc0433.yaml b/dd-trace-py/releasenotes/notes/waf_trace_tagging-56448e2332bc0433.yaml
similarity index 100%
rename from releasenotes/notes/waf_trace_tagging-56448e2332bc0433.yaml
rename to dd-trace-py/releasenotes/notes/waf_trace_tagging-56448e2332bc0433.yaml
diff --git a/releasenotes/notes/waf_update_to_1.21.0-2f77adaf9ecce679.yaml b/dd-trace-py/releasenotes/notes/waf_update_to_1.21.0-2f77adaf9ecce679.yaml
similarity index 100%
rename from releasenotes/notes/waf_update_to_1.21.0-2f77adaf9ecce679.yaml
rename to dd-trace-py/releasenotes/notes/waf_update_to_1.21.0-2f77adaf9ecce679.yaml
diff --git a/releasenotes/notes/websocket-span-pointers-25e07939aa75527a.yaml b/dd-trace-py/releasenotes/notes/websocket-span-pointers-25e07939aa75527a.yaml
similarity index 100%
rename from releasenotes/notes/websocket-span-pointers-25e07939aa75527a.yaml
rename to dd-trace-py/releasenotes/notes/websocket-span-pointers-25e07939aa75527a.yaml
diff --git a/releasenotes/notes/wrapt_2-42f935eac8adaac8.yaml b/dd-trace-py/releasenotes/notes/wrapt_2-42f935eac8adaac8.yaml
similarity index 100%
rename from releasenotes/notes/wrapt_2-42f935eac8adaac8.yaml
rename to dd-trace-py/releasenotes/notes/wrapt_2-42f935eac8adaac8.yaml
diff --git a/releasenotes/notes/writer-exception-7181ac68fbb1a3d0.yaml b/dd-trace-py/releasenotes/notes/writer-exception-7181ac68fbb1a3d0.yaml
similarity index 100%
rename from releasenotes/notes/writer-exception-7181ac68fbb1a3d0.yaml
rename to dd-trace-py/releasenotes/notes/writer-exception-7181ac68fbb1a3d0.yaml
diff --git a/releasenotes/notes/writer-safe-logging-7f401e8a680d49b4.yaml b/dd-trace-py/releasenotes/notes/writer-safe-logging-7f401e8a680d49b4.yaml
similarity index 100%
rename from releasenotes/notes/writer-safe-logging-7f401e8a680d49b4.yaml
rename to dd-trace-py/releasenotes/notes/writer-safe-logging-7f401e8a680d49b4.yaml
diff --git a/releasenotes/notes/wsgi-30613a9c30834225.yaml b/dd-trace-py/releasenotes/notes/wsgi-30613a9c30834225.yaml
similarity index 100%
rename from releasenotes/notes/wsgi-30613a9c30834225.yaml
rename to dd-trace-py/releasenotes/notes/wsgi-30613a9c30834225.yaml
diff --git a/releasenotes/notes/wsgi-73cf1d35043e7fef.yaml b/dd-trace-py/releasenotes/notes/wsgi-73cf1d35043e7fef.yaml
similarity index 100%
rename from releasenotes/notes/wsgi-73cf1d35043e7fef.yaml
rename to dd-trace-py/releasenotes/notes/wsgi-73cf1d35043e7fef.yaml
diff --git a/releasenotes/notes/wsgi-fix-generator-exit-b3effeb222673a06.yaml b/dd-trace-py/releasenotes/notes/wsgi-fix-generator-exit-b3effeb222673a06.yaml
similarity index 100%
rename from releasenotes/notes/wsgi-fix-generator-exit-b3effeb222673a06.yaml
rename to dd-trace-py/releasenotes/notes/wsgi-fix-generator-exit-b3effeb222673a06.yaml
diff --git a/releasenotes/notes/wsgi-iter-cca70a8d4429e925.yaml b/dd-trace-py/releasenotes/notes/wsgi-iter-cca70a8d4429e925.yaml
similarity index 100%
rename from releasenotes/notes/wsgi-iter-cca70a8d4429e925.yaml
rename to dd-trace-py/releasenotes/notes/wsgi-iter-cca70a8d4429e925.yaml
diff --git a/releasenotes/notes/wsgi-move-request-modifer-code-809521ff9000ea64.yaml b/dd-trace-py/releasenotes/notes/wsgi-move-request-modifer-code-809521ff9000ea64.yaml
similarity index 100%
rename from releasenotes/notes/wsgi-move-request-modifer-code-809521ff9000ea64.yaml
rename to dd-trace-py/releasenotes/notes/wsgi-move-request-modifer-code-809521ff9000ea64.yaml
diff --git a/releasenotes/notes/wsgi-span-parenting-fix-22908787ac7ee6a6.yaml b/dd-trace-py/releasenotes/notes/wsgi-span-parenting-fix-22908787ac7ee6a6.yaml
similarity index 100%
rename from releasenotes/notes/wsgi-span-parenting-fix-22908787ac7ee6a6.yaml
rename to dd-trace-py/releasenotes/notes/wsgi-span-parenting-fix-22908787ac7ee6a6.yaml
diff --git a/releasenotes/notes/xdist-crash-eager-flush-c3d1bf38d71e42db.yaml b/dd-trace-py/releasenotes/notes/xdist-crash-eager-flush-c3d1bf38d71e42db.yaml
similarity index 100%
rename from releasenotes/notes/xdist-crash-eager-flush-c3d1bf38d71e42db.yaml
rename to dd-trace-py/releasenotes/notes/xdist-crash-eager-flush-c3d1bf38d71e42db.yaml
diff --git a/releasenotes/notes/yaaredis-integration-9cf0d99f0261a209.yaml b/dd-trace-py/releasenotes/notes/yaaredis-integration-9cf0d99f0261a209.yaml
similarity index 100%
rename from releasenotes/notes/yaaredis-integration-9cf0d99f0261a209.yaml
rename to dd-trace-py/releasenotes/notes/yaaredis-integration-9cf0d99f0261a209.yaml
diff --git a/repository.datadog.yml b/dd-trace-py/repository.datadog.yml
similarity index 100%
rename from repository.datadog.yml
rename to dd-trace-py/repository.datadog.yml
diff --git a/requirements.csv b/dd-trace-py/requirements.csv
similarity index 100%
rename from requirements.csv
rename to dd-trace-py/requirements.csv
diff --git a/riotfile.py b/dd-trace-py/riotfile.py
similarity index 100%
rename from riotfile.py
rename to dd-trace-py/riotfile.py
diff --git a/scripts/.cmake-format b/dd-trace-py/scripts/.cmake-format
similarity index 100%
rename from scripts/.cmake-format
rename to dd-trace-py/scripts/.cmake-format
diff --git a/scripts/allow_prerelease_dependencies.py b/dd-trace-py/scripts/allow_prerelease_dependencies.py
similarity index 100%
rename from scripts/allow_prerelease_dependencies.py
rename to dd-trace-py/scripts/allow_prerelease_dependencies.py
diff --git a/scripts/backport b/dd-trace-py/scripts/backport
similarity index 100%
rename from scripts/backport
rename to dd-trace-py/scripts/backport
diff --git a/scripts/bt b/dd-trace-py/scripts/bt
similarity index 100%
rename from scripts/bt
rename to dd-trace-py/scripts/bt
diff --git a/scripts/cformat.sh b/dd-trace-py/scripts/cformat.sh
similarity index 100%
rename from scripts/cformat.sh
rename to dd-trace-py/scripts/cformat.sh
diff --git a/scripts/check-ci-dependencies b/dd-trace-py/scripts/check-ci-dependencies
similarity index 100%
rename from scripts/check-ci-dependencies
rename to dd-trace-py/scripts/check-ci-dependencies
diff --git a/scripts/check-dependency-bounds b/dd-trace-py/scripts/check-dependency-bounds
similarity index 100%
rename from scripts/check-dependency-bounds
rename to dd-trace-py/scripts/check-dependency-bounds
diff --git a/scripts/check-dependency-ci-coverage.py b/dd-trace-py/scripts/check-dependency-ci-coverage.py
similarity index 100%
rename from scripts/check-dependency-ci-coverage.py
rename to dd-trace-py/scripts/check-dependency-ci-coverage.py
diff --git a/scripts/check-diff b/dd-trace-py/scripts/check-diff
similarity index 100%
rename from scripts/check-diff
rename to dd-trace-py/scripts/check-diff
diff --git a/scripts/check-for-namespace-packages.sh b/dd-trace-py/scripts/check-for-namespace-packages.sh
similarity index 100%
rename from scripts/check-for-namespace-packages.sh
rename to dd-trace-py/scripts/check-for-namespace-packages.sh
diff --git a/scripts/check-releasenotes b/dd-trace-py/scripts/check-releasenotes
similarity index 100%
rename from scripts/check-releasenotes
rename to dd-trace-py/scripts/check-releasenotes
diff --git a/scripts/check_constant_log_message.py b/dd-trace-py/scripts/check_constant_log_message.py
similarity index 100%
rename from scripts/check_constant_log_message.py
rename to dd-trace-py/scripts/check_constant_log_message.py
diff --git a/scripts/check_profiling_native_coverage b/dd-trace-py/scripts/check_profiling_native_coverage
similarity index 100%
rename from scripts/check_profiling_native_coverage
rename to dd-trace-py/scripts/check_profiling_native_coverage
diff --git a/scripts/check_suitespec_coverage.py b/dd-trace-py/scripts/check_suitespec_coverage.py
similarity index 100%
rename from scripts/check_suitespec_coverage.py
rename to dd-trace-py/scripts/check_suitespec_coverage.py
diff --git a/scripts/ci_visibility/view_snapshot.py b/dd-trace-py/scripts/ci_visibility/view_snapshot.py
similarity index 100%
rename from scripts/ci_visibility/view_snapshot.py
rename to dd-trace-py/scripts/ci_visibility/view_snapshot.py
diff --git a/scripts/cmake-format.sh b/dd-trace-py/scripts/cmake-format.sh
similarity index 100%
rename from scripts/cmake-format.sh
rename to dd-trace-py/scripts/cmake-format.sh
diff --git a/scripts/codeql_scan.sh b/dd-trace-py/scripts/codeql_scan.sh
similarity index 100%
rename from scripts/codeql_scan.sh
rename to dd-trace-py/scripts/codeql_scan.sh
diff --git a/scripts/compile-and-prune-test-requirements b/dd-trace-py/scripts/compile-and-prune-test-requirements
similarity index 100%
rename from scripts/compile-and-prune-test-requirements
rename to dd-trace-py/scripts/compile-and-prune-test-requirements
diff --git a/scripts/contrib-patch-tests.py b/dd-trace-py/scripts/contrib-patch-tests.py
similarity index 100%
rename from scripts/contrib-patch-tests.py
rename to dd-trace-py/scripts/contrib-patch-tests.py
diff --git a/scripts/ddtest b/dd-trace-py/scripts/ddtest
similarity index 100%
rename from scripts/ddtest
rename to dd-trace-py/scripts/ddtest
diff --git a/scripts/diff.py b/dd-trace-py/scripts/diff.py
similarity index 100%
rename from scripts/diff.py
rename to dd-trace-py/scripts/diff.py
diff --git a/scripts/docs/build.sh b/dd-trace-py/scripts/docs/build.sh
similarity index 100%
rename from scripts/docs/build.sh
rename to dd-trace-py/scripts/docs/build.sh
diff --git a/scripts/download-s3-wheels.sh b/dd-trace-py/scripts/download-s3-wheels.sh
similarity index 100%
rename from scripts/download-s3-wheels.sh
rename to dd-trace-py/scripts/download-s3-wheels.sh
diff --git a/scripts/ext_cache.py b/dd-trace-py/scripts/ext_cache.py
similarity index 100%
rename from scripts/ext_cache.py
rename to dd-trace-py/scripts/ext_cache.py
diff --git a/scripts/extract_debug_symbols.py b/dd-trace-py/scripts/extract_debug_symbols.py
similarity index 100%
rename from scripts/extract_debug_symbols.py
rename to dd-trace-py/scripts/extract_debug_symbols.py
diff --git a/scripts/freshvenvs.py b/dd-trace-py/scripts/freshvenvs.py
similarity index 100%
rename from scripts/freshvenvs.py
rename to dd-trace-py/scripts/freshvenvs.py
diff --git a/scripts/gen_gitlab_config.py b/dd-trace-py/scripts/gen_gitlab_config.py
similarity index 100%
rename from scripts/gen_gitlab_config.py
rename to dd-trace-py/scripts/gen_gitlab_config.py
diff --git a/scripts/generate_table.py b/dd-trace-py/scripts/generate_table.py
similarity index 100%
rename from scripts/generate_table.py
rename to dd-trace-py/scripts/generate_table.py
diff --git a/scripts/get-target-milestone.py b/dd-trace-py/scripts/get-target-milestone.py
similarity index 100%
rename from scripts/get-target-milestone.py
rename to dd-trace-py/scripts/get-target-milestone.py
diff --git a/scripts/get_latest_version.py b/dd-trace-py/scripts/get_latest_version.py
similarity index 100%
rename from scripts/get_latest_version.py
rename to dd-trace-py/scripts/get_latest_version.py
diff --git a/scripts/global-lock-detection.py b/dd-trace-py/scripts/global-lock-detection.py
similarity index 100%
rename from scripts/global-lock-detection.py
rename to dd-trace-py/scripts/global-lock-detection.py
diff --git a/scripts/iast/.env b/dd-trace-py/scripts/iast/.env
similarity index 100%
rename from scripts/iast/.env
rename to dd-trace-py/scripts/iast/.env
diff --git a/scripts/iast/README b/dd-trace-py/scripts/iast/README
similarity index 100%
rename from scripts/iast/README
rename to dd-trace-py/scripts/iast/README
diff --git a/scripts/iast/leak_functions.py b/dd-trace-py/scripts/iast/leak_functions.py
similarity index 100%
rename from scripts/iast/leak_functions.py
rename to dd-trace-py/scripts/iast/leak_functions.py
diff --git a/scripts/iast/mod_leak_functions.py b/dd-trace-py/scripts/iast/mod_leak_functions.py
similarity index 100%
rename from scripts/iast/mod_leak_functions.py
rename to dd-trace-py/scripts/iast/mod_leak_functions.py
diff --git a/scripts/iast/print_patched_code.py b/dd-trace-py/scripts/iast/print_patched_code.py
similarity index 100%
rename from scripts/iast/print_patched_code.py
rename to dd-trace-py/scripts/iast/print_patched_code.py
diff --git a/scripts/iast/requirements.txt b/dd-trace-py/scripts/iast/requirements.txt
similarity index 100%
rename from scripts/iast/requirements.txt
rename to dd-trace-py/scripts/iast/requirements.txt
diff --git a/scripts/iast/run_memory.sh b/dd-trace-py/scripts/iast/run_memory.sh
similarity index 100%
rename from scripts/iast/run_memory.sh
rename to dd-trace-py/scripts/iast/run_memory.sh
diff --git a/scripts/iast/run_memray.sh b/dd-trace-py/scripts/iast/run_memray.sh
similarity index 100%
rename from scripts/iast/run_memray.sh
rename to dd-trace-py/scripts/iast/run_memray.sh
diff --git a/scripts/iast/run_references.sh b/dd-trace-py/scripts/iast/run_references.sh
similarity index 100%
rename from scripts/iast/run_references.sh
rename to dd-trace-py/scripts/iast/run_references.sh
diff --git a/scripts/iast/test_references.py b/dd-trace-py/scripts/iast/test_references.py
similarity index 100%
rename from scripts/iast/test_references.py
rename to dd-trace-py/scripts/iast/test_references.py
diff --git a/scripts/iast/valgrind-python.supp b/dd-trace-py/scripts/iast/valgrind-python.supp
similarity index 100%
rename from scripts/iast/valgrind-python.supp
rename to dd-trace-py/scripts/iast/valgrind-python.supp
diff --git a/scripts/import-analysis/cycles.py b/dd-trace-py/scripts/import-analysis/cycles.py
similarity index 100%
rename from scripts/import-analysis/cycles.py
rename to dd-trace-py/scripts/import-analysis/cycles.py
diff --git a/scripts/import-analysis/import_analysis.py b/dd-trace-py/scripts/import-analysis/import_analysis.py
similarity index 100%
rename from scripts/import-analysis/import_analysis.py
rename to dd-trace-py/scripts/import-analysis/import_analysis.py
diff --git a/scripts/import-analysis/requirements.txt b/dd-trace-py/scripts/import-analysis/requirements.txt
similarity index 100%
rename from scripts/import-analysis/requirements.txt
rename to dd-trace-py/scripts/import-analysis/requirements.txt
diff --git a/scripts/integration_registry/README.md b/dd-trace-py/scripts/integration_registry/README.md
similarity index 100%
rename from scripts/integration_registry/README.md
rename to dd-trace-py/scripts/integration_registry/README.md
diff --git a/scripts/integration_registry/__init__.py b/dd-trace-py/scripts/integration_registry/__init__.py
similarity index 100%
rename from scripts/integration_registry/__init__.py
rename to dd-trace-py/scripts/integration_registry/__init__.py
diff --git a/scripts/integration_registry/_format_integration_registry.py b/dd-trace-py/scripts/integration_registry/_format_integration_registry.py
similarity index 100%
rename from scripts/integration_registry/_format_integration_registry.py
rename to dd-trace-py/scripts/integration_registry/_format_integration_registry.py
diff --git a/scripts/integration_registry/_registry_schema.json b/dd-trace-py/scripts/integration_registry/_registry_schema.json
similarity index 100%
rename from scripts/integration_registry/_registry_schema.json
rename to dd-trace-py/scripts/integration_registry/_registry_schema.json
diff --git a/scripts/integration_registry/_update_integration_registry_versions.py b/dd-trace-py/scripts/integration_registry/_update_integration_registry_versions.py
similarity index 100%
rename from scripts/integration_registry/_update_integration_registry_versions.py
rename to dd-trace-py/scripts/integration_registry/_update_integration_registry_versions.py
diff --git a/scripts/integration_registry/mappings.py b/dd-trace-py/scripts/integration_registry/mappings.py
similarity index 100%
rename from scripts/integration_registry/mappings.py
rename to dd-trace-py/scripts/integration_registry/mappings.py
diff --git a/scripts/integration_registry/registry.yaml b/dd-trace-py/scripts/integration_registry/registry.yaml
similarity index 100%
rename from scripts/integration_registry/registry.yaml
rename to dd-trace-py/scripts/integration_registry/registry.yaml
diff --git a/scripts/integration_registry/registry_update_helpers/__init__.py b/dd-trace-py/scripts/integration_registry/registry_update_helpers/__init__.py
similarity index 100%
rename from scripts/integration_registry/registry_update_helpers/__init__.py
rename to dd-trace-py/scripts/integration_registry/registry_update_helpers/__init__.py
diff --git a/scripts/integration_registry/registry_update_helpers/integration.py b/dd-trace-py/scripts/integration_registry/registry_update_helpers/integration.py
similarity index 100%
rename from scripts/integration_registry/registry_update_helpers/integration.py
rename to dd-trace-py/scripts/integration_registry/registry_update_helpers/integration.py
diff --git a/scripts/integration_registry/registry_update_helpers/integration_registry_manager.py b/dd-trace-py/scripts/integration_registry/registry_update_helpers/integration_registry_manager.py
similarity index 100%
rename from scripts/integration_registry/registry_update_helpers/integration_registry_manager.py
rename to dd-trace-py/scripts/integration_registry/registry_update_helpers/integration_registry_manager.py
diff --git a/scripts/integration_registry/registry_update_helpers/integration_registry_updater.py b/dd-trace-py/scripts/integration_registry/registry_update_helpers/integration_registry_updater.py
similarity index 100%
rename from scripts/integration_registry/registry_update_helpers/integration_registry_updater.py
rename to dd-trace-py/scripts/integration_registry/registry_update_helpers/integration_registry_updater.py
diff --git a/scripts/integration_registry/registry_update_helpers/integration_update_orchestrator.py b/dd-trace-py/scripts/integration_registry/registry_update_helpers/integration_update_orchestrator.py
similarity index 100%
rename from scripts/integration_registry/registry_update_helpers/integration_update_orchestrator.py
rename to dd-trace-py/scripts/integration_registry/registry_update_helpers/integration_update_orchestrator.py
diff --git a/scripts/integration_registry/update_and_format_registry.py b/dd-trace-py/scripts/integration_registry/update_and_format_registry.py
similarity index 100%
rename from scripts/integration_registry/update_and_format_registry.py
rename to dd-trace-py/scripts/integration_registry/update_and_format_registry.py
diff --git a/scripts/integration_registry/utils.py b/dd-trace-py/scripts/integration_registry/utils.py
similarity index 100%
rename from scripts/integration_registry/utils.py
rename to dd-trace-py/scripts/integration_registry/utils.py
diff --git a/scripts/needs_testrun.py b/dd-trace-py/scripts/needs_testrun.py
similarity index 100%
rename from scripts/needs_testrun.py
rename to dd-trace-py/scripts/needs_testrun.py
diff --git a/scripts/perf-analyze b/dd-trace-py/scripts/perf-analyze
similarity index 100%
rename from scripts/perf-analyze
rename to dd-trace-py/scripts/perf-analyze
diff --git a/scripts/perf-build-push b/dd-trace-py/scripts/perf-build-push
similarity index 100%
rename from scripts/perf-build-push
rename to dd-trace-py/scripts/perf-build-push
diff --git a/scripts/perf-build-scenario b/dd-trace-py/scripts/perf-build-scenario
similarity index 100%
rename from scripts/perf-build-scenario
rename to dd-trace-py/scripts/perf-build-scenario
diff --git a/scripts/perf-run-scenario b/dd-trace-py/scripts/perf-run-scenario
similarity index 100%
rename from scripts/perf-run-scenario
rename to dd-trace-py/scripts/perf-run-scenario
diff --git a/scripts/perf_bench_heartbeat_cycles.py b/dd-trace-py/scripts/perf_bench_heartbeat_cycles.py
similarity index 100%
rename from scripts/perf_bench_heartbeat_cycles.py
rename to dd-trace-py/scripts/perf_bench_heartbeat_cycles.py
diff --git a/scripts/perf_bench_sca_telemetry.py b/dd-trace-py/scripts/perf_bench_sca_telemetry.py
similarity index 100%
rename from scripts/perf_bench_sca_telemetry.py
rename to dd-trace-py/scripts/perf_bench_sca_telemetry.py
diff --git a/scripts/profiles/README.md b/dd-trace-py/scripts/profiles/README.md
similarity index 100%
rename from scripts/profiles/README.md
rename to dd-trace-py/scripts/profiles/README.md
diff --git a/scripts/profiles/django-simple/k6-exc.js b/dd-trace-py/scripts/profiles/django-simple/k6-exc.js
similarity index 100%
rename from scripts/profiles/django-simple/k6-exc.js
rename to dd-trace-py/scripts/profiles/django-simple/k6-exc.js
diff --git a/scripts/profiles/django-simple/k6-load.js b/dd-trace-py/scripts/profiles/django-simple/k6-load.js
similarity index 100%
rename from scripts/profiles/django-simple/k6-load.js
rename to dd-trace-py/scripts/profiles/django-simple/k6-load.js
diff --git a/scripts/profiles/django-simple/run.sh b/dd-trace-py/scripts/profiles/django-simple/run.sh
similarity index 100%
rename from scripts/profiles/django-simple/run.sh
rename to dd-trace-py/scripts/profiles/django-simple/run.sh
diff --git a/scripts/profiles/django-simple/setup.sh b/dd-trace-py/scripts/profiles/django-simple/setup.sh
similarity index 100%
rename from scripts/profiles/django-simple/setup.sh
rename to dd-trace-py/scripts/profiles/django-simple/setup.sh
diff --git a/scripts/profiles/encoders/run.py b/dd-trace-py/scripts/profiles/encoders/run.py
similarity index 100%
rename from scripts/profiles/encoders/run.py
rename to dd-trace-py/scripts/profiles/encoders/run.py
diff --git a/scripts/profiles/encoders/run.sh b/dd-trace-py/scripts/profiles/encoders/run.sh
similarity index 100%
rename from scripts/profiles/encoders/run.sh
rename to dd-trace-py/scripts/profiles/encoders/run.sh
diff --git a/scripts/profiles/encoders/setup.sh b/dd-trace-py/scripts/profiles/encoders/setup.sh
similarity index 100%
rename from scripts/profiles/encoders/setup.sh
rename to dd-trace-py/scripts/profiles/encoders/setup.sh
diff --git a/scripts/profiles/flask-simple/app/app.py b/dd-trace-py/scripts/profiles/flask-simple/app/app.py
similarity index 100%
rename from scripts/profiles/flask-simple/app/app.py
rename to dd-trace-py/scripts/profiles/flask-simple/app/app.py
diff --git a/scripts/profiles/flask-simple/app/requirements.txt b/dd-trace-py/scripts/profiles/flask-simple/app/requirements.txt
similarity index 100%
rename from scripts/profiles/flask-simple/app/requirements.txt
rename to dd-trace-py/scripts/profiles/flask-simple/app/requirements.txt
diff --git a/scripts/profiles/flask-simple/k6-load.js b/dd-trace-py/scripts/profiles/flask-simple/k6-load.js
similarity index 100%
rename from scripts/profiles/flask-simple/k6-load.js
rename to dd-trace-py/scripts/profiles/flask-simple/k6-load.js
diff --git a/scripts/profiles/flask-simple/run.sh b/dd-trace-py/scripts/profiles/flask-simple/run.sh
similarity index 100%
rename from scripts/profiles/flask-simple/run.sh
rename to dd-trace-py/scripts/profiles/flask-simple/run.sh
diff --git a/scripts/profiles/flask-simple/setup.sh b/dd-trace-py/scripts/profiles/flask-simple/setup.sh
similarity index 100%
rename from scripts/profiles/flask-simple/setup.sh
rename to dd-trace-py/scripts/profiles/flask-simple/setup.sh
diff --git a/scripts/regenerate-riot-latest.sh b/dd-trace-py/scripts/regenerate-riot-latest.sh
similarity index 100%
rename from scripts/regenerate-riot-latest.sh
rename to dd-trace-py/scripts/regenerate-riot-latest.sh
diff --git a/scripts/report_skipped_flaky.py b/dd-trace-py/scripts/report_skipped_flaky.py
similarity index 100%
rename from scripts/report_skipped_flaky.py
rename to dd-trace-py/scripts/report_skipped_flaky.py
diff --git a/scripts/requirements_to_csv.py b/dd-trace-py/scripts/requirements_to_csv.py
similarity index 100%
rename from scripts/requirements_to_csv.py
rename to dd-trace-py/scripts/requirements_to_csv.py
diff --git a/scripts/restructure_flaky_report.py b/dd-trace-py/scripts/restructure_flaky_report.py
similarity index 100%
rename from scripts/restructure_flaky_report.py
rename to dd-trace-py/scripts/restructure_flaky_report.py
diff --git a/scripts/run-benchmarks b/dd-trace-py/scripts/run-benchmarks
similarity index 100%
rename from scripts/run-benchmarks
rename to dd-trace-py/scripts/run-benchmarks
diff --git a/scripts/run-hook-tests b/dd-trace-py/scripts/run-hook-tests
similarity index 100%
rename from scripts/run-hook-tests
rename to dd-trace-py/scripts/run-hook-tests
diff --git a/scripts/run-script-doctests.py b/dd-trace-py/scripts/run-script-doctests.py
similarity index 100%
rename from scripts/run-script-doctests.py
rename to dd-trace-py/scripts/run-script-doctests.py
diff --git a/scripts/run-tests b/dd-trace-py/scripts/run-tests
similarity index 100%
rename from scripts/run-tests
rename to dd-trace-py/scripts/run-tests
diff --git a/scripts/supported_configurations.py b/dd-trace-py/scripts/supported_configurations.py
similarity index 100%
rename from scripts/supported_configurations.py
rename to dd-trace-py/scripts/supported_configurations.py
diff --git a/scripts/tested_versions/__init__.py b/dd-trace-py/scripts/tested_versions/__init__.py
similarity index 100%
rename from scripts/tested_versions/__init__.py
rename to dd-trace-py/scripts/tested_versions/__init__.py
diff --git a/scripts/tested_versions/dependency_names.json b/dd-trace-py/scripts/tested_versions/dependency_names.json
similarity index 100%
rename from scripts/tested_versions/dependency_names.json
rename to dd-trace-py/scripts/tested_versions/dependency_names.json
diff --git a/scripts/tested_versions/generate_tested_versions.py b/dd-trace-py/scripts/tested_versions/generate_tested_versions.py
similarity index 100%
rename from scripts/tested_versions/generate_tested_versions.py
rename to dd-trace-py/scripts/tested_versions/generate_tested_versions.py
diff --git a/scripts/trace_flares/test_flare_manual.py b/dd-trace-py/scripts/trace_flares/test_flare_manual.py
similarity index 100%
rename from scripts/trace_flares/test_flare_manual.py
rename to dd-trace-py/scripts/trace_flares/test_flare_manual.py
diff --git a/scripts/update-ci-dependencies b/dd-trace-py/scripts/update-ci-dependencies
similarity index 100%
rename from scripts/update-ci-dependencies
rename to dd-trace-py/scripts/update-ci-dependencies
diff --git a/scripts/update-system-tests-version.py b/dd-trace-py/scripts/update-system-tests-version.py
similarity index 100%
rename from scripts/update-system-tests-version.py
rename to dd-trace-py/scripts/update-system-tests-version.py
diff --git a/scripts/uv-run-script b/dd-trace-py/scripts/uv-run-script
similarity index 100%
rename from scripts/uv-run-script
rename to dd-trace-py/scripts/uv-run-script
diff --git a/scripts/validate_wheel.py b/dd-trace-py/scripts/validate_wheel.py
similarity index 100%
rename from scripts/validate_wheel.py
rename to dd-trace-py/scripts/validate_wheel.py
diff --git a/scripts/vcr/needs_testrun.yaml b/dd-trace-py/scripts/vcr/needs_testrun.yaml
similarity index 100%
rename from scripts/vcr/needs_testrun.yaml
rename to dd-trace-py/scripts/vcr/needs_testrun.yaml
diff --git a/scripts/verify-package-version b/dd-trace-py/scripts/verify-package-version
similarity index 100%
rename from scripts/verify-package-version
rename to dd-trace-py/scripts/verify-package-version
diff --git a/scripts/view_trace_snapshot.py b/dd-trace-py/scripts/view_trace_snapshot.py
similarity index 100%
rename from scripts/view_trace_snapshot.py
rename to dd-trace-py/scripts/view_trace_snapshot.py
diff --git a/scripts/zip_filter.py b/dd-trace-py/scripts/zip_filter.py
similarity index 100%
rename from scripts/zip_filter.py
rename to dd-trace-py/scripts/zip_filter.py
diff --git a/setup.cfg b/dd-trace-py/setup.cfg
similarity index 100%
rename from setup.cfg
rename to dd-trace-py/setup.cfg
diff --git a/setup.py b/dd-trace-py/setup.py
similarity index 100%
rename from setup.py
rename to dd-trace-py/setup.py
diff --git a/sgconfig.yml b/dd-trace-py/sgconfig.yml
similarity index 100%
rename from sgconfig.yml
rename to dd-trace-py/sgconfig.yml
diff --git a/src/native/.cargo/config.toml b/dd-trace-py/src/native/.cargo/config.toml
similarity index 100%
rename from src/native/.cargo/config.toml
rename to dd-trace-py/src/native/.cargo/config.toml
diff --git a/src/native/Cargo.lock b/dd-trace-py/src/native/Cargo.lock
similarity index 100%
rename from src/native/Cargo.lock
rename to dd-trace-py/src/native/Cargo.lock
diff --git a/src/native/Cargo.toml b/dd-trace-py/src/native/Cargo.toml
similarity index 100%
rename from src/native/Cargo.toml
rename to dd-trace-py/src/native/Cargo.toml
diff --git a/src/native/build.rs b/dd-trace-py/src/native/build.rs
similarity index 100%
rename from src/native/build.rs
rename to dd-trace-py/src/native/build.rs
diff --git a/src/native/config.rs b/dd-trace-py/src/native/config.rs
similarity index 100%
rename from src/native/config.rs
rename to dd-trace-py/src/native/config.rs
diff --git a/src/native/crashtracker.rs b/dd-trace-py/src/native/crashtracker.rs
similarity index 100%
rename from src/native/crashtracker.rs
rename to dd-trace-py/src/native/crashtracker.rs
diff --git a/src/native/crashtracker/crashtracker_runtime_stacks.rs b/dd-trace-py/src/native/crashtracker/crashtracker_runtime_stacks.rs
similarity index 100%
rename from src/native/crashtracker/crashtracker_runtime_stacks.rs
rename to dd-trace-py/src/native/crashtracker/crashtracker_runtime_stacks.rs
diff --git a/src/native/data_pipeline/exceptions.rs b/dd-trace-py/src/native/data_pipeline/exceptions.rs
similarity index 100%
rename from src/native/data_pipeline/exceptions.rs
rename to dd-trace-py/src/native/data_pipeline/exceptions.rs
diff --git a/src/native/data_pipeline/mod.rs b/dd-trace-py/src/native/data_pipeline/mod.rs
similarity index 100%
rename from src/native/data_pipeline/mod.rs
rename to dd-trace-py/src/native/data_pipeline/mod.rs
diff --git a/src/native/ddsketch.rs b/dd-trace-py/src/native/ddsketch.rs
similarity index 100%
rename from src/native/ddsketch.rs
rename to dd-trace-py/src/native/ddsketch.rs
diff --git a/src/native/ffe.rs b/dd-trace-py/src/native/ffe.rs
similarity index 100%
rename from src/native/ffe.rs
rename to dd-trace-py/src/native/ffe.rs
diff --git a/src/native/lib.rs b/dd-trace-py/src/native/lib.rs
similarity index 100%
rename from src/native/lib.rs
rename to dd-trace-py/src/native/lib.rs
diff --git a/src/native/library_config.rs b/dd-trace-py/src/native/library_config.rs
similarity index 100%
rename from src/native/library_config.rs
rename to dd-trace-py/src/native/library_config.rs
diff --git a/src/native/log.rs b/dd-trace-py/src/native/log.rs
similarity index 100%
rename from src/native/log.rs
rename to dd-trace-py/src/native/log.rs
diff --git a/src/native/py_string.rs b/dd-trace-py/src/native/py_string.rs
similarity index 100%
rename from src/native/py_string.rs
rename to dd-trace-py/src/native/py_string.rs
diff --git a/src/native/rand.rs b/dd-trace-py/src/native/rand.rs
similarity index 100%
rename from src/native/rand.rs
rename to dd-trace-py/src/native/rand.rs
diff --git a/src/native/shared_runtime/exceptions.rs b/dd-trace-py/src/native/shared_runtime/exceptions.rs
similarity index 100%
rename from src/native/shared_runtime/exceptions.rs
rename to dd-trace-py/src/native/shared_runtime/exceptions.rs
diff --git a/src/native/shared_runtime/mod.rs b/dd-trace-py/src/native/shared_runtime/mod.rs
similarity index 100%
rename from src/native/shared_runtime/mod.rs
rename to dd-trace-py/src/native/shared_runtime/mod.rs
diff --git a/src/native/span/mod.rs b/dd-trace-py/src/native/span/mod.rs
similarity index 100%
rename from src/native/span/mod.rs
rename to dd-trace-py/src/native/span/mod.rs
diff --git a/src/native/span/span_data.rs b/dd-trace-py/src/native/span/span_data.rs
similarity index 100%
rename from src/native/span/span_data.rs
rename to dd-trace-py/src/native/span/span_data.rs
diff --git a/src/native/span/span_event.rs b/dd-trace-py/src/native/span/span_event.rs
similarity index 100%
rename from src/native/span/span_event.rs
rename to dd-trace-py/src/native/span/span_event.rs
diff --git a/src/native/span/span_link.rs b/dd-trace-py/src/native/span/span_link.rs
similarity index 100%
rename from src/native/span/span_link.rs
rename to dd-trace-py/src/native/span/span_link.rs
diff --git a/src/native/span/utils.rs b/dd-trace-py/src/native/span/utils.rs
similarity index 100%
rename from src/native/span/utils.rs
rename to dd-trace-py/src/native/span/utils.rs
diff --git a/src/native/tracer_flare.rs b/dd-trace-py/src/native/tracer_flare.rs
similarity index 100%
rename from src/native/tracer_flare.rs
rename to dd-trace-py/src/native/tracer_flare.rs
diff --git a/src/native/utils.rs b/dd-trace-py/src/native/utils.rs
similarity index 100%
rename from src/native/utils.rs
rename to dd-trace-py/src/native/utils.rs
diff --git a/static-analysis.datadog.yml b/dd-trace-py/static-analysis.datadog.yml
similarity index 100%
rename from static-analysis.datadog.yml
rename to dd-trace-py/static-analysis.datadog.yml
diff --git a/supported-configurations.json b/dd-trace-py/supported-configurations.json
similarity index 100%
rename from supported-configurations.json
rename to dd-trace-py/supported-configurations.json
diff --git a/supported_versions_output.json b/dd-trace-py/supported_versions_output.json
similarity index 100%
rename from supported_versions_output.json
rename to dd-trace-py/supported_versions_output.json
diff --git a/supported_versions_table.csv b/dd-trace-py/supported_versions_table.csv
similarity index 100%
rename from supported_versions_table.csv
rename to dd-trace-py/supported_versions_table.csv
diff --git a/templates/integration/__init__.py b/dd-trace-py/templates/integration/__init__.py
similarity index 100%
rename from templates/integration/__init__.py
rename to dd-trace-py/templates/integration/__init__.py
diff --git a/templates/integration/patch.py b/dd-trace-py/templates/integration/patch.py
similarity index 100%
rename from templates/integration/patch.py
rename to dd-trace-py/templates/integration/patch.py
diff --git a/tested_versions.json b/dd-trace-py/tested_versions.json
similarity index 100%
rename from tested_versions.json
rename to dd-trace-py/tested_versions.json
diff --git a/tests/README.md b/dd-trace-py/tests/README.md
similarity index 100%
rename from tests/README.md
rename to dd-trace-py/tests/README.md
diff --git a/tests/__init__.py b/dd-trace-py/tests/__init__.py
similarity index 100%
rename from tests/__init__.py
rename to dd-trace-py/tests/__init__.py
diff --git a/tests/appsec/__init__.py b/dd-trace-py/tests/appsec/__init__.py
similarity index 100%
rename from tests/appsec/__init__.py
rename to dd-trace-py/tests/appsec/__init__.py
diff --git a/tests/appsec/ai_guard/api/conftest.py b/dd-trace-py/tests/appsec/ai_guard/api/conftest.py
similarity index 100%
rename from tests/appsec/ai_guard/api/conftest.py
rename to dd-trace-py/tests/appsec/ai_guard/api/conftest.py
diff --git a/tests/appsec/ai_guard/api/test_aiguard_manual_keep.py b/dd-trace-py/tests/appsec/ai_guard/api/test_aiguard_manual_keep.py
similarity index 100%
rename from tests/appsec/ai_guard/api/test_aiguard_manual_keep.py
rename to dd-trace-py/tests/appsec/ai_guard/api/test_aiguard_manual_keep.py
diff --git a/tests/appsec/ai_guard/api/test_api_client.py b/dd-trace-py/tests/appsec/ai_guard/api/test_api_client.py
similarity index 100%
rename from tests/appsec/ai_guard/api/test_api_client.py
rename to dd-trace-py/tests/appsec/ai_guard/api/test_api_client.py
diff --git a/tests/appsec/ai_guard/api/test_client_ip.py b/dd-trace-py/tests/appsec/ai_guard/api/test_client_ip.py
similarity index 100%
rename from tests/appsec/ai_guard/api/test_client_ip.py
rename to dd-trace-py/tests/appsec/ai_guard/api/test_client_ip.py
diff --git a/tests/appsec/ai_guard/langchain/conftest.py b/dd-trace-py/tests/appsec/ai_guard/langchain/conftest.py
similarity index 100%
rename from tests/appsec/ai_guard/langchain/conftest.py
rename to dd-trace-py/tests/appsec/ai_guard/langchain/conftest.py
diff --git a/tests/appsec/ai_guard/langchain/test_langchain.py b/dd-trace-py/tests/appsec/ai_guard/langchain/test_langchain.py
similarity index 100%
rename from tests/appsec/ai_guard/langchain/test_langchain.py
rename to dd-trace-py/tests/appsec/ai_guard/langchain/test_langchain.py
diff --git a/tests/appsec/ai_guard/litellm_guardrail/__init__.py b/dd-trace-py/tests/appsec/ai_guard/litellm_guardrail/__init__.py
similarity index 100%
rename from tests/appsec/ai_guard/litellm_guardrail/__init__.py
rename to dd-trace-py/tests/appsec/ai_guard/litellm_guardrail/__init__.py
diff --git a/tests/appsec/ai_guard/litellm_guardrail/conftest.py b/dd-trace-py/tests/appsec/ai_guard/litellm_guardrail/conftest.py
similarity index 100%
rename from tests/appsec/ai_guard/litellm_guardrail/conftest.py
rename to dd-trace-py/tests/appsec/ai_guard/litellm_guardrail/conftest.py
diff --git a/tests/appsec/ai_guard/litellm_guardrail/test_litellm_guardrail.py b/dd-trace-py/tests/appsec/ai_guard/litellm_guardrail/test_litellm_guardrail.py
similarity index 100%
rename from tests/appsec/ai_guard/litellm_guardrail/test_litellm_guardrail.py
rename to dd-trace-py/tests/appsec/ai_guard/litellm_guardrail/test_litellm_guardrail.py
diff --git a/tests/appsec/ai_guard/strands_hooks/__init__.py b/dd-trace-py/tests/appsec/ai_guard/strands_hooks/__init__.py
similarity index 100%
rename from tests/appsec/ai_guard/strands_hooks/__init__.py
rename to dd-trace-py/tests/appsec/ai_guard/strands_hooks/__init__.py
diff --git a/tests/appsec/ai_guard/strands_hooks/conftest.py b/dd-trace-py/tests/appsec/ai_guard/strands_hooks/conftest.py
similarity index 100%
rename from tests/appsec/ai_guard/strands_hooks/conftest.py
rename to dd-trace-py/tests/appsec/ai_guard/strands_hooks/conftest.py
diff --git a/tests/appsec/ai_guard/strands_hooks/test_strands.py b/dd-trace-py/tests/appsec/ai_guard/strands_hooks/test_strands.py
similarity index 100%
rename from tests/appsec/ai_guard/strands_hooks/test_strands.py
rename to dd-trace-py/tests/appsec/ai_guard/strands_hooks/test_strands.py
diff --git a/tests/appsec/ai_guard/strands_hooks/test_strands_integrations.py b/dd-trace-py/tests/appsec/ai_guard/strands_hooks/test_strands_integrations.py
similarity index 100%
rename from tests/appsec/ai_guard/strands_hooks/test_strands_integrations.py
rename to dd-trace-py/tests/appsec/ai_guard/strands_hooks/test_strands_integrations.py
diff --git a/tests/appsec/ai_guard/utils.py b/dd-trace-py/tests/appsec/ai_guard/utils.py
similarity index 100%
rename from tests/appsec/ai_guard/utils.py
rename to dd-trace-py/tests/appsec/ai_guard/utils.py
diff --git a/tests/appsec/app.py b/dd-trace-py/tests/appsec/app.py
similarity index 100%
rename from tests/appsec/app.py
rename to dd-trace-py/tests/appsec/app.py
diff --git a/tests/appsec/appsec/__init__.py b/dd-trace-py/tests/appsec/appsec/__init__.py
similarity index 100%
rename from tests/appsec/appsec/__init__.py
rename to dd-trace-py/tests/appsec/appsec/__init__.py
diff --git a/tests/appsec/appsec/api_security/__init__.py b/dd-trace-py/tests/appsec/appsec/api_security/__init__.py
similarity index 100%
rename from tests/appsec/appsec/api_security/__init__.py
rename to dd-trace-py/tests/appsec/appsec/api_security/__init__.py
diff --git a/tests/appsec/appsec/api_security/test_api_security_manager.py b/dd-trace-py/tests/appsec/appsec/api_security/test_api_security_manager.py
similarity index 100%
rename from tests/appsec/appsec/api_security/test_api_security_manager.py
rename to dd-trace-py/tests/appsec/appsec/api_security/test_api_security_manager.py
diff --git a/tests/appsec/appsec/api_security/test_schema_fuzz.py b/dd-trace-py/tests/appsec/appsec/api_security/test_schema_fuzz.py
similarity index 100%
rename from tests/appsec/appsec/api_security/test_schema_fuzz.py
rename to dd-trace-py/tests/appsec/appsec/api_security/test_schema_fuzz.py
diff --git a/tests/appsec/appsec/blocking_template_html.html b/dd-trace-py/tests/appsec/appsec/blocking_template_html.html
similarity index 100%
rename from tests/appsec/appsec/blocking_template_html.html
rename to dd-trace-py/tests/appsec/appsec/blocking_template_html.html
diff --git a/tests/appsec/appsec/blocking_template_json.json b/dd-trace-py/tests/appsec/appsec/blocking_template_json.json
similarity index 100%
rename from tests/appsec/appsec/blocking_template_json.json
rename to dd-trace-py/tests/appsec/appsec/blocking_template_json.json
diff --git a/tests/appsec/appsec/response-custom.html b/dd-trace-py/tests/appsec/appsec/response-custom.html
similarity index 100%
rename from tests/appsec/appsec/response-custom.html
rename to dd-trace-py/tests/appsec/appsec/response-custom.html
diff --git a/tests/appsec/appsec/response-custom.json b/dd-trace-py/tests/appsec/appsec/response-custom.json
similarity index 100%
rename from tests/appsec/appsec/response-custom.json
rename to dd-trace-py/tests/appsec/appsec/response-custom.json
diff --git a/tests/appsec/appsec/rules-bad.json b/dd-trace-py/tests/appsec/appsec/rules-bad.json
similarity index 100%
rename from tests/appsec/appsec/rules-bad.json
rename to dd-trace-py/tests/appsec/appsec/rules-bad.json
diff --git a/tests/appsec/appsec/rules-bad_version.json b/dd-trace-py/tests/appsec/appsec/rules-bad_version.json
similarity index 100%
rename from tests/appsec/appsec/rules-bad_version.json
rename to dd-trace-py/tests/appsec/appsec/rules-bad_version.json
diff --git a/tests/appsec/appsec/rules-custom-scanners.json b/dd-trace-py/tests/appsec/appsec/rules-custom-scanners.json
similarity index 100%
rename from tests/appsec/appsec/rules-custom-scanners.json
rename to dd-trace-py/tests/appsec/appsec/rules-custom-scanners.json
diff --git a/tests/appsec/appsec/rules-good.json b/dd-trace-py/tests/appsec/appsec/rules-good.json
similarity index 100%
rename from tests/appsec/appsec/rules-good.json
rename to dd-trace-py/tests/appsec/appsec/rules-good.json
diff --git a/tests/appsec/appsec/rules-rasp-blocking.json b/dd-trace-py/tests/appsec/appsec/rules-rasp-blocking.json
similarity index 100%
rename from tests/appsec/appsec/rules-rasp-blocking.json
rename to dd-trace-py/tests/appsec/appsec/rules-rasp-blocking.json
diff --git a/tests/appsec/appsec/rules-rasp-disabled.json b/dd-trace-py/tests/appsec/appsec/rules-rasp-disabled.json
similarity index 100%
rename from tests/appsec/appsec/rules-rasp-disabled.json
rename to dd-trace-py/tests/appsec/appsec/rules-rasp-disabled.json
diff --git a/tests/appsec/appsec/rules-rasp-redirecting.json b/dd-trace-py/tests/appsec/appsec/rules-rasp-redirecting.json
similarity index 100%
rename from tests/appsec/appsec/rules-rasp-redirecting.json
rename to dd-trace-py/tests/appsec/appsec/rules-rasp-redirecting.json
diff --git a/tests/appsec/appsec/rules-rasp.json b/dd-trace-py/tests/appsec/appsec/rules-rasp.json
similarity index 100%
rename from tests/appsec/appsec/rules-rasp.json
rename to dd-trace-py/tests/appsec/appsec/rules-rasp.json
diff --git a/tests/appsec/appsec/rules-suspicious-attacker-blocking.json b/dd-trace-py/tests/appsec/appsec/rules-suspicious-attacker-blocking.json
similarity index 100%
rename from tests/appsec/appsec/rules-suspicious-attacker-blocking.json
rename to dd-trace-py/tests/appsec/appsec/rules-suspicious-attacker-blocking.json
diff --git a/tests/appsec/appsec/rules-suspicious-requests-custom-actions.json b/dd-trace-py/tests/appsec/appsec/rules-suspicious-requests-custom-actions.json
similarity index 100%
rename from tests/appsec/appsec/rules-suspicious-requests-custom-actions.json
rename to dd-trace-py/tests/appsec/appsec/rules-suspicious-requests-custom-actions.json
diff --git a/tests/appsec/appsec/rules-suspicious-requests-get.json b/dd-trace-py/tests/appsec/appsec/rules-suspicious-requests-get.json
similarity index 100%
rename from tests/appsec/appsec/rules-suspicious-requests-get.json
rename to dd-trace-py/tests/appsec/appsec/rules-suspicious-requests-get.json
diff --git a/tests/appsec/appsec/rules-suspicious-requests-response.json b/dd-trace-py/tests/appsec/appsec/rules-suspicious-requests-response.json
similarity index 100%
rename from tests/appsec/appsec/rules-suspicious-requests-response.json
rename to dd-trace-py/tests/appsec/appsec/rules-suspicious-requests-response.json
diff --git a/tests/appsec/appsec/rules-suspicious-requests.json b/dd-trace-py/tests/appsec/appsec/rules-suspicious-requests.json
similarity index 100%
rename from tests/appsec/appsec/rules-suspicious-requests.json
rename to dd-trace-py/tests/appsec/appsec/rules-suspicious-requests.json
diff --git a/tests/appsec/appsec/rules-trace-tagging.json b/dd-trace-py/tests/appsec/appsec/rules-trace-tagging.json
similarity index 100%
rename from tests/appsec/appsec/rules-trace-tagging.json
rename to dd-trace-py/tests/appsec/appsec/rules-trace-tagging.json
diff --git a/tests/appsec/appsec/rules-with-2-errors.json b/dd-trace-py/tests/appsec/appsec/rules-with-2-errors.json
similarity index 100%
rename from tests/appsec/appsec/rules-with-2-errors.json
rename to dd-trace-py/tests/appsec/appsec/rules-with-2-errors.json
diff --git a/tests/appsec/appsec/rules-with-3-errors.json b/dd-trace-py/tests/appsec/appsec/rules-with-3-errors.json
similarity index 100%
rename from tests/appsec/appsec/rules-with-3-errors.json
rename to dd-trace-py/tests/appsec/appsec/rules-with-3-errors.json
diff --git a/tests/appsec/appsec/test_appsec_http_utils.py b/dd-trace-py/tests/appsec/appsec/test_appsec_http_utils.py
similarity index 100%
rename from tests/appsec/appsec/test_appsec_http_utils.py
rename to dd-trace-py/tests/appsec/appsec/test_appsec_http_utils.py
diff --git a/tests/appsec/appsec/test_appsec_trace_utils.py b/dd-trace-py/tests/appsec/appsec/test_appsec_trace_utils.py
similarity index 100%
rename from tests/appsec/appsec/test_appsec_trace_utils.py
rename to dd-trace-py/tests/appsec/appsec/test_appsec_trace_utils.py
diff --git a/tests/appsec/appsec/test_appsec_utils.py b/dd-trace-py/tests/appsec/appsec/test_appsec_utils.py
similarity index 100%
rename from tests/appsec/appsec/test_appsec_utils.py
rename to dd-trace-py/tests/appsec/appsec/test_appsec_utils.py
diff --git a/tests/appsec/appsec/test_asm_request_context.py b/dd-trace-py/tests/appsec/appsec/test_asm_request_context.py
similarity index 100%
rename from tests/appsec/appsec/test_asm_request_context.py
rename to dd-trace-py/tests/appsec/appsec/test_asm_request_context.py
diff --git a/tests/appsec/appsec/test_asm_standalone.py b/dd-trace-py/tests/appsec/appsec/test_asm_standalone.py
similarity index 100%
rename from tests/appsec/appsec/test_asm_standalone.py
rename to dd-trace-py/tests/appsec/appsec/test_asm_standalone.py
diff --git a/tests/appsec/appsec/test_common_modules.py b/dd-trace-py/tests/appsec/appsec/test_common_modules.py
similarity index 100%
rename from tests/appsec/appsec/test_common_modules.py
rename to dd-trace-py/tests/appsec/appsec/test_common_modules.py
diff --git a/tests/appsec/appsec/test_constants.py b/dd-trace-py/tests/appsec/appsec/test_constants.py
similarity index 100%
rename from tests/appsec/appsec/test_constants.py
rename to dd-trace-py/tests/appsec/appsec/test_constants.py
diff --git a/tests/appsec/appsec/test_ddwaf_fuzz.py b/dd-trace-py/tests/appsec/appsec/test_ddwaf_fuzz.py
similarity index 100%
rename from tests/appsec/appsec/test_ddwaf_fuzz.py
rename to dd-trace-py/tests/appsec/appsec/test_ddwaf_fuzz.py
diff --git a/tests/appsec/appsec/test_exploit_prevention.py b/dd-trace-py/tests/appsec/appsec/test_exploit_prevention.py
similarity index 100%
rename from tests/appsec/appsec/test_exploit_prevention.py
rename to dd-trace-py/tests/appsec/appsec/test_exploit_prevention.py
diff --git a/tests/appsec/appsec/test_processor.py b/dd-trace-py/tests/appsec/appsec/test_processor.py
similarity index 100%
rename from tests/appsec/appsec/test_processor.py
rename to dd-trace-py/tests/appsec/appsec/test_processor.py
diff --git a/tests/appsec/appsec/test_remoteconfiguration.py b/dd-trace-py/tests/appsec/appsec/test_remoteconfiguration.py
similarity index 100%
rename from tests/appsec/appsec/test_remoteconfiguration.py
rename to dd-trace-py/tests/appsec/appsec/test_remoteconfiguration.py
diff --git a/tests/appsec/appsec/test_telemetry.py b/dd-trace-py/tests/appsec/appsec/test_telemetry.py
similarity index 100%
rename from tests/appsec/appsec/test_telemetry.py
rename to dd-trace-py/tests/appsec/appsec/test_telemetry.py
diff --git a/tests/appsec/appsec/test_tools.py b/dd-trace-py/tests/appsec/appsec/test_tools.py
similarity index 100%
rename from tests/appsec/appsec/test_tools.py
rename to dd-trace-py/tests/appsec/appsec/test_tools.py
diff --git a/tests/appsec/appsec_utils.py b/dd-trace-py/tests/appsec/appsec_utils.py
similarity index 100%
rename from tests/appsec/appsec_utils.py
rename to dd-trace-py/tests/appsec/appsec_utils.py
diff --git a/tests/appsec/architectures/mini.py b/dd-trace-py/tests/appsec/architectures/mini.py
similarity index 100%
rename from tests/appsec/architectures/mini.py
rename to dd-trace-py/tests/appsec/architectures/mini.py
diff --git a/tests/appsec/architectures/test_appsec_loading_modules.py b/dd-trace-py/tests/appsec/architectures/test_appsec_loading_modules.py
similarity index 100%
rename from tests/appsec/architectures/test_appsec_loading_modules.py
rename to dd-trace-py/tests/appsec/architectures/test_appsec_loading_modules.py
diff --git a/tests/appsec/contrib_appsec/__init__.py b/dd-trace-py/tests/appsec/contrib_appsec/__init__.py
similarity index 100%
rename from tests/appsec/contrib_appsec/__init__.py
rename to dd-trace-py/tests/appsec/contrib_appsec/__init__.py
diff --git a/tests/appsec/contrib_appsec/conftest.py b/dd-trace-py/tests/appsec/contrib_appsec/conftest.py
similarity index 100%
rename from tests/appsec/contrib_appsec/conftest.py
rename to dd-trace-py/tests/appsec/contrib_appsec/conftest.py
diff --git a/tests/appsec/contrib_appsec/db.sqlite3 b/dd-trace-py/tests/appsec/contrib_appsec/db.sqlite3
similarity index 100%
rename from tests/appsec/contrib_appsec/db.sqlite3
rename to dd-trace-py/tests/appsec/contrib_appsec/db.sqlite3
diff --git a/tests/appsec/contrib_appsec/django_app/__init__.py b/dd-trace-py/tests/appsec/contrib_appsec/django_app/__init__.py
similarity index 100%
rename from tests/appsec/contrib_appsec/django_app/__init__.py
rename to dd-trace-py/tests/appsec/contrib_appsec/django_app/__init__.py
diff --git a/tests/appsec/contrib_appsec/django_app/app/__init__.py b/dd-trace-py/tests/appsec/contrib_appsec/django_app/app/__init__.py
similarity index 100%
rename from tests/appsec/contrib_appsec/django_app/app/__init__.py
rename to dd-trace-py/tests/appsec/contrib_appsec/django_app/app/__init__.py
diff --git a/tests/appsec/contrib_appsec/django_app/app/middlewares.py b/dd-trace-py/tests/appsec/contrib_appsec/django_app/app/middlewares.py
similarity index 100%
rename from tests/appsec/contrib_appsec/django_app/app/middlewares.py
rename to dd-trace-py/tests/appsec/contrib_appsec/django_app/app/middlewares.py
diff --git a/tests/appsec/contrib_appsec/django_app/app/models.py b/dd-trace-py/tests/appsec/contrib_appsec/django_app/app/models.py
similarity index 100%
rename from tests/appsec/contrib_appsec/django_app/app/models.py
rename to dd-trace-py/tests/appsec/contrib_appsec/django_app/app/models.py
diff --git a/tests/appsec/contrib_appsec/django_app/db_script.py b/dd-trace-py/tests/appsec/contrib_appsec/django_app/db_script.py
similarity index 100%
rename from tests/appsec/contrib_appsec/django_app/db_script.py
rename to dd-trace-py/tests/appsec/contrib_appsec/django_app/db_script.py
diff --git a/tests/appsec/contrib_appsec/django_app/settings.py b/dd-trace-py/tests/appsec/contrib_appsec/django_app/settings.py
similarity index 100%
rename from tests/appsec/contrib_appsec/django_app/settings.py
rename to dd-trace-py/tests/appsec/contrib_appsec/django_app/settings.py
diff --git a/tests/appsec/contrib_appsec/django_app/urls.py b/dd-trace-py/tests/appsec/contrib_appsec/django_app/urls.py
similarity index 100%
rename from tests/appsec/contrib_appsec/django_app/urls.py
rename to dd-trace-py/tests/appsec/contrib_appsec/django_app/urls.py
diff --git a/tests/appsec/contrib_appsec/django_app/urls_subapps.py b/dd-trace-py/tests/appsec/contrib_appsec/django_app/urls_subapps.py
similarity index 100%
rename from tests/appsec/contrib_appsec/django_app/urls_subapps.py
rename to dd-trace-py/tests/appsec/contrib_appsec/django_app/urls_subapps.py
diff --git a/tests/appsec/contrib_appsec/fastapi_app/app.py b/dd-trace-py/tests/appsec/contrib_appsec/fastapi_app/app.py
similarity index 100%
rename from tests/appsec/contrib_appsec/fastapi_app/app.py
rename to dd-trace-py/tests/appsec/contrib_appsec/fastapi_app/app.py
diff --git a/tests/appsec/contrib_appsec/fastapi_app/app_subapps.py b/dd-trace-py/tests/appsec/contrib_appsec/fastapi_app/app_subapps.py
similarity index 100%
rename from tests/appsec/contrib_appsec/fastapi_app/app_subapps.py
rename to dd-trace-py/tests/appsec/contrib_appsec/fastapi_app/app_subapps.py
diff --git a/tests/appsec/contrib_appsec/flask_app/__init__.py b/dd-trace-py/tests/appsec/contrib_appsec/flask_app/__init__.py
similarity index 100%
rename from tests/appsec/contrib_appsec/flask_app/__init__.py
rename to dd-trace-py/tests/appsec/contrib_appsec/flask_app/__init__.py
diff --git a/tests/appsec/contrib_appsec/flask_app/app.py b/dd-trace-py/tests/appsec/contrib_appsec/flask_app/app.py
similarity index 100%
rename from tests/appsec/contrib_appsec/flask_app/app.py
rename to dd-trace-py/tests/appsec/contrib_appsec/flask_app/app.py
diff --git a/tests/appsec/contrib_appsec/test_django.py b/dd-trace-py/tests/appsec/contrib_appsec/test_django.py
similarity index 100%
rename from tests/appsec/contrib_appsec/test_django.py
rename to dd-trace-py/tests/appsec/contrib_appsec/test_django.py
diff --git a/tests/appsec/contrib_appsec/test_fastapi.py b/dd-trace-py/tests/appsec/contrib_appsec/test_fastapi.py
similarity index 100%
rename from tests/appsec/contrib_appsec/test_fastapi.py
rename to dd-trace-py/tests/appsec/contrib_appsec/test_fastapi.py
diff --git a/tests/appsec/contrib_appsec/test_flask.py b/dd-trace-py/tests/appsec/contrib_appsec/test_flask.py
similarity index 100%
rename from tests/appsec/contrib_appsec/test_flask.py
rename to dd-trace-py/tests/appsec/contrib_appsec/test_flask.py
diff --git a/tests/appsec/contrib_appsec/test_tornado.py b/dd-trace-py/tests/appsec/contrib_appsec/test_tornado.py
similarity index 100%
rename from tests/appsec/contrib_appsec/test_tornado.py
rename to dd-trace-py/tests/appsec/contrib_appsec/test_tornado.py
diff --git a/tests/appsec/contrib_appsec/tornado_app/app.py b/dd-trace-py/tests/appsec/contrib_appsec/tornado_app/app.py
similarity index 100%
rename from tests/appsec/contrib_appsec/tornado_app/app.py
rename to dd-trace-py/tests/appsec/contrib_appsec/tornado_app/app.py
diff --git a/tests/appsec/contrib_appsec/utils.py b/dd-trace-py/tests/appsec/contrib_appsec/utils.py
similarity index 100%
rename from tests/appsec/contrib_appsec/utils.py
rename to dd-trace-py/tests/appsec/contrib_appsec/utils.py
diff --git a/tests/appsec/iast/__init__.py b/dd-trace-py/tests/appsec/iast/__init__.py
similarity index 100%
rename from tests/appsec/iast/__init__.py
rename to dd-trace-py/tests/appsec/iast/__init__.py
diff --git a/tests/appsec/iast/_ast/__init__.py b/dd-trace-py/tests/appsec/iast/_ast/__init__.py
similarity index 100%
rename from tests/appsec/iast/_ast/__init__.py
rename to dd-trace-py/tests/appsec/iast/_ast/__init__.py
diff --git a/tests/appsec/iast/_ast/conftest.py b/dd-trace-py/tests/appsec/iast/_ast/conftest.py
similarity index 100%
rename from tests/appsec/iast/_ast/conftest.py
rename to dd-trace-py/tests/appsec/iast/_ast/conftest.py
diff --git a/tests/appsec/iast/_ast/fixtures/annotated_code.py b/dd-trace-py/tests/appsec/iast/_ast/fixtures/annotated_code.py
similarity index 100%
rename from tests/appsec/iast/_ast/fixtures/annotated_code.py
rename to dd-trace-py/tests/appsec/iast/_ast/fixtures/annotated_code.py
diff --git a/tests/appsec/iast/_ast/fixtures/del_variables_at_runtime.py b/dd-trace-py/tests/appsec/iast/_ast/fixtures/del_variables_at_runtime.py
similarity index 100%
rename from tests/appsec/iast/_ast/fixtures/del_variables_at_runtime.py
rename to dd-trace-py/tests/appsec/iast/_ast/fixtures/del_variables_at_runtime.py
diff --git a/tests/appsec/iast/_ast/fixtures/misleading_methods.py b/dd-trace-py/tests/appsec/iast/_ast/fixtures/misleading_methods.py
similarity index 100%
rename from tests/appsec/iast/_ast/fixtures/misleading_methods.py
rename to dd-trace-py/tests/appsec/iast/_ast/fixtures/misleading_methods.py
diff --git a/tests/appsec/iast/_ast/test_ast_patching.py b/dd-trace-py/tests/appsec/iast/_ast/test_ast_patching.py
similarity index 100%
rename from tests/appsec/iast/_ast/test_ast_patching.py
rename to dd-trace-py/tests/appsec/iast/_ast/test_ast_patching.py
diff --git a/tests/appsec/iast/_ast/test_ast_patching_type_hints.py b/dd-trace-py/tests/appsec/iast/_ast/test_ast_patching_type_hints.py
similarity index 100%
rename from tests/appsec/iast/_ast/test_ast_patching_type_hints.py
rename to dd-trace-py/tests/appsec/iast/_ast/test_ast_patching_type_hints.py
diff --git a/tests/appsec/iast/_ast/test_corner_cases.py b/dd-trace-py/tests/appsec/iast/_ast/test_corner_cases.py
similarity index 100%
rename from tests/appsec/iast/_ast/test_corner_cases.py
rename to dd-trace-py/tests/appsec/iast/_ast/test_corner_cases.py
diff --git a/tests/appsec/iast/_ast/test_proper_patching.py b/dd-trace-py/tests/appsec/iast/_ast/test_proper_patching.py
similarity index 100%
rename from tests/appsec/iast/_ast/test_proper_patching.py
rename to dd-trace-py/tests/appsec/iast/_ast/test_proper_patching.py
diff --git a/tests/appsec/iast/aspects/__init__.py b/dd-trace-py/tests/appsec/iast/aspects/__init__.py
similarity index 100%
rename from tests/appsec/iast/aspects/__init__.py
rename to dd-trace-py/tests/appsec/iast/aspects/__init__.py
diff --git a/tests/appsec/iast/aspects/aspect_utils.py b/dd-trace-py/tests/appsec/iast/aspects/aspect_utils.py
similarity index 100%
rename from tests/appsec/iast/aspects/aspect_utils.py
rename to dd-trace-py/tests/appsec/iast/aspects/aspect_utils.py
diff --git a/tests/appsec/iast/aspects/conftest.py b/dd-trace-py/tests/appsec/iast/aspects/conftest.py
similarity index 100%
rename from tests/appsec/iast/aspects/conftest.py
rename to dd-trace-py/tests/appsec/iast/aspects/conftest.py
diff --git a/tests/appsec/iast/aspects/test_add_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_add_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_add_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_add_aspect.py
diff --git a/tests/appsec/iast/aspects/test_add_aspect_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_add_aspect_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_add_aspect_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_add_aspect_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_add_inplace_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_add_inplace_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_add_inplace_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_add_inplace_aspect.py
diff --git a/tests/appsec/iast/aspects/test_add_inplace_aspect_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_add_inplace_aspect_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_add_inplace_aspect_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_add_inplace_aspect_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_aspect_helpers.py b/dd-trace-py/tests/appsec/iast/aspects/test_aspect_helpers.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_aspect_helpers.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_aspect_helpers.py
diff --git a/tests/appsec/iast/aspects/test_asyncio.py b/dd-trace-py/tests/appsec/iast/aspects/test_asyncio.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_asyncio.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_asyncio.py
diff --git a/tests/appsec/iast/aspects/test_bytearray_extend_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_bytearray_extend_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_bytearray_extend_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_bytearray_extend_aspect.py
diff --git a/tests/appsec/iast/aspects/test_common_aspects.py b/dd-trace-py/tests/appsec/iast/aspects/test_common_aspects.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_common_aspects.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_common_aspects.py
diff --git a/tests/appsec/iast/aspects/test_common_aspects_generator.py b/dd-trace-py/tests/appsec/iast/aspects/test_common_aspects_generator.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_common_aspects_generator.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_common_aspects_generator.py
diff --git a/tests/appsec/iast/aspects/test_common_replace_aspects.py b/dd-trace-py/tests/appsec/iast/aspects/test_common_replace_aspects.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_common_replace_aspects.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_common_replace_aspects.py
diff --git a/tests/appsec/iast/aspects/test_empty_arg_aspects.py b/dd-trace-py/tests/appsec/iast/aspects/test_empty_arg_aspects.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_empty_arg_aspects.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_empty_arg_aspects.py
diff --git a/tests/appsec/iast/aspects/test_encode_decode_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_encode_decode_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_encode_decode_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_encode_decode_aspect.py
diff --git a/tests/appsec/iast/aspects/test_format_aspect_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_format_aspect_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_format_aspect_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_format_aspect_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_format_map_aspect_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_format_map_aspect_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_format_map_aspect_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_format_map_aspect_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_fstrings.py b/dd-trace-py/tests/appsec/iast/aspects/test_fstrings.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_fstrings.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_fstrings.py
diff --git a/tests/appsec/iast/aspects/test_index_aspect_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_index_aspect_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_index_aspect_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_index_aspect_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_io_aspects.py b/dd-trace-py/tests/appsec/iast/aspects/test_io_aspects.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_io_aspects.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_io_aspects.py
diff --git a/tests/appsec/iast/aspects/test_join_aspect_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_join_aspect_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_join_aspect_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_join_aspect_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_join_aspect_memory_optimizations.py b/dd-trace-py/tests/appsec/iast/aspects/test_join_aspect_memory_optimizations.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_join_aspect_memory_optimizations.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_join_aspect_memory_optimizations.py
diff --git a/tests/appsec/iast/aspects/test_modulo_aspect_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_modulo_aspect_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_modulo_aspect_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_modulo_aspect_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_ospath_aspects.py b/dd-trace-py/tests/appsec/iast/aspects/test_ospath_aspects.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_ospath_aspects.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_ospath_aspects.py
diff --git a/tests/appsec/iast/aspects/test_ospath_aspects_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_ospath_aspects_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_ospath_aspects_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_ospath_aspects_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_other_patching.py b/dd-trace-py/tests/appsec/iast/aspects/test_other_patching.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_other_patching.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_other_patching.py
diff --git a/tests/appsec/iast/aspects/test_re_aspects.py b/dd-trace-py/tests/appsec/iast/aspects/test_re_aspects.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_re_aspects.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_re_aspects.py
diff --git a/tests/appsec/iast/aspects/test_replace_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_replace_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_replace_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_replace_aspect.py
diff --git a/tests/appsec/iast/aspects/test_side_effects.py b/dd-trace-py/tests/appsec/iast/aspects/test_side_effects.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_side_effects.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_side_effects.py
diff --git a/tests/appsec/iast/aspects/test_slice_aspect_fixtures.py b/dd-trace-py/tests/appsec/iast/aspects/test_slice_aspect_fixtures.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_slice_aspect_fixtures.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_slice_aspect_fixtures.py
diff --git a/tests/appsec/iast/aspects/test_split_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_split_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_split_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_split_aspect.py
diff --git a/tests/appsec/iast/aspects/test_str_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_str_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_str_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_str_aspect.py
diff --git a/tests/appsec/iast/aspects/test_strip_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_strip_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_strip_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_strip_aspect.py
diff --git a/tests/appsec/iast/aspects/test_template_string_aspect.py b/dd-trace-py/tests/appsec/iast/aspects/test_template_string_aspect.py
similarity index 100%
rename from tests/appsec/iast/aspects/test_template_string_aspect.py
rename to dd-trace-py/tests/appsec/iast/aspects/test_template_string_aspect.py
diff --git a/tests/appsec/iast/conftest.py b/dd-trace-py/tests/appsec/iast/conftest.py
similarity index 100%
rename from tests/appsec/iast/conftest.py
rename to dd-trace-py/tests/appsec/iast/conftest.py
diff --git a/tests/appsec/iast/fixtures/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/__init__.py
diff --git a/tests/appsec/iast/fixtures/aspects/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/__init__.py
diff --git a/tests/appsec/iast/fixtures/aspects/add_operator/basic.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/add_operator/basic.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/add_operator/basic.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/add_operator/basic.py
diff --git a/tests/appsec/iast/fixtures/aspects/asyncio_functions.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/asyncio_functions.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/asyncio_functions.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/asyncio_functions.py
diff --git a/tests/appsec/iast/fixtures/aspects/callees.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/callees.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/callees.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/callees.py
diff --git a/tests/appsec/iast/fixtures/aspects/obj_callees.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/obj_callees.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/obj_callees.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/obj_callees.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/__init__.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/class_no_str.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/class_no_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/class_no_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/class_no_str.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/class_str.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/class_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/class_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/class_str.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/empty_file.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/empty_file.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/empty_file.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/empty_file.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/function_no_str.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/function_no_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/function_no_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/function_no_str.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/function_str.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/function_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/function_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/function_str.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/future_import_class_str.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/future_import_class_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/future_import_class_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/future_import_class_str.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/future_import_function_str.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/future_import_function_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/future_import_function_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/future_import_function_str.py
diff --git a/tests/appsec/iast/fixtures/aspects/str/invented_extension.cppy b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/invented_extension.cppy
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/invented_extension.cppy
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/invented_extension.cppy
diff --git a/tests/appsec/iast/fixtures/aspects/str/non_utf8_content.py b/dd-trace-py/tests/appsec/iast/fixtures/aspects/str/non_utf8_content.py
similarity index 100%
rename from tests/appsec/iast/fixtures/aspects/str/non_utf8_content.py
rename to dd-trace-py/tests/appsec/iast/fixtures/aspects/str/non_utf8_content.py
diff --git a/tests/appsec/iast/fixtures/ast/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/__init__.py
diff --git a/tests/appsec/iast/fixtures/ast/add_operator/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/add_operator/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/add_operator/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/add_operator/__init__.py
diff --git a/tests/appsec/iast/fixtures/ast/add_operator/basic.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/add_operator/basic.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/add_operator/basic.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/add_operator/basic.py
diff --git a/tests/appsec/iast/fixtures/ast/add_operator/inplace.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/add_operator/inplace.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/add_operator/inplace.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/add_operator/inplace.py
diff --git a/tests/appsec/iast/fixtures/ast/io/function_bytesio.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/io/function_bytesio.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/io/function_bytesio.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/io/function_bytesio.py
diff --git a/tests/appsec/iast/fixtures/ast/io/function_stringio.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/io/function_stringio.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/io/function_stringio.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/io/function_stringio.py
diff --git a/tests/appsec/iast/fixtures/ast/io/module_bytesio.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/io/module_bytesio.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/io/module_bytesio.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/io/module_bytesio.py
diff --git a/tests/appsec/iast/fixtures/ast/io/module_read.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/io/module_read.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/io/module_read.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/io/module_read.py
diff --git a/tests/appsec/iast/fixtures/ast/io/module_stringio.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/io/module_stringio.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/io/module_stringio.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/io/module_stringio.py
diff --git a/tests/appsec/iast/fixtures/ast/other/globals_builtin.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/other/globals_builtin.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/other/globals_builtin.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/other/globals_builtin.py
diff --git a/tests/appsec/iast/fixtures/ast/other/with_implemented_dir.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/other/with_implemented_dir.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/other/with_implemented_dir.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/other/with_implemented_dir.py
diff --git a/tests/appsec/iast/fixtures/ast/other/without_implemented_dir.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/other/without_implemented_dir.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/other/without_implemented_dir.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/other/without_implemented_dir.py
diff --git a/tests/appsec/iast/fixtures/ast/str/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/__init__.py
diff --git a/tests/appsec/iast/fixtures/ast/str/class_no_str.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/class_no_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/class_no_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/class_no_str.py
diff --git a/tests/appsec/iast/fixtures/ast/str/class_str.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/class_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/class_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/class_str.py
diff --git a/tests/appsec/iast/fixtures/ast/str/empty_file.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/empty_file.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/empty_file.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/empty_file.py
diff --git a/tests/appsec/iast/fixtures/ast/str/function_no_str.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/function_no_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/function_no_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/function_no_str.py
diff --git a/tests/appsec/iast/fixtures/ast/str/function_str.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/function_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/function_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/function_str.py
diff --git a/tests/appsec/iast/fixtures/ast/str/future_import_class_str.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/future_import_class_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/future_import_class_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/future_import_class_str.py
diff --git a/tests/appsec/iast/fixtures/ast/str/future_import_function_str.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/future_import_function_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/future_import_function_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/future_import_function_str.py
diff --git a/tests/appsec/iast/fixtures/ast/str/invented_extension.cppy b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/invented_extension.cppy
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/invented_extension.cppy
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/invented_extension.cppy
diff --git a/tests/appsec/iast/fixtures/ast/str/non_utf8_content.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/str/non_utf8_content.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/str/non_utf8_content.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/str/non_utf8_content.py
diff --git a/tests/appsec/iast/fixtures/ast/subscript/store_context.py b/dd-trace-py/tests/appsec/iast/fixtures/ast/subscript/store_context.py
similarity index 100%
rename from tests/appsec/iast/fixtures/ast/subscript/store_context.py
rename to dd-trace-py/tests/appsec/iast/fixtures/ast/subscript/store_context.py
diff --git a/tests/appsec/iast/fixtures/django_debug_page.html b/dd-trace-py/tests/appsec/iast/fixtures/django_debug_page.html
similarity index 100%
rename from tests/appsec/iast/fixtures/django_debug_page.html
rename to dd-trace-py/tests/appsec/iast/fixtures/django_debug_page.html
diff --git a/tests/appsec/iast/fixtures/entrypoint/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/entrypoint/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/entrypoint/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/entrypoint/__init__.py
diff --git a/tests/appsec/iast/fixtures/entrypoint/app.py b/dd-trace-py/tests/appsec/iast/fixtures/entrypoint/app.py
similarity index 100%
rename from tests/appsec/iast/fixtures/entrypoint/app.py
rename to dd-trace-py/tests/appsec/iast/fixtures/entrypoint/app.py
diff --git a/tests/appsec/iast/fixtures/entrypoint/app_create_app_patch_auto.py b/dd-trace-py/tests/appsec/iast/fixtures/entrypoint/app_create_app_patch_auto.py
similarity index 100%
rename from tests/appsec/iast/fixtures/entrypoint/app_create_app_patch_auto.py
rename to dd-trace-py/tests/appsec/iast/fixtures/entrypoint/app_create_app_patch_auto.py
diff --git a/tests/appsec/iast/fixtures/entrypoint/app_main_patched.py b/dd-trace-py/tests/appsec/iast/fixtures/entrypoint/app_main_patched.py
similarity index 100%
rename from tests/appsec/iast/fixtures/entrypoint/app_main_patched.py
rename to dd-trace-py/tests/appsec/iast/fixtures/entrypoint/app_main_patched.py
diff --git a/tests/appsec/iast/fixtures/entrypoint/views.py b/dd-trace-py/tests/appsec/iast/fixtures/entrypoint/views.py
similarity index 100%
rename from tests/appsec/iast/fixtures/entrypoint/views.py
rename to dd-trace-py/tests/appsec/iast/fixtures/entrypoint/views.py
diff --git a/tests/appsec/iast/fixtures/integration/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/integration/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/integration/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/integration/__init__.py
diff --git a/tests/appsec/iast/fixtures/integration/http_config_server.py b/dd-trace-py/tests/appsec/iast/fixtures/integration/http_config_server.py
similarity index 100%
rename from tests/appsec/iast/fixtures/integration/http_config_server.py
rename to dd-trace-py/tests/appsec/iast/fixtures/integration/http_config_server.py
diff --git a/tests/appsec/iast/fixtures/integration/main.py b/dd-trace-py/tests/appsec/iast/fixtures/integration/main.py
similarity index 100%
rename from tests/appsec/iast/fixtures/integration/main.py
rename to dd-trace-py/tests/appsec/iast/fixtures/integration/main.py
diff --git a/tests/appsec/iast/fixtures/integration/main_configure.py b/dd-trace-py/tests/appsec/iast/fixtures/integration/main_configure.py
similarity index 100%
rename from tests/appsec/iast/fixtures/integration/main_configure.py
rename to dd-trace-py/tests/appsec/iast/fixtures/integration/main_configure.py
diff --git a/tests/appsec/iast/fixtures/integration/main_configure_right.py b/dd-trace-py/tests/appsec/iast/fixtures/integration/main_configure_right.py
similarity index 100%
rename from tests/appsec/iast/fixtures/integration/main_configure_right.py
rename to dd-trace-py/tests/appsec/iast/fixtures/integration/main_configure_right.py
diff --git a/tests/appsec/iast/fixtures/integration/main_configure_wrong.py b/dd-trace-py/tests/appsec/iast/fixtures/integration/main_configure_wrong.py
similarity index 100%
rename from tests/appsec/iast/fixtures/integration/main_configure_wrong.py
rename to dd-trace-py/tests/appsec/iast/fixtures/integration/main_configure_wrong.py
diff --git a/tests/appsec/iast/fixtures/integration/main_gevent.py b/dd-trace-py/tests/appsec/iast/fixtures/integration/main_gevent.py
similarity index 100%
rename from tests/appsec/iast/fixtures/integration/main_gevent.py
rename to dd-trace-py/tests/appsec/iast/fixtures/integration/main_gevent.py
diff --git a/tests/appsec/iast/fixtures/integration/print_str.py b/dd-trace-py/tests/appsec/iast/fixtures/integration/print_str.py
similarity index 100%
rename from tests/appsec/iast/fixtures/integration/print_str.py
rename to dd-trace-py/tests/appsec/iast/fixtures/integration/print_str.py
diff --git a/tests/appsec/iast/fixtures/loader.py b/dd-trace-py/tests/appsec/iast/fixtures/loader.py
similarity index 100%
rename from tests/appsec/iast/fixtures/loader.py
rename to dd-trace-py/tests/appsec/iast/fixtures/loader.py
diff --git a/tests/appsec/iast/fixtures/non_re_module.py b/dd-trace-py/tests/appsec/iast/fixtures/non_re_module.py
similarity index 100%
rename from tests/appsec/iast/fixtures/non_re_module.py
rename to dd-trace-py/tests/appsec/iast/fixtures/non_re_module.py
diff --git a/tests/appsec/iast/fixtures/plain_stacktrace.txt b/dd-trace-py/tests/appsec/iast/fixtures/plain_stacktrace.txt
similarity index 100%
rename from tests/appsec/iast/fixtures/plain_stacktrace.txt
rename to dd-trace-py/tests/appsec/iast/fixtures/plain_stacktrace.txt
diff --git a/tests/appsec/iast/fixtures/propagation_path.py b/dd-trace-py/tests/appsec/iast/fixtures/propagation_path.py
similarity index 100%
rename from tests/appsec/iast/fixtures/propagation_path.py
rename to dd-trace-py/tests/appsec/iast/fixtures/propagation_path.py
diff --git a/tests/appsec/iast/fixtures/secure_marks/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/secure_marks/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/secure_marks/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/secure_marks/__init__.py
diff --git a/tests/appsec/iast/fixtures/secure_marks/sanitizers.py b/dd-trace-py/tests/appsec/iast/fixtures/secure_marks/sanitizers.py
similarity index 100%
rename from tests/appsec/iast/fixtures/secure_marks/sanitizers.py
rename to dd-trace-py/tests/appsec/iast/fixtures/secure_marks/sanitizers.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/__init__.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/__init__.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/__init__.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/__init__.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/code_injection.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/code_injection.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/code_injection.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/code_injection.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/command_injection.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/command_injection.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/command_injection.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/command_injection.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/path_traversal.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/path_traversal.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/path_traversal.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/path_traversal.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/path_traversal_test_file.txt b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/path_traversal_test_file.txt
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/path_traversal_test_file.txt
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/path_traversal_test_file.txt
diff --git a/tests/appsec/iast/fixtures/taint_sinks/ssrf.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/ssrf.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/ssrf.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/ssrf.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/weak_algorithms.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_algorithms.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/weak_algorithms.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_algorithms.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random_module.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random_module.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random_module.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random_module.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random_secure_module.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random_secure_module.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random_secure_module.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_random_secure_module.py
diff --git a/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_secrets.py b/dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_secrets.py
similarity index 100%
rename from tests/appsec/iast/fixtures/taint_sinks/weak_randomness_secrets.py
rename to dd-trace-py/tests/appsec/iast/fixtures/taint_sinks/weak_randomness_secrets.py
diff --git a/tests/appsec/iast/iast_utils.py b/dd-trace-py/tests/appsec/iast/iast_utils.py
similarity index 100%
rename from tests/appsec/iast/iast_utils.py
rename to dd-trace-py/tests/appsec/iast/iast_utils.py
diff --git a/tests/appsec/iast/iast_utils_side_effects.py b/dd-trace-py/tests/appsec/iast/iast_utils_side_effects.py
similarity index 100%
rename from tests/appsec/iast/iast_utils_side_effects.py
rename to dd-trace-py/tests/appsec/iast/iast_utils_side_effects.py
diff --git a/tests/appsec/iast/secure_marks/__init__.py b/dd-trace-py/tests/appsec/iast/secure_marks/__init__.py
similarity index 100%
rename from tests/appsec/iast/secure_marks/__init__.py
rename to dd-trace-py/tests/appsec/iast/secure_marks/__init__.py
diff --git a/tests/appsec/iast/secure_marks/conftest.py b/dd-trace-py/tests/appsec/iast/secure_marks/conftest.py
similarity index 100%
rename from tests/appsec/iast/secure_marks/conftest.py
rename to dd-trace-py/tests/appsec/iast/secure_marks/conftest.py
diff --git a/tests/appsec/iast/secure_marks/test_sanitizers.py b/dd-trace-py/tests/appsec/iast/secure_marks/test_sanitizers.py
similarity index 100%
rename from tests/appsec/iast/secure_marks/test_sanitizers.py
rename to dd-trace-py/tests/appsec/iast/secure_marks/test_sanitizers.py
diff --git a/tests/appsec/iast/secure_marks/test_security_controls_configuration.py b/dd-trace-py/tests/appsec/iast/secure_marks/test_security_controls_configuration.py
similarity index 100%
rename from tests/appsec/iast/secure_marks/test_security_controls_configuration.py
rename to dd-trace-py/tests/appsec/iast/secure_marks/test_security_controls_configuration.py
diff --git a/tests/appsec/iast/secure_marks/test_validators.py b/dd-trace-py/tests/appsec/iast/secure_marks/test_validators.py
similarity index 100%
rename from tests/appsec/iast/secure_marks/test_validators.py
rename to dd-trace-py/tests/appsec/iast/secure_marks/test_validators.py
diff --git a/tests/appsec/iast/taint_sinks/__init__.py b/dd-trace-py/tests/appsec/iast/taint_sinks/__init__.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/__init__.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/__init__.py
diff --git a/tests/appsec/iast/taint_sinks/_taint_sinks_utils.py b/dd-trace-py/tests/appsec/iast/taint_sinks/_taint_sinks_utils.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/_taint_sinks_utils.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/_taint_sinks_utils.py
diff --git a/tests/appsec/iast/taint_sinks/redaction_fixtures/evidence-redaction-suite.json b/dd-trace-py/tests/appsec/iast/taint_sinks/redaction_fixtures/evidence-redaction-suite.json
similarity index 100%
rename from tests/appsec/iast/taint_sinks/redaction_fixtures/evidence-redaction-suite.json
rename to dd-trace-py/tests/appsec/iast/taint_sinks/redaction_fixtures/evidence-redaction-suite.json
diff --git a/tests/appsec/iast/taint_sinks/test_ast_taint.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_ast_taint.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_ast_taint.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_ast_taint.py
diff --git a/tests/appsec/iast/taint_sinks/test_code_injection.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_code_injection.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_code_injection.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_code_injection.py
diff --git a/tests/appsec/iast/taint_sinks/test_code_injection_inspect_regression.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_code_injection_inspect_regression.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_code_injection_inspect_regression.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_code_injection_inspect_regression.py
diff --git a/tests/appsec/iast/taint_sinks/test_code_injection_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_code_injection_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_code_injection_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_code_injection_redacted.py
diff --git a/tests/appsec/iast/taint_sinks/test_command_injection.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_command_injection.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_command_injection.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_command_injection.py
diff --git a/tests/appsec/iast/taint_sinks/test_command_injection_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_command_injection_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_command_injection_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_command_injection_redacted.py
diff --git a/tests/appsec/iast/taint_sinks/test_header_injection.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_header_injection.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_header_injection.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_header_injection.py
diff --git a/tests/appsec/iast/taint_sinks/test_header_injection_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_header_injection_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_header_injection_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_header_injection_redacted.py
diff --git a/tests/appsec/iast/taint_sinks/test_insecure_cookie.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_insecure_cookie.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_insecure_cookie.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_insecure_cookie.py
diff --git a/tests/appsec/iast/taint_sinks/test_path_traversal.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_path_traversal.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_path_traversal.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_path_traversal.py
diff --git a/tests/appsec/iast/taint_sinks/test_path_traversal_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_path_traversal_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_path_traversal_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_path_traversal_redacted.py
diff --git a/tests/appsec/iast/taint_sinks/test_query_string_redaction_sync.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_query_string_redaction_sync.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_query_string_redaction_sync.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_query_string_redaction_sync.py
diff --git a/tests/appsec/iast/taint_sinks/test_sql_injection.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_sql_injection.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_sql_injection.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_sql_injection.py
diff --git a/tests/appsec/iast/taint_sinks/test_sql_injection_dbapi.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_sql_injection_dbapi.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_sql_injection_dbapi.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_sql_injection_dbapi.py
diff --git a/tests/appsec/iast/taint_sinks/test_sql_injection_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_sql_injection_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_sql_injection_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_sql_injection_redacted.py
diff --git a/tests/appsec/iast/taint_sinks/test_ssrf.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_ssrf.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_ssrf.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_ssrf.py
diff --git a/tests/appsec/iast/taint_sinks/test_ssrf_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_ssrf_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_ssrf_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_ssrf_redacted.py
diff --git a/tests/appsec/iast/taint_sinks/test_stacktrace_leak.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_stacktrace_leak.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_stacktrace_leak.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_stacktrace_leak.py
diff --git a/tests/appsec/iast/taint_sinks/test_text_type_validation.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_text_type_validation.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_text_type_validation.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_text_type_validation.py
diff --git a/tests/appsec/iast/taint_sinks/test_untrusted_serialization.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_untrusted_serialization.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_untrusted_serialization.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_untrusted_serialization.py
diff --git a/tests/appsec/iast/taint_sinks/test_untrusted_serialization_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_untrusted_serialization_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_untrusted_serialization_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_untrusted_serialization_redacted.py
diff --git a/tests/appsec/iast/taint_sinks/test_unvalidated_redirect.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_unvalidated_redirect.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_unvalidated_redirect.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_unvalidated_redirect.py
diff --git a/tests/appsec/iast/taint_sinks/test_unvalidated_redirect_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_unvalidated_redirect_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_unvalidated_redirect_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_unvalidated_redirect_redacted.py
diff --git a/tests/appsec/iast/taint_sinks/test_vulnerability_detection.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_vulnerability_detection.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_vulnerability_detection.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_vulnerability_detection.py
diff --git a/tests/appsec/iast/taint_sinks/test_weak_cipher.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_weak_cipher.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_weak_cipher.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_weak_cipher.py
diff --git a/tests/appsec/iast/taint_sinks/test_weak_hash.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_weak_hash.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_weak_hash.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_weak_hash.py
diff --git a/tests/appsec/iast/taint_sinks/test_weak_randomness.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_weak_randomness.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_weak_randomness.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_weak_randomness.py
diff --git a/tests/appsec/iast/taint_sinks/test_xss.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_xss.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_xss.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_xss.py
diff --git a/tests/appsec/iast/taint_sinks/test_xss_redacted.py b/dd-trace-py/tests/appsec/iast/taint_sinks/test_xss_redacted.py
similarity index 100%
rename from tests/appsec/iast/taint_sinks/test_xss_redacted.py
rename to dd-trace-py/tests/appsec/iast/taint_sinks/test_xss_redacted.py
diff --git a/tests/appsec/iast/taint_tracking/__init__.py b/dd-trace-py/tests/appsec/iast/taint_tracking/__init__.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/__init__.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/__init__.py
diff --git a/tests/appsec/iast/taint_tracking/conftest.py b/dd-trace-py/tests/appsec/iast/taint_tracking/conftest.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/conftest.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/conftest.py
diff --git a/tests/appsec/iast/taint_tracking/test_anyio_thread_safety.py b/dd-trace-py/tests/appsec/iast/taint_tracking/test_anyio_thread_safety.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/test_anyio_thread_safety.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/test_anyio_thread_safety.py
diff --git a/tests/appsec/iast/taint_tracking/test_context.py b/dd-trace-py/tests/appsec/iast/taint_tracking/test_context.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/test_context.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/test_context.py
diff --git a/tests/appsec/iast/taint_tracking/test_initializer_thread_safety.py b/dd-trace-py/tests/appsec/iast/taint_tracking/test_initializer_thread_safety.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/test_initializer_thread_safety.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/test_initializer_thread_safety.py
diff --git a/tests/appsec/iast/taint_tracking/test_multiprocessing_tracer_iast_env.py b/dd-trace-py/tests/appsec/iast/taint_tracking/test_multiprocessing_tracer_iast_env.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/test_multiprocessing_tracer_iast_env.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/test_multiprocessing_tracer_iast_env.py
diff --git a/tests/appsec/iast/taint_tracking/test_native_taint_range.py b/dd-trace-py/tests/appsec/iast/taint_tracking/test_native_taint_range.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/test_native_taint_range.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/test_native_taint_range.py
diff --git a/tests/appsec/iast/taint_tracking/test_native_taint_source.py b/dd-trace-py/tests/appsec/iast/taint_tracking/test_native_taint_source.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/test_native_taint_source.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/test_native_taint_source.py
diff --git a/tests/appsec/iast/taint_tracking/test_taint_tracking.py b/dd-trace-py/tests/appsec/iast/taint_tracking/test_taint_tracking.py
similarity index 100%
rename from tests/appsec/iast/taint_tracking/test_taint_tracking.py
rename to dd-trace-py/tests/appsec/iast/taint_tracking/test_taint_tracking.py
diff --git a/tests/appsec/iast/test_env_var.py b/dd-trace-py/tests/appsec/iast/test_env_var.py
similarity index 100%
rename from tests/appsec/iast/test_env_var.py
rename to dd-trace-py/tests/appsec/iast/test_env_var.py
diff --git a/tests/appsec/iast/test_fork_handler_regression.py b/dd-trace-py/tests/appsec/iast/test_fork_handler_regression.py
similarity index 100%
rename from tests/appsec/iast/test_fork_handler_regression.py
rename to dd-trace-py/tests/appsec/iast/test_fork_handler_regression.py
diff --git a/tests/appsec/iast/test_grpc_iast.py b/dd-trace-py/tests/appsec/iast/test_grpc_iast.py
similarity index 100%
rename from tests/appsec/iast/test_grpc_iast.py
rename to dd-trace-py/tests/appsec/iast/test_grpc_iast.py
diff --git a/tests/appsec/iast/test_iast_propagation_path.py b/dd-trace-py/tests/appsec/iast/test_iast_propagation_path.py
similarity index 100%
rename from tests/appsec/iast/test_iast_propagation_path.py
rename to dd-trace-py/tests/appsec/iast/test_iast_propagation_path.py
diff --git a/tests/appsec/iast/test_json_tainting.py b/dd-trace-py/tests/appsec/iast/test_json_tainting.py
similarity index 100%
rename from tests/appsec/iast/test_json_tainting.py
rename to dd-trace-py/tests/appsec/iast/test_json_tainting.py
diff --git a/tests/appsec/iast/test_loader.py b/dd-trace-py/tests/appsec/iast/test_loader.py
similarity index 100%
rename from tests/appsec/iast/test_loader.py
rename to dd-trace-py/tests/appsec/iast/test_loader.py
diff --git a/tests/appsec/iast/test_multiprocessing_eval_integration.py b/dd-trace-py/tests/appsec/iast/test_multiprocessing_eval_integration.py
similarity index 100%
rename from tests/appsec/iast/test_multiprocessing_eval_integration.py
rename to dd-trace-py/tests/appsec/iast/test_multiprocessing_eval_integration.py
diff --git a/tests/appsec/iast/test_overhead_control_engine.py b/dd-trace-py/tests/appsec/iast/test_overhead_control_engine.py
similarity index 100%
rename from tests/appsec/iast/test_overhead_control_engine.py
rename to dd-trace-py/tests/appsec/iast/test_overhead_control_engine.py
diff --git a/tests/appsec/iast/test_patch_modules.py b/dd-trace-py/tests/appsec/iast/test_patch_modules.py
similarity index 100%
rename from tests/appsec/iast/test_patch_modules.py
rename to dd-trace-py/tests/appsec/iast/test_patch_modules.py
diff --git a/tests/appsec/iast/test_processor.py b/dd-trace-py/tests/appsec/iast/test_processor.py
similarity index 100%
rename from tests/appsec/iast/test_processor.py
rename to dd-trace-py/tests/appsec/iast/test_processor.py
diff --git a/tests/appsec/iast/test_product_inspect_regression.py b/dd-trace-py/tests/appsec/iast/test_product_inspect_regression.py
similarity index 100%
rename from tests/appsec/iast/test_product_inspect_regression.py
rename to dd-trace-py/tests/appsec/iast/test_product_inspect_regression.py
diff --git a/tests/appsec/iast/test_reporter.py b/dd-trace-py/tests/appsec/iast/test_reporter.py
similarity index 100%
rename from tests/appsec/iast/test_reporter.py
rename to dd-trace-py/tests/appsec/iast/test_reporter.py
diff --git a/tests/appsec/iast/test_safe_wrappers_and_initialization.py b/dd-trace-py/tests/appsec/iast/test_safe_wrappers_and_initialization.py
similarity index 100%
rename from tests/appsec/iast/test_safe_wrappers_and_initialization.py
rename to dd-trace-py/tests/appsec/iast/test_safe_wrappers_and_initialization.py
diff --git a/tests/appsec/iast/test_stacktrace.py b/dd-trace-py/tests/appsec/iast/test_stacktrace.py
similarity index 100%
rename from tests/appsec/iast/test_stacktrace.py
rename to dd-trace-py/tests/appsec/iast/test_stacktrace.py
diff --git a/tests/appsec/iast/test_taint_utils.py b/dd-trace-py/tests/appsec/iast/test_taint_utils.py
similarity index 100%
rename from tests/appsec/iast/test_taint_utils.py
rename to dd-trace-py/tests/appsec/iast/test_taint_utils.py
diff --git a/tests/appsec/iast/test_telemetry.py b/dd-trace-py/tests/appsec/iast/test_telemetry.py
similarity index 100%
rename from tests/appsec/iast/test_telemetry.py
rename to dd-trace-py/tests/appsec/iast/test_telemetry.py
diff --git a/tests/appsec/iast_aggregated_memcheck/__init__.py b/dd-trace-py/tests/appsec/iast_aggregated_memcheck/__init__.py
similarity index 100%
rename from tests/appsec/iast_aggregated_memcheck/__init__.py
rename to dd-trace-py/tests/appsec/iast_aggregated_memcheck/__init__.py
diff --git a/tests/appsec/iast_aggregated_memcheck/test_aggregated_memleaks.py b/dd-trace-py/tests/appsec/iast_aggregated_memcheck/test_aggregated_memleaks.py
similarity index 100%
rename from tests/appsec/iast_aggregated_memcheck/test_aggregated_memleaks.py
rename to dd-trace-py/tests/appsec/iast_aggregated_memcheck/test_aggregated_memleaks.py
diff --git a/tests/appsec/iast_memcheck/__init__.py b/dd-trace-py/tests/appsec/iast_memcheck/__init__.py
similarity index 100%
rename from tests/appsec/iast_memcheck/__init__.py
rename to dd-trace-py/tests/appsec/iast_memcheck/__init__.py
diff --git a/tests/appsec/iast_memcheck/conftest.py b/dd-trace-py/tests/appsec/iast_memcheck/conftest.py
similarity index 100%
rename from tests/appsec/iast_memcheck/conftest.py
rename to dd-trace-py/tests/appsec/iast_memcheck/conftest.py
diff --git a/tests/appsec/iast_memcheck/fixtures/__init__.py b/dd-trace-py/tests/appsec/iast_memcheck/fixtures/__init__.py
similarity index 100%
rename from tests/appsec/iast_memcheck/fixtures/__init__.py
rename to dd-trace-py/tests/appsec/iast_memcheck/fixtures/__init__.py
diff --git a/tests/appsec/iast_memcheck/fixtures/stacktrace.py b/dd-trace-py/tests/appsec/iast_memcheck/fixtures/stacktrace.py
similarity index 100%
rename from tests/appsec/iast_memcheck/fixtures/stacktrace.py
rename to dd-trace-py/tests/appsec/iast_memcheck/fixtures/stacktrace.py
diff --git a/tests/appsec/iast_memcheck/test_iast_mem_check.py b/dd-trace-py/tests/appsec/iast_memcheck/test_iast_mem_check.py
similarity index 100%
rename from tests/appsec/iast_memcheck/test_iast_mem_check.py
rename to dd-trace-py/tests/appsec/iast_memcheck/test_iast_mem_check.py
diff --git a/tests/appsec/iast_packages/__init__.py b/dd-trace-py/tests/appsec/iast_packages/__init__.py
similarity index 100%
rename from tests/appsec/iast_packages/__init__.py
rename to dd-trace-py/tests/appsec/iast_packages/__init__.py
diff --git a/tests/appsec/iast_packages/clonevirtualenv.py b/dd-trace-py/tests/appsec/iast_packages/clonevirtualenv.py
similarity index 100%
rename from tests/appsec/iast_packages/clonevirtualenv.py
rename to dd-trace-py/tests/appsec/iast_packages/clonevirtualenv.py
diff --git a/tests/appsec/iast_packages/conftest.py b/dd-trace-py/tests/appsec/iast_packages/conftest.py
similarity index 100%
rename from tests/appsec/iast_packages/conftest.py
rename to dd-trace-py/tests/appsec/iast_packages/conftest.py
diff --git a/tests/appsec/iast_packages/inside_env_runner.py b/dd-trace-py/tests/appsec/iast_packages/inside_env_runner.py
similarity index 100%
rename from tests/appsec/iast_packages/inside_env_runner.py
rename to dd-trace-py/tests/appsec/iast_packages/inside_env_runner.py
diff --git a/tests/appsec/iast_packages/packages/__init__.py b/dd-trace-py/tests/appsec/iast_packages/packages/__init__.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/__init__.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/__init__.py
diff --git a/tests/appsec/iast_packages/packages/pkg_aiohttp.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_aiohttp.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_aiohttp.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_aiohttp.py
diff --git a/tests/appsec/iast_packages/packages/pkg_aiosignal.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_aiosignal.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_aiosignal.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_aiosignal.py
diff --git a/tests/appsec/iast_packages/packages/pkg_annotated_types.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_annotated_types.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_annotated_types.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_annotated_types.py
diff --git a/tests/appsec/iast_packages/packages/pkg_asn1crypto.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_asn1crypto.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_asn1crypto.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_asn1crypto.py
diff --git a/tests/appsec/iast_packages/packages/pkg_attrs.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_attrs.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_attrs.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_attrs.py
diff --git a/tests/appsec/iast_packages/packages/pkg_babel.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_babel.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_babel.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_babel.py
diff --git a/tests/appsec/iast_packages/packages/pkg_beautifulsoup4.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_beautifulsoup4.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_beautifulsoup4.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_beautifulsoup4.py
diff --git a/tests/appsec/iast_packages/packages/pkg_cachetools.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_cachetools.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_cachetools.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_cachetools.py
diff --git a/tests/appsec/iast_packages/packages/pkg_certifi.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_certifi.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_certifi.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_certifi.py
diff --git a/tests/appsec/iast_packages/packages/pkg_cffi.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_cffi.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_cffi.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_cffi.py
diff --git a/tests/appsec/iast_packages/packages/pkg_chartset_normalizer.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_chartset_normalizer.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_chartset_normalizer.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_chartset_normalizer.py
diff --git a/tests/appsec/iast_packages/packages/pkg_click.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_click.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_click.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_click.py
diff --git a/tests/appsec/iast_packages/packages/pkg_cryptography.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_cryptography.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_cryptography.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_cryptography.py
diff --git a/tests/appsec/iast_packages/packages/pkg_decorator.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_decorator.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_decorator.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_decorator.py
diff --git a/tests/appsec/iast_packages/packages/pkg_distlib.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_distlib.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_distlib.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_distlib.py
diff --git a/tests/appsec/iast_packages/packages/pkg_docutils.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_docutils.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_docutils.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_docutils.py
diff --git a/tests/appsec/iast_packages/packages/pkg_exceptiongroup.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_exceptiongroup.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_exceptiongroup.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_exceptiongroup.py
diff --git a/tests/appsec/iast_packages/packages/pkg_filelock.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_filelock.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_filelock.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_filelock.py
diff --git a/tests/appsec/iast_packages/packages/pkg_frozenlist.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_frozenlist.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_frozenlist.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_frozenlist.py
diff --git a/tests/appsec/iast_packages/packages/pkg_fsspec.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_fsspec.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_fsspec.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_fsspec.py
diff --git a/tests/appsec/iast_packages/packages/pkg_google_api_core.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_google_api_core.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_google_api_core.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_google_api_core.py
diff --git a/tests/appsec/iast_packages/packages/pkg_google_api_python_client.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_google_api_python_client.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_google_api_python_client.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_google_api_python_client.py
diff --git a/tests/appsec/iast_packages/packages/pkg_google_auth.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_google_auth.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_google_auth.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_google_auth.py
diff --git a/tests/appsec/iast_packages/packages/pkg_idna.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_idna.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_idna.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_idna.py
diff --git a/tests/appsec/iast_packages/packages/pkg_importlib_resources.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_importlib_resources.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_importlib_resources.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_importlib_resources.py
diff --git a/tests/appsec/iast_packages/packages/pkg_iniconfig.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_iniconfig.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_iniconfig.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_iniconfig.py
diff --git a/tests/appsec/iast_packages/packages/pkg_isodate.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_isodate.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_isodate.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_isodate.py
diff --git a/tests/appsec/iast_packages/packages/pkg_itsdangerous.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_itsdangerous.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_itsdangerous.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_itsdangerous.py
diff --git a/tests/appsec/iast_packages/packages/pkg_jinja2.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_jinja2.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_jinja2.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_jinja2.py
diff --git a/tests/appsec/iast_packages/packages/pkg_jmespath.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_jmespath.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_jmespath.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_jmespath.py
diff --git a/tests/appsec/iast_packages/packages/pkg_jsonschema.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_jsonschema.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_jsonschema.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_jsonschema.py
diff --git a/tests/appsec/iast_packages/packages/pkg_lxml.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_lxml.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_lxml.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_lxml.py
diff --git a/tests/appsec/iast_packages/packages/pkg_markupsafe.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_markupsafe.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_markupsafe.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_markupsafe.py
diff --git a/tests/appsec/iast_packages/packages/pkg_more_itertools.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_more_itertools.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_more_itertools.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_more_itertools.py
diff --git a/tests/appsec/iast_packages/packages/pkg_moto.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_moto.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_moto.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_moto.py
diff --git a/tests/appsec/iast_packages/packages/pkg_multidict.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_multidict.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_multidict.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_multidict.py
diff --git a/tests/appsec/iast_packages/packages/pkg_numpy.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_numpy.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_numpy.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_numpy.py
diff --git a/tests/appsec/iast_packages/packages/pkg_oauthlib.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_oauthlib.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_oauthlib.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_oauthlib.py
diff --git a/tests/appsec/iast_packages/packages/pkg_openpyxl.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_openpyxl.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_openpyxl.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_openpyxl.py
diff --git a/tests/appsec/iast_packages/packages/pkg_packaging.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_packaging.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_packaging.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_packaging.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pandas.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pandas.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pandas.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pandas.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pillow.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pillow.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pillow.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pillow.py
diff --git a/tests/appsec/iast_packages/packages/pkg_platformdirs.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_platformdirs.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_platformdirs.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_platformdirs.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pluggy.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pluggy.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pluggy.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pluggy.py
diff --git a/tests/appsec/iast_packages/packages/pkg_psutil.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_psutil.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_psutil.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_psutil.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pyarrow.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyarrow.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pyarrow.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyarrow.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pyasn1.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyasn1.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pyasn1.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyasn1.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pycparser.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pycparser.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pycparser.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pycparser.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pydantic.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pydantic.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pydantic.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pydantic.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pygments.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pygments.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pygments.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pygments.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pyjwt.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyjwt.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pyjwt.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyjwt.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pynacl.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pynacl.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pynacl.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pynacl.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pyopenssl.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyopenssl.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pyopenssl.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyopenssl.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pyparsing.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyparsing.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pyparsing.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyparsing.py
diff --git a/tests/appsec/iast_packages/packages/pkg_python_dateutil.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_python_dateutil.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_python_dateutil.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_python_dateutil.py
diff --git a/tests/appsec/iast_packages/packages/pkg_python_multipart.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_python_multipart.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_python_multipart.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_python_multipart.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pytz.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pytz.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pytz.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pytz.py
diff --git a/tests/appsec/iast_packages/packages/pkg_pyyaml.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyyaml.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_pyyaml.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_pyyaml.py
diff --git a/tests/appsec/iast_packages/packages/pkg_requests.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_requests.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_requests.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_requests.py
diff --git a/tests/appsec/iast_packages/packages/pkg_requests_toolbelt.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_requests_toolbelt.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_requests_toolbelt.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_requests_toolbelt.py
diff --git a/tests/appsec/iast_packages/packages/pkg_rsa.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_rsa.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_rsa.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_rsa.py
diff --git a/tests/appsec/iast_packages/packages/pkg_s3fs.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_s3fs.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_s3fs.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_s3fs.py
diff --git a/tests/appsec/iast_packages/packages/pkg_s3transfer.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_s3transfer.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_s3transfer.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_s3transfer.py
diff --git a/tests/appsec/iast_packages/packages/pkg_scipy.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_scipy.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_scipy.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_scipy.py
diff --git a/tests/appsec/iast_packages/packages/pkg_setuptools.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_setuptools.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_setuptools.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_setuptools.py
diff --git a/tests/appsec/iast_packages/packages/pkg_six.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_six.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_six.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_six.py
diff --git a/tests/appsec/iast_packages/packages/pkg_soupsieve.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_soupsieve.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_soupsieve.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_soupsieve.py
diff --git a/tests/appsec/iast_packages/packages/pkg_sqlalchemy.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_sqlalchemy.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_sqlalchemy.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_sqlalchemy.py
diff --git a/tests/appsec/iast_packages/packages/pkg_template.py.tpl b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_template.py.tpl
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_template.py.tpl
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_template.py.tpl
diff --git a/tests/appsec/iast_packages/packages/pkg_tomli.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_tomli.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_tomli.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_tomli.py
diff --git a/tests/appsec/iast_packages/packages/pkg_tomlkit.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_tomlkit.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_tomlkit.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_tomlkit.py
diff --git a/tests/appsec/iast_packages/packages/pkg_urllib3.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_urllib3.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_urllib3.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_urllib3.py
diff --git a/tests/appsec/iast_packages/packages/pkg_virtualenv.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_virtualenv.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_virtualenv.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_virtualenv.py
diff --git a/tests/appsec/iast_packages/packages/pkg_werkzeug.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_werkzeug.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_werkzeug.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_werkzeug.py
diff --git a/tests/appsec/iast_packages/packages/pkg_wrapt.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_wrapt.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_wrapt.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_wrapt.py
diff --git a/tests/appsec/iast_packages/packages/pkg_yarl.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_yarl.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_yarl.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_yarl.py
diff --git a/tests/appsec/iast_packages/packages/pkg_zipp.py b/dd-trace-py/tests/appsec/iast_packages/packages/pkg_zipp.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/pkg_zipp.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/pkg_zipp.py
diff --git a/tests/appsec/iast_packages/packages/utils.py b/dd-trace-py/tests/appsec/iast_packages/packages/utils.py
similarity index 100%
rename from tests/appsec/iast_packages/packages/utils.py
rename to dd-trace-py/tests/appsec/iast_packages/packages/utils.py
diff --git a/tests/appsec/iast_packages/test_packages.py b/dd-trace-py/tests/appsec/iast_packages/test_packages.py
similarity index 100%
rename from tests/appsec/iast_packages/test_packages.py
rename to dd-trace-py/tests/appsec/iast_packages/test_packages.py
diff --git a/tests/appsec/iast_tdd_propagation/flask_orm_app.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/flask_orm_app.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/flask_orm_app.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/flask_orm_app.py
diff --git a/tests/appsec/iast_tdd_propagation/flask_propagation_app.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/flask_propagation_app.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/flask_propagation_app.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/flask_propagation_app.py
diff --git a/tests/appsec/iast_tdd_propagation/flask_propagation_views.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/flask_propagation_views.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/flask_propagation_views.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/flask_propagation_views.py
diff --git a/tests/appsec/iast_tdd_propagation/flask_taint_sinks_app.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/flask_taint_sinks_app.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/flask_taint_sinks_app.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/flask_taint_sinks_app.py
diff --git a/tests/appsec/iast_tdd_propagation/flask_taint_sinks_views.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/flask_taint_sinks_views.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/flask_taint_sinks_views.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/flask_taint_sinks_views.py
diff --git a/tests/appsec/iast_tdd_propagation/peewee_impl.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/peewee_impl.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/peewee_impl.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/peewee_impl.py
diff --git a/tests/appsec/iast_tdd_propagation/pony_impl.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/pony_impl.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/pony_impl.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/pony_impl.py
diff --git a/tests/appsec/iast_tdd_propagation/sqlalchemy_impl.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/sqlalchemy_impl.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/sqlalchemy_impl.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/sqlalchemy_impl.py
diff --git a/tests/appsec/iast_tdd_propagation/sqlite_impl.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/sqlite_impl.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/sqlite_impl.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/sqlite_impl.py
diff --git a/tests/appsec/iast_tdd_propagation/sqliteframe_impl.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/sqliteframe_impl.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/sqliteframe_impl.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/sqliteframe_impl.py
diff --git a/tests/appsec/iast_tdd_propagation/test_flask.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/test_flask.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/test_flask.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/test_flask.py
diff --git a/tests/appsec/iast_tdd_propagation/tortoise_impl.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/tortoise_impl.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/tortoise_impl.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/tortoise_impl.py
diff --git a/tests/appsec/iast_tdd_propagation/tortoise_models.py b/dd-trace-py/tests/appsec/iast_tdd_propagation/tortoise_models.py
similarity index 100%
rename from tests/appsec/iast_tdd_propagation/tortoise_models.py
rename to dd-trace-py/tests/appsec/iast_tdd_propagation/tortoise_models.py
diff --git a/tests/appsec/integrations/__init__.py b/dd-trace-py/tests/appsec/integrations/__init__.py
similarity index 100%
rename from tests/appsec/integrations/__init__.py
rename to dd-trace-py/tests/appsec/integrations/__init__.py
diff --git a/tests/appsec/integrations/conftest.py b/dd-trace-py/tests/appsec/integrations/conftest.py
similarity index 100%
rename from tests/appsec/integrations/conftest.py
rename to dd-trace-py/tests/appsec/integrations/conftest.py
diff --git a/tests/appsec/integrations/django_tests/__init__.py b/dd-trace-py/tests/appsec/integrations/django_tests/__init__.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/__init__.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/__init__.py
diff --git a/tests/appsec/integrations/django_tests/conftest.py b/dd-trace-py/tests/appsec/integrations/django_tests/conftest.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/conftest.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/conftest.py
diff --git a/tests/appsec/integrations/django_tests/django_app/__init__.py b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/__init__.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/__init__.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/__init__.py
diff --git a/tests/appsec/integrations/django_tests/django_app/manage.py b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/manage.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/manage.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/manage.py
diff --git a/tests/appsec/integrations/django_tests/django_app/settings.py b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/settings.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/settings.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/settings.py
diff --git a/tests/appsec/integrations/django_tests/django_app/templates/index.html b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/templates/index.html
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/templates/index.html
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/templates/index.html
diff --git a/tests/appsec/integrations/django_tests/django_app/templates/index_autoescape.html b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/templates/index_autoescape.html
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/templates/index_autoescape.html
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/templates/index_autoescape.html
diff --git a/tests/appsec/integrations/django_tests/django_app/templates/index_safe.html b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/templates/index_safe.html
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/templates/index_safe.html
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/templates/index_safe.html
diff --git a/tests/appsec/integrations/django_tests/django_app/urls.py b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/urls.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/urls.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/urls.py
diff --git a/tests/appsec/integrations/django_tests/django_app/views.py b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/views.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/views.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/views.py
diff --git a/tests/appsec/integrations/django_tests/django_app/wsgi.py b/dd-trace-py/tests/appsec/integrations/django_tests/django_app/wsgi.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/django_app/wsgi.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/django_app/wsgi.py
diff --git a/tests/appsec/integrations/django_tests/test_appsec_django.py b/dd-trace-py/tests/appsec/integrations/django_tests/test_appsec_django.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/test_appsec_django.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/test_appsec_django.py
diff --git a/tests/appsec/integrations/django_tests/test_iast_django.py b/dd-trace-py/tests/appsec/integrations/django_tests/test_iast_django.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/test_iast_django.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/test_iast_django.py
diff --git a/tests/appsec/integrations/django_tests/test_iast_django_testagent.py b/dd-trace-py/tests/appsec/integrations/django_tests/test_iast_django_testagent.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/test_iast_django_testagent.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/test_iast_django_testagent.py
diff --git a/tests/appsec/integrations/django_tests/utils.py b/dd-trace-py/tests/appsec/integrations/django_tests/utils.py
similarity index 100%
rename from tests/appsec/integrations/django_tests/utils.py
rename to dd-trace-py/tests/appsec/integrations/django_tests/utils.py
diff --git a/tests/appsec/integrations/fastapi_tests/__init__.py b/dd-trace-py/tests/appsec/integrations/fastapi_tests/__init__.py
similarity index 100%
rename from tests/appsec/integrations/fastapi_tests/__init__.py
rename to dd-trace-py/tests/appsec/integrations/fastapi_tests/__init__.py
diff --git a/tests/appsec/integrations/fastapi_tests/app.py b/dd-trace-py/tests/appsec/integrations/fastapi_tests/app.py
similarity index 100%
rename from tests/appsec/integrations/fastapi_tests/app.py
rename to dd-trace-py/tests/appsec/integrations/fastapi_tests/app.py
diff --git a/tests/appsec/integrations/fastapi_tests/conftest.py b/dd-trace-py/tests/appsec/integrations/fastapi_tests/conftest.py
similarity index 100%
rename from tests/appsec/integrations/fastapi_tests/conftest.py
rename to dd-trace-py/tests/appsec/integrations/fastapi_tests/conftest.py
diff --git a/tests/appsec/integrations/fastapi_tests/mcp_app.py b/dd-trace-py/tests/appsec/integrations/fastapi_tests/mcp_app.py
similarity index 100%
rename from tests/appsec/integrations/fastapi_tests/mcp_app.py
rename to dd-trace-py/tests/appsec/integrations/fastapi_tests/mcp_app.py
diff --git a/tests/appsec/integrations/fastapi_tests/test_fastapi_appsec.py b/dd-trace-py/tests/appsec/integrations/fastapi_tests/test_fastapi_appsec.py
similarity index 100%
rename from tests/appsec/integrations/fastapi_tests/test_fastapi_appsec.py
rename to dd-trace-py/tests/appsec/integrations/fastapi_tests/test_fastapi_appsec.py
diff --git a/tests/appsec/integrations/fastapi_tests/test_fastapi_appsec_iast.py b/dd-trace-py/tests/appsec/integrations/fastapi_tests/test_fastapi_appsec_iast.py
similarity index 100%
rename from tests/appsec/integrations/fastapi_tests/test_fastapi_appsec_iast.py
rename to dd-trace-py/tests/appsec/integrations/fastapi_tests/test_fastapi_appsec_iast.py
diff --git a/tests/appsec/integrations/fastapi_tests/test_iast_fastapi_testagent.py b/dd-trace-py/tests/appsec/integrations/fastapi_tests/test_iast_fastapi_testagent.py
similarity index 100%
rename from tests/appsec/integrations/fastapi_tests/test_iast_fastapi_testagent.py
rename to dd-trace-py/tests/appsec/integrations/fastapi_tests/test_iast_fastapi_testagent.py
diff --git a/tests/appsec/integrations/fastapi_tests/test_iast_mcp_testagent.py b/dd-trace-py/tests/appsec/integrations/fastapi_tests/test_iast_mcp_testagent.py
similarity index 100%
rename from tests/appsec/integrations/fastapi_tests/test_iast_mcp_testagent.py
rename to dd-trace-py/tests/appsec/integrations/fastapi_tests/test_iast_mcp_testagent.py
diff --git a/tests/appsec/integrations/fixtures/__init__.py b/dd-trace-py/tests/appsec/integrations/fixtures/__init__.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/__init__.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/__init__.py
diff --git a/tests/appsec/integrations/fixtures/patch_babel.py b/dd-trace-py/tests/appsec/integrations/fixtures/patch_babel.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/patch_babel.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/patch_babel.py
diff --git a/tests/appsec/integrations/fixtures/patch_gevent.py b/dd-trace-py/tests/appsec/integrations/fixtures/patch_gevent.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/patch_gevent.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/patch_gevent.py
diff --git a/tests/appsec/integrations/fixtures/patch_psycopg2.py b/dd-trace-py/tests/appsec/integrations/fixtures/patch_psycopg2.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/patch_psycopg2.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/patch_psycopg2.py
diff --git a/tests/appsec/integrations/fixtures/patch_psycopg3.py b/dd-trace-py/tests/appsec/integrations/fixtures/patch_psycopg3.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/patch_psycopg3.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/patch_psycopg3.py
diff --git a/tests/appsec/integrations/fixtures/patch_sanitizers.py b/dd-trace-py/tests/appsec/integrations/fixtures/patch_sanitizers.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/patch_sanitizers.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/patch_sanitizers.py
diff --git a/tests/appsec/integrations/fixtures/patch_socket.py b/dd-trace-py/tests/appsec/integrations/fixtures/patch_socket.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/patch_socket.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/patch_socket.py
diff --git a/tests/appsec/integrations/fixtures/patch_urllib3.py b/dd-trace-py/tests/appsec/integrations/fixtures/patch_urllib3.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/patch_urllib3.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/patch_urllib3.py
diff --git a/tests/appsec/integrations/fixtures/sql_injection_mysqldb.py b/dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_mysqldb.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/sql_injection_mysqldb.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_mysqldb.py
diff --git a/tests/appsec/integrations/fixtures/sql_injection_psycopg2.py b/dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_psycopg2.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/sql_injection_psycopg2.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_psycopg2.py
diff --git a/tests/appsec/integrations/fixtures/sql_injection_psycopg3.py b/dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_psycopg3.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/sql_injection_psycopg3.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_psycopg3.py
diff --git a/tests/appsec/integrations/fixtures/sql_injection_pymysql.py b/dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_pymysql.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/sql_injection_pymysql.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_pymysql.py
diff --git a/tests/appsec/integrations/fixtures/sql_injection_sqlalchemy.py b/dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_sqlalchemy.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/sql_injection_sqlalchemy.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_sqlalchemy.py
diff --git a/tests/appsec/integrations/fixtures/sql_injection_sqlite3.py b/dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_sqlite3.py
similarity index 100%
rename from tests/appsec/integrations/fixtures/sql_injection_sqlite3.py
rename to dd-trace-py/tests/appsec/integrations/fixtures/sql_injection_sqlite3.py
diff --git a/tests/appsec/integrations/flask_tests/__init__.py b/dd-trace-py/tests/appsec/integrations/flask_tests/__init__.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/__init__.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/__init__.py
diff --git a/tests/appsec/integrations/flask_tests/module_with_import_errors.py b/dd-trace-py/tests/appsec/integrations/flask_tests/module_with_import_errors.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/module_with_import_errors.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/module_with_import_errors.py
diff --git a/tests/appsec/integrations/flask_tests/test_appsec_flask.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_appsec_flask.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_appsec_flask.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_appsec_flask.py
diff --git a/tests/appsec/integrations/flask_tests/test_appsec_flask_telemetry.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_appsec_flask_telemetry.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_appsec_flask_telemetry.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_appsec_flask_telemetry.py
diff --git a/tests/appsec/integrations/flask_tests/test_flask_remoteconfig.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_flask_remoteconfig.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_flask_remoteconfig.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_flask_remoteconfig.py
diff --git a/tests/appsec/integrations/flask_tests/test_gunicorn_handlers.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_gunicorn_handlers.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_gunicorn_handlers.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_gunicorn_handlers.py
diff --git a/tests/appsec/integrations/flask_tests/test_iast_flask.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_iast_flask.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask.py
diff --git a/tests/appsec/integrations/flask_tests/test_iast_flask_entrypoint_iast_patches.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask_entrypoint_iast_patches.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_iast_flask_entrypoint_iast_patches.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask_entrypoint_iast_patches.py
diff --git a/tests/appsec/integrations/flask_tests/test_iast_flask_patching.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask_patching.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_iast_flask_patching.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask_patching.py
diff --git a/tests/appsec/integrations/flask_tests/test_iast_flask_telemetry.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask_telemetry.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_iast_flask_telemetry.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask_telemetry.py
diff --git a/tests/appsec/integrations/flask_tests/test_iast_flask_testagent.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask_testagent.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_iast_flask_testagent.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_iast_flask_testagent.py
diff --git a/tests/appsec/integrations/flask_tests/test_sca_flask_testagent.py b/dd-trace-py/tests/appsec/integrations/flask_tests/test_sca_flask_testagent.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/test_sca_flask_testagent.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/test_sca_flask_testagent.py
diff --git a/tests/appsec/integrations/flask_tests/utils.py b/dd-trace-py/tests/appsec/integrations/flask_tests/utils.py
similarity index 100%
rename from tests/appsec/integrations/flask_tests/utils.py
rename to dd-trace-py/tests/appsec/integrations/flask_tests/utils.py
diff --git a/tests/appsec/integrations/langchain_tests/conftest.py b/dd-trace-py/tests/appsec/integrations/langchain_tests/conftest.py
similarity index 100%
rename from tests/appsec/integrations/langchain_tests/conftest.py
rename to dd-trace-py/tests/appsec/integrations/langchain_tests/conftest.py
diff --git a/tests/appsec/integrations/langchain_tests/test_iast_langchain.py b/dd-trace-py/tests/appsec/integrations/langchain_tests/test_iast_langchain.py
similarity index 100%
rename from tests/appsec/integrations/langchain_tests/test_iast_langchain.py
rename to dd-trace-py/tests/appsec/integrations/langchain_tests/test_iast_langchain.py
diff --git a/tests/appsec/integrations/packages_tests/__init__.py b/dd-trace-py/tests/appsec/integrations/packages_tests/__init__.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/__init__.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/__init__.py
diff --git a/tests/appsec/integrations/packages_tests/conftest.py b/dd-trace-py/tests/appsec/integrations/packages_tests/conftest.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/conftest.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/conftest.py
diff --git a/tests/appsec/integrations/packages_tests/db_utils.py b/dd-trace-py/tests/appsec/integrations/packages_tests/db_utils.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/db_utils.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/db_utils.py
diff --git a/tests/appsec/integrations/packages_tests/test_ast_patching.py b/dd-trace-py/tests/appsec/integrations/packages_tests/test_ast_patching.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/test_ast_patching.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/test_ast_patching.py
diff --git a/tests/appsec/integrations/packages_tests/test_babel.py b/dd-trace-py/tests/appsec/integrations/packages_tests/test_babel.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/test_babel.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/test_babel.py
diff --git a/tests/appsec/integrations/packages_tests/test_iast_psycopg2_extensions.py b/dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_psycopg2_extensions.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/test_iast_psycopg2_extensions.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_psycopg2_extensions.py
diff --git a/tests/appsec/integrations/packages_tests/test_iast_psycopg3_extensions.py b/dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_psycopg3_extensions.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/test_iast_psycopg3_extensions.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_psycopg3_extensions.py
diff --git a/tests/appsec/integrations/packages_tests/test_iast_sanitizers.py b/dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_sanitizers.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/test_iast_sanitizers.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_sanitizers.py
diff --git a/tests/appsec/integrations/packages_tests/test_iast_shutdown_paths.py b/dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_shutdown_paths.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/test_iast_shutdown_paths.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_shutdown_paths.py
diff --git a/tests/appsec/integrations/packages_tests/test_iast_sql_injection.py b/dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_sql_injection.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/test_iast_sql_injection.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_sql_injection.py
diff --git a/tests/appsec/integrations/packages_tests/test_iast_telemetry.py b/dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_telemetry.py
similarity index 100%
rename from tests/appsec/integrations/packages_tests/test_iast_telemetry.py
rename to dd-trace-py/tests/appsec/integrations/packages_tests/test_iast_telemetry.py
diff --git a/tests/appsec/integrations/pygoat_tests/__init__.py b/dd-trace-py/tests/appsec/integrations/pygoat_tests/__init__.py
similarity index 100%
rename from tests/appsec/integrations/pygoat_tests/__init__.py
rename to dd-trace-py/tests/appsec/integrations/pygoat_tests/__init__.py
diff --git a/tests/appsec/integrations/pygoat_tests/fixtures/auth_user.json b/dd-trace-py/tests/appsec/integrations/pygoat_tests/fixtures/auth_user.json
similarity index 100%
rename from tests/appsec/integrations/pygoat_tests/fixtures/auth_user.json
rename to dd-trace-py/tests/appsec/integrations/pygoat_tests/fixtures/auth_user.json
diff --git a/tests/appsec/integrations/pygoat_tests/fixtures/introduction_login.json b/dd-trace-py/tests/appsec/integrations/pygoat_tests/fixtures/introduction_login.json
similarity index 100%
rename from tests/appsec/integrations/pygoat_tests/fixtures/introduction_login.json
rename to dd-trace-py/tests/appsec/integrations/pygoat_tests/fixtures/introduction_login.json
diff --git a/tests/appsec/integrations/pygoat_tests/fixtures/pygoat.xz b/dd-trace-py/tests/appsec/integrations/pygoat_tests/fixtures/pygoat.xz
similarity index 100%
rename from tests/appsec/integrations/pygoat_tests/fixtures/pygoat.xz
rename to dd-trace-py/tests/appsec/integrations/pygoat_tests/fixtures/pygoat.xz
diff --git a/tests/appsec/integrations/pygoat_tests/fixtures/remake_pygoat_fixture.sh b/dd-trace-py/tests/appsec/integrations/pygoat_tests/fixtures/remake_pygoat_fixture.sh
similarity index 100%
rename from tests/appsec/integrations/pygoat_tests/fixtures/remake_pygoat_fixture.sh
rename to dd-trace-py/tests/appsec/integrations/pygoat_tests/fixtures/remake_pygoat_fixture.sh
diff --git a/tests/appsec/integrations/pygoat_tests/run_pygoat.sh b/dd-trace-py/tests/appsec/integrations/pygoat_tests/run_pygoat.sh
similarity index 100%
rename from tests/appsec/integrations/pygoat_tests/run_pygoat.sh
rename to dd-trace-py/tests/appsec/integrations/pygoat_tests/run_pygoat.sh
diff --git a/tests/appsec/integrations/pygoat_tests/test_pygoat.py b/dd-trace-py/tests/appsec/integrations/pygoat_tests/test_pygoat.py
similarity index 100%
rename from tests/appsec/integrations/pygoat_tests/test_pygoat.py
rename to dd-trace-py/tests/appsec/integrations/pygoat_tests/test_pygoat.py
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/coupon_create.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/coupon_create.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/coupon_create.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/coupon_create.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/customer_create.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/customer_create.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/customer_create.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/customer_create.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/payment_method_create.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/payment_method_create.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/payment_method_create.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/payment_method_create.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/promotion_code_create.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/promotion_code_create.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/promotion_code_create.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/promotion_code_create.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_coupon.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_coupon.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_coupon.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_coupon.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_expanded_coupon.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_expanded_coupon.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_expanded_coupon.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_expanded_coupon.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_expanded_promotion_code.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_expanded_promotion_code.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_expanded_promotion_code.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_expanded_promotion_code.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_promotion_code.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_promotion_code.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_promotion_code.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_create_promotion_code.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_ignore_setup_setup.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_ignore_setup_setup.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_ignore_setup_setup.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_ignore_setup_setup.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_ignore_setup_subscription.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_ignore_setup_subscription.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_ignore_setup_subscription.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_checkout_session_ignore_setup_subscription.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_payment_intent_create.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_payment_intent_create.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/test_stripe_payment_intent_create.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_payment_intent_create.yaml
diff --git a/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_payment_intent_create_expanded.yaml b/dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_payment_intent_create_expanded.yaml
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/cassettes/test_stripe_payment_intent_create_expanded.yaml
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/cassettes/test_stripe_payment_intent_create_expanded.yaml
diff --git a/tests/appsec/integrations/stripe_tests/rules-stripe.json b/dd-trace-py/tests/appsec/integrations/stripe_tests/rules-stripe.json
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/rules-stripe.json
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/rules-stripe.json
diff --git a/tests/appsec/integrations/stripe_tests/test_stripe.py b/dd-trace-py/tests/appsec/integrations/stripe_tests/test_stripe.py
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/test_stripe.py
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/test_stripe.py
diff --git a/tests/appsec/integrations/stripe_tests/webhooks/payment_canceled.json b/dd-trace-py/tests/appsec/integrations/stripe_tests/webhooks/payment_canceled.json
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/webhooks/payment_canceled.json
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/webhooks/payment_canceled.json
diff --git a/tests/appsec/integrations/stripe_tests/webhooks/payment_failed.json b/dd-trace-py/tests/appsec/integrations/stripe_tests/webhooks/payment_failed.json
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/webhooks/payment_failed.json
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/webhooks/payment_failed.json
diff --git a/tests/appsec/integrations/stripe_tests/webhooks/payment_succeeded.json b/dd-trace-py/tests/appsec/integrations/stripe_tests/webhooks/payment_succeeded.json
similarity index 100%
rename from tests/appsec/integrations/stripe_tests/webhooks/payment_succeeded.json
rename to dd-trace-py/tests/appsec/integrations/stripe_tests/webhooks/payment_succeeded.json
diff --git a/tests/appsec/integrations/utils_testagent.py b/dd-trace-py/tests/appsec/integrations/utils_testagent.py
similarity index 100%
rename from tests/appsec/integrations/utils_testagent.py
rename to dd-trace-py/tests/appsec/integrations/utils_testagent.py
diff --git a/tests/appsec/rules.py b/dd-trace-py/tests/appsec/rules.py
similarity index 100%
rename from tests/appsec/rules.py
rename to dd-trace-py/tests/appsec/rules.py
diff --git a/tests/appsec/sca/__init__.py b/dd-trace-py/tests/appsec/sca/__init__.py
similarity index 100%
rename from tests/appsec/sca/__init__.py
rename to dd-trace-py/tests/appsec/sca/__init__.py
diff --git a/tests/appsec/sca/test_cve_loader.py b/dd-trace-py/tests/appsec/sca/test_cve_loader.py
similarity index 100%
rename from tests/appsec/sca/test_cve_loader.py
rename to dd-trace-py/tests/appsec/sca/test_cve_loader.py
diff --git a/tests/appsec/sca/test_instrumenter.py b/dd-trace-py/tests/appsec/sca/test_instrumenter.py
similarity index 100%
rename from tests/appsec/sca/test_instrumenter.py
rename to dd-trace-py/tests/appsec/sca/test_instrumenter.py
diff --git a/tests/appsec/sca/test_registry.py b/dd-trace-py/tests/appsec/sca/test_registry.py
similarity index 100%
rename from tests/appsec/sca/test_registry.py
rename to dd-trace-py/tests/appsec/sca/test_registry.py
diff --git a/tests/appsec/sca/test_resolver.py b/dd-trace-py/tests/appsec/sca/test_resolver.py
similarity index 100%
rename from tests/appsec/sca/test_resolver.py
rename to dd-trace-py/tests/appsec/sca/test_resolver.py
diff --git a/tests/appsec/suitespec.yml b/dd-trace-py/tests/appsec/suitespec.yml
similarity index 100%
rename from tests/appsec/suitespec.yml
rename to dd-trace-py/tests/appsec/suitespec.yml
diff --git a/tests/appsec/utils.py b/dd-trace-py/tests/appsec/utils.py
similarity index 100%
rename from tests/appsec/utils.py
rename to dd-trace-py/tests/appsec/utils.py
diff --git a/tests/cache/__init__.py b/dd-trace-py/tests/cache/__init__.py
similarity index 100%
rename from tests/cache/__init__.py
rename to dd-trace-py/tests/cache/__init__.py
diff --git a/tests/cache/conftest.py b/dd-trace-py/tests/cache/conftest.py
similarity index 100%
rename from tests/cache/conftest.py
rename to dd-trace-py/tests/cache/conftest.py
diff --git a/tests/cassettes/anthropic/anthropic_v1_messages_beta_true_post_1913e018.yaml b/dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_beta_true_post_1913e018.yaml
similarity index 100%
rename from tests/cassettes/anthropic/anthropic_v1_messages_beta_true_post_1913e018.yaml
rename to dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_beta_true_post_1913e018.yaml
diff --git a/tests/cassettes/anthropic/anthropic_v1_messages_beta_true_post_7a2e5960.yaml b/dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_beta_true_post_7a2e5960.yaml
similarity index 100%
rename from tests/cassettes/anthropic/anthropic_v1_messages_beta_true_post_7a2e5960.yaml
rename to dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_beta_true_post_7a2e5960.yaml
diff --git a/tests/cassettes/anthropic/anthropic_v1_messages_post_28bbec95.json b/dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_28bbec95.json
similarity index 100%
rename from tests/cassettes/anthropic/anthropic_v1_messages_post_28bbec95.json
rename to dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_28bbec95.json
diff --git a/tests/cassettes/anthropic/anthropic_v1_messages_post_4ff9791e.json b/dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_4ff9791e.json
similarity index 100%
rename from tests/cassettes/anthropic/anthropic_v1_messages_post_4ff9791e.json
rename to dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_4ff9791e.json
diff --git a/tests/cassettes/anthropic/anthropic_v1_messages_post_a6302ed3.yaml b/dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_a6302ed3.yaml
similarity index 100%
rename from tests/cassettes/anthropic/anthropic_v1_messages_post_a6302ed3.yaml
rename to dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_a6302ed3.yaml
diff --git a/tests/cassettes/anthropic/anthropic_v1_messages_post_c247d326.json b/dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_c247d326.json
similarity index 100%
rename from tests/cassettes/anthropic/anthropic_v1_messages_post_c247d326.json
rename to dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_c247d326.json
diff --git a/tests/cassettes/anthropic/anthropic_v1_messages_post_d65e09ee.yaml b/dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_d65e09ee.yaml
similarity index 100%
rename from tests/cassettes/anthropic/anthropic_v1_messages_post_d65e09ee.yaml
rename to dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_d65e09ee.yaml
diff --git a/tests/cassettes/anthropic/anthropic_v1_messages_post_ff6be522.json b/dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_ff6be522.json
similarity index 100%
rename from tests/cassettes/anthropic/anthropic_v1_messages_post_ff6be522.json
rename to dd-trace-py/tests/cassettes/anthropic/anthropic_v1_messages_post_ff6be522.json
diff --git a/tests/cassettes/azure_openai/azure_openai_chat_completion_boolean.yaml b/dd-trace-py/tests/cassettes/azure_openai/azure_openai_chat_completion_boolean.yaml
similarity index 100%
rename from tests/cassettes/azure_openai/azure_openai_chat_completion_boolean.yaml
rename to dd-trace-py/tests/cassettes/azure_openai/azure_openai_chat_completion_boolean.yaml
diff --git a/tests/cassettes/azure_openai/azure_openai_chat_completion_categorical.yaml b/dd-trace-py/tests/cassettes/azure_openai/azure_openai_chat_completion_categorical.yaml
similarity index 100%
rename from tests/cassettes/azure_openai/azure_openai_chat_completion_categorical.yaml
rename to dd-trace-py/tests/cassettes/azure_openai/azure_openai_chat_completion_categorical.yaml
diff --git a/tests/cassettes/azure_openai/azure_openai_chat_completion_score.yaml b/dd-trace-py/tests/cassettes/azure_openai/azure_openai_chat_completion_score.yaml
similarity index 100%
rename from tests/cassettes/azure_openai/azure_openai_chat_completion_score.yaml
rename to dd-trace-py/tests/cassettes/azure_openai/azure_openai_chat_completion_score.yaml
diff --git a/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_5836d4fe.json b/dd-trace-py/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_5836d4fe.json
similarity index 100%
rename from tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_5836d4fe.json
rename to dd-trace-py/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_5836d4fe.json
diff --git a/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_5836d4fe.yaml b/dd-trace-py/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_5836d4fe.yaml
similarity index 100%
rename from tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_5836d4fe.yaml
rename to dd-trace-py/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_5836d4fe.yaml
diff --git a/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_696c0585.json b/dd-trace-py/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_696c0585.json
similarity index 100%
rename from tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_696c0585.json
rename to dd-trace-py/tests/cassettes/azure_openai/azure_openai_openai_deployments_gpt-4.1-mini_chat_completions_api-version_2024-12-01-preview_post_696c0585.json
diff --git a/tests/cassettes/bedrock/bedrock_converse_boolean.yaml b/dd-trace-py/tests/cassettes/bedrock/bedrock_converse_boolean.yaml
similarity index 100%
rename from tests/cassettes/bedrock/bedrock_converse_boolean.yaml
rename to dd-trace-py/tests/cassettes/bedrock/bedrock_converse_boolean.yaml
diff --git a/tests/cassettes/bedrock/bedrock_converse_categorical.yaml b/dd-trace-py/tests/cassettes/bedrock/bedrock_converse_categorical.yaml
similarity index 100%
rename from tests/cassettes/bedrock/bedrock_converse_categorical.yaml
rename to dd-trace-py/tests/cassettes/bedrock/bedrock_converse_categorical.yaml
diff --git a/tests/cassettes/bedrock/bedrock_converse_score.yaml b/dd-trace-py/tests/cassettes/bedrock/bedrock_converse_score.yaml
similarity index 100%
rename from tests/cassettes/bedrock/bedrock_converse_score.yaml
rename to dd-trace-py/tests/cassettes/bedrock/bedrock_converse_score.yaml
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_post_149447de.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_post_149447de.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_post_149447de.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_post_149447de.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_post_bace8d78.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_post_bace8d78.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_post_bace8d78.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_post_bace8d78.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_00bf3863.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_00bf3863.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_00bf3863.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_00bf3863.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_0a56dbdb.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_0a56dbdb.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_0a56dbdb.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_0a56dbdb.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_12ae6d77.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_12ae6d77.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_12ae6d77.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_12ae6d77.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_136faff8.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_136faff8.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_136faff8.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_136faff8.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1883668c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1883668c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1883668c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1883668c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a5e39e6.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a5e39e6.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a5e39e6.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a5e39e6.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a7e6a81.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a7e6a81.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a7e6a81.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a7e6a81.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a841147.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a841147.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a841147.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1a841147.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1d67fd55.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1d67fd55.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1d67fd55.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1d67fd55.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1d9693b3.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1d9693b3.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1d9693b3.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_1d9693b3.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_20e911a4.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_20e911a4.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_20e911a4.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_20e911a4.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_216b1ad9.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_216b1ad9.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_216b1ad9.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_216b1ad9.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_2650e954.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_2650e954.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_2650e954.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_2650e954.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_280b273a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_280b273a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_280b273a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_280b273a.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_2d4bd534.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_2d4bd534.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_2d4bd534.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_2d4bd534.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_300c9c5d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_300c9c5d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_300c9c5d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_300c9c5d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_31021d3d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_31021d3d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_31021d3d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_31021d3d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_36774785.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_36774785.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_36774785.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_36774785.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_3d3d2bbb.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_3d3d2bbb.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_3d3d2bbb.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_3d3d2bbb.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_46fdc11e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_46fdc11e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_46fdc11e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_46fdc11e.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_4a663168.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_4a663168.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_4a663168.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_4a663168.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_4fafbb14.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_4fafbb14.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_4fafbb14.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_4fafbb14.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_50b2a68e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_50b2a68e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_50b2a68e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_50b2a68e.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_55f9542b.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_55f9542b.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_55f9542b.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_55f9542b.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_63514bcf.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_63514bcf.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_63514bcf.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_63514bcf.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_64bd6eeb.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_64bd6eeb.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_64bd6eeb.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_64bd6eeb.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_698f4a11.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_698f4a11.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_698f4a11.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_698f4a11.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_69fcdd9e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_69fcdd9e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_69fcdd9e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_69fcdd9e.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_6f93e9cd.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_6f93e9cd.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_6f93e9cd.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_6f93e9cd.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_72920b0d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_72920b0d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_72920b0d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_72920b0d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_74528e97.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_74528e97.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_74528e97.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_74528e97.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7752b7ef.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7752b7ef.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7752b7ef.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7752b7ef.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7f504d3d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7f504d3d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7f504d3d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7f504d3d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7fda7144.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7fda7144.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7fda7144.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_7fda7144.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_85e85476.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_85e85476.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_85e85476.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_85e85476.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_872e1db3.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_872e1db3.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_872e1db3.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_872e1db3.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_87f4d24c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_87f4d24c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_87f4d24c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_87f4d24c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_90e4d011.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_90e4d011.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_90e4d011.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_90e4d011.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_99fa80dd.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_99fa80dd.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_99fa80dd.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_99fa80dd.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_9bdba9d1.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_9bdba9d1.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_9bdba9d1.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_9bdba9d1.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_9d37e68c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_9d37e68c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_9d37e68c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_9d37e68c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a4de5870.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a4de5870.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a4de5870.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a4de5870.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a6f6e843.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a6f6e843.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a6f6e843.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a6f6e843.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a9a2e013.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a9a2e013.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a9a2e013.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_a9a2e013.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b1fa2fb5.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b1fa2fb5.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b1fa2fb5.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b1fa2fb5.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b7a1b9a8.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b7a1b9a8.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b7a1b9a8.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b7a1b9a8.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b9cfb926.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b9cfb926.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b9cfb926.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_b9cfb926.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_bc0efe0f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_bc0efe0f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_bc0efe0f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_bc0efe0f.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_c251ce21.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_c251ce21.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_c251ce21.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_c251ce21.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_c2e48cea.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_c2e48cea.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_c2e48cea.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_c2e48cea.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d2012cef.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d2012cef.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d2012cef.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d2012cef.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d4808c7c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d4808c7c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d4808c7c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d4808c7c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d85e91a3.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d85e91a3.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d85e91a3.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_d85e91a3.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_de10aa36.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_de10aa36.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_de10aa36.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_de10aa36.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_de1e2d64.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_de1e2d64.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_de1e2d64.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_de1e2d64.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e282fcab.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e282fcab.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e282fcab.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e282fcab.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e34f6622.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e34f6622.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e34f6622.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e34f6622.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e6b239be.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e6b239be.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e6b239be.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e6b239be.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e752caa0.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e752caa0.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e752caa0.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e752caa0.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e781ef93.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e781ef93.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e781ef93.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_e781ef93.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_eb4614ba.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_eb4614ba.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_eb4614ba.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_eb4614ba.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_ec87c75d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_ec87c75d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_ec87c75d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_ec87c75d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_f46da64d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_f46da64d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_f46da64d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_post_f46da64d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_97aeb674-3464-45a7-a1eb-5ba857779c54_datasets_post_4540bbf4.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_97aeb674-3464-45a7-a1eb-5ba857779c54_datasets_post_4540bbf4.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_97aeb674-3464-45a7-a1eb-5ba857779c54_datasets_post_4540bbf4.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_97aeb674-3464-45a7-a1eb-5ba857779c54_datasets_post_4540bbf4.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_0918b6dd-1bc9-4185-ad47-08a0c50cf4fd_records_upload_deduplicate_True_post_fe389c5d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_0918b6dd-1bc9-4185-ad47-08a0c50cf4fd_records_upload_deduplicate_True_post_fe389c5d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_0918b6dd-1bc9-4185-ad47-08a0c50cf4fd_records_upload_deduplicate_True_post_fe389c5d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_0918b6dd-1bc9-4185-ad47-08a0c50cf4fd_records_upload_deduplicate_True_post_fe389c5d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_7a987483-4f7f-4a0e-8576-ee7480e749b1_records_upload_deduplicate_True_post_9577dfcf.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_7a987483-4f7f-4a0e-8576-ee7480e749b1_records_upload_deduplicate_True_post_9577dfcf.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_7a987483-4f7f-4a0e-8576-ee7480e749b1_records_upload_deduplicate_True_post_9577dfcf.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_7a987483-4f7f-4a0e-8576-ee7480e749b1_records_upload_deduplicate_True_post_9577dfcf.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_8ec88ffc-3deb-4d07-a943-83b8f16203b5_records_upload_deduplicate_True_post_575de54a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_8ec88ffc-3deb-4d07-a943-83b8f16203b5_records_upload_deduplicate_True_post_575de54a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_8ec88ffc-3deb-4d07-a943-83b8f16203b5_records_upload_deduplicate_True_post_575de54a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_8ec88ffc-3deb-4d07-a943-83b8f16203b5_records_upload_deduplicate_True_post_575de54a.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_00f2a667.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_00f2a667.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_00f2a667.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_00f2a667.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_01360a17.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_01360a17.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_01360a17.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_01360a17.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_0b9f15e5.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_0b9f15e5.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_0b9f15e5.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_0b9f15e5.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_0eabe402.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_0eabe402.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_0eabe402.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_0eabe402.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_10f7d0a6.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_10f7d0a6.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_10f7d0a6.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_10f7d0a6.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_13153d03.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_13153d03.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_13153d03.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_13153d03.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1380f0db.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1380f0db.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1380f0db.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1380f0db.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1b3b33f1.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1b3b33f1.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1b3b33f1.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1b3b33f1.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1bb4afb7.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1bb4afb7.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1bb4afb7.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1bb4afb7.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1f4f0dfc.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1f4f0dfc.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1f4f0dfc.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_1f4f0dfc.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_2f038b45.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_2f038b45.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_2f038b45.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_2f038b45.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3074d76a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3074d76a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3074d76a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3074d76a.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_308c1fc1.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_308c1fc1.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_308c1fc1.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_308c1fc1.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3a40706b.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3a40706b.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3a40706b.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3a40706b.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3ac3f41b.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3ac3f41b.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3ac3f41b.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3ac3f41b.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3ccd3049.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3ccd3049.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3ccd3049.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3ccd3049.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3e92e921.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3e92e921.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3e92e921.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_3e92e921.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_415d2769.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_415d2769.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_415d2769.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_415d2769.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_42fdd776.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_42fdd776.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_42fdd776.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_42fdd776.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_45b60d54.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_45b60d54.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_45b60d54.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_45b60d54.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_4bcf9963.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_4bcf9963.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_4bcf9963.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_4bcf9963.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_524f8506.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_524f8506.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_524f8506.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_524f8506.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_5f677cde.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_5f677cde.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_5f677cde.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_5f677cde.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6a6e73d8.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6a6e73d8.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6a6e73d8.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6a6e73d8.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6c0310f5.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6c0310f5.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6c0310f5.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6c0310f5.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6fea6406.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6fea6406.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6fea6406.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_6fea6406.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_712af41b.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_712af41b.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_712af41b.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_712af41b.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7176df41.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7176df41.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7176df41.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7176df41.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_72afd5f7.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_72afd5f7.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_72afd5f7.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_72afd5f7.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7d8c6e8c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7d8c6e8c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7d8c6e8c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7d8c6e8c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7e1f8752.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7e1f8752.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7e1f8752.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_7e1f8752.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_81e83354.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_81e83354.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_81e83354.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_81e83354.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_829ebdbd.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_829ebdbd.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_829ebdbd.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_829ebdbd.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_8761b07b.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_8761b07b.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_8761b07b.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_8761b07b.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_87e996ab.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_87e996ab.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_87e996ab.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_87e996ab.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_94c9d5fe.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_94c9d5fe.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_94c9d5fe.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_94c9d5fe.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_9ac39bec.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_9ac39bec.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_9ac39bec.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_9ac39bec.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_9d7bfca6.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_9d7bfca6.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_9d7bfca6.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_9d7bfca6.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a4648661.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a4648661.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a4648661.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a4648661.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a62c6a45.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a62c6a45.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a62c6a45.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a62c6a45.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a6db8943.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a6db8943.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a6db8943.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a6db8943.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a955c58c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a955c58c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a955c58c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_a955c58c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_af3a2520.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_af3a2520.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_af3a2520.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_af3a2520.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b1a5b70d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b1a5b70d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b1a5b70d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b1a5b70d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b48cef78.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b48cef78.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b48cef78.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b48cef78.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b4d4b937.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b4d4b937.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b4d4b937.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_b4d4b937.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bb42aed9.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bb42aed9.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bb42aed9.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bb42aed9.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bb8d2402.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bb8d2402.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bb8d2402.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bb8d2402.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bda04f0d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bda04f0d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bda04f0d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bda04f0d.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bf14e386.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bf14e386.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bf14e386.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_bf14e386.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c03d8a4f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c03d8a4f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c03d8a4f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c03d8a4f.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c455117c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c455117c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c455117c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c455117c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c6e76576.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c6e76576.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c6e76576.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c6e76576.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c7995055.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c7995055.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c7995055.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c7995055.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c8df8d57.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c8df8d57.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c8df8d57.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_c8df8d57.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_cbdaab1a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_cbdaab1a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_cbdaab1a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_cbdaab1a.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_ce8d1bf1.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_ce8d1bf1.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_ce8d1bf1.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_ce8d1bf1.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_d1812a81.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_d1812a81.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_d1812a81.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_d1812a81.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_d612a0ea.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_d612a0ea.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_d612a0ea.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_d612a0ea.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_dcf4e62e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_dcf4e62e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_dcf4e62e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_dcf4e62e.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_deaa2642.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_deaa2642.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_deaa2642.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_deaa2642.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_df695620.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_df695620.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_df695620.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_df695620.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_e3529668.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_e3529668.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_e3529668.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_e3529668.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_eb0298fc.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_eb0298fc.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_eb0298fc.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_eb0298fc.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_edcd2b30.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_edcd2b30.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_edcd2b30.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_datasets_delete_post_edcd2b30.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_48daa324.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_48daa324.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_48daa324.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_48daa324.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_545efe4a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_545efe4a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_545efe4a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_545efe4a.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_67310d6e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_67310d6e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_67310d6e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_67310d6e.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_78635e57.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_78635e57.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_78635e57.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_events_post_78635e57.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_1c1899d5.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_1c1899d5.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_1c1899d5.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_1c1899d5.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_3a59e30c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_3a59e30c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_3a59e30c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_3a59e30c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_8daea8a8.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_8daea8a8.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_8daea8a8.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_11b8dde2-04b4-4156-b1c6-f64c1da1b114_patch_8daea8a8.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_events_post_5cd5f334.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_events_post_5cd5f334.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_events_post_5cd5f334.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_events_post_5cd5f334.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_events_post_672d12e5.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_events_post_672d12e5.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_events_post_672d12e5.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_events_post_672d12e5.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_patch_22cd4987.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_patch_22cd4987.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_patch_22cd4987.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_patch_22cd4987.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_patch_a521691c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_patch_a521691c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_patch_a521691c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_9d015796-6340-47d8-ba2b-806c43f53ed4_patch_a521691c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_13b8639f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_13b8639f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_13b8639f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_13b8639f.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_77389fce.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_77389fce.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_77389fce.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_77389fce.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_8b32486f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_8b32486f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_8b32486f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_8b32486f.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_bc5d8589.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_bc5d8589.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_bc5d8589.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_bc5d8589.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_d2048779.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_d2048779.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_d2048779.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_d2048779.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_dcde9075.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_dcde9075.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_dcde9075.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_dcde9075.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_e7925a57.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_e7925a57.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_e7925a57.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_e7925a57.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_ec6a161f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_ec6a161f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_ec6a161f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_events_post_ec6a161f.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_23d7080f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_23d7080f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_23d7080f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_23d7080f.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_dca82071.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_dca82071.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_dca82071.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_dca82071.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_eab3b1e8.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_eab3b1e8.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_eab3b1e8.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_ee740ebe-59b3-455c-b108-9ccae4d8e497_patch_eab3b1e8.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_47ccc9dc.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_47ccc9dc.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_47ccc9dc.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_47ccc9dc.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_6a206f71.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_6a206f71.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_6a206f71.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_6a206f71.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_e2a194aa.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_e2a194aa.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_e2a194aa.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_e2a194aa.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_fa963a9e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_fa963a9e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_fa963a9e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_experiments_post_fa963a9e.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_22ea09fc.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_22ea09fc.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_22ea09fc.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_22ea09fc.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_91cd2f6c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_91cd2f6c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_91cd2f6c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_91cd2f6c.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_9dda34dc.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_9dda34dc.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_9dda34dc.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_9dda34dc.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_ddce0a64.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_ddce0a64.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_ddce0a64.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_ddce0a64.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_f0f68b54.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_f0f68b54.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_f0f68b54.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_f0f68b54.json
diff --git a/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_f5b13c3e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_f5b13c3e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_f5b13c3e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_unstable_llm-obs_v1_projects_post_f5b13c3e.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_09ac049e-2dbd-42c0-b3b8-9ac6e7dd28b5_batch_update_post_af1f823a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_09ac049e-2dbd-42c0-b3b8-9ac6e7dd28b5_batch_update_post_af1f823a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_09ac049e-2dbd-42c0-b3b8-9ac6e7dd28b5_batch_update_post_af1f823a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_09ac049e-2dbd-42c0-b3b8-9ac6e7dd28b5_batch_update_post_af1f823a.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_09ac049e-2dbd-42c0-b3b8-9ac6e7dd28b5_records__filter_tags__team_ml_filter_tags__priority_high_get_32a3b5f2.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_09ac049e-2dbd-42c0-b3b8-9ac6e7dd28b5_records__filter_tags__team_ml_filter_tags__priority_high_get_32a3b5f2.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_09ac049e-2dbd-42c0-b3b8-9ac6e7dd28b5_records__filter_tags__team_ml_filter_tags__priority_high_get_32a3b5f2.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_09ac049e-2dbd-42c0-b3b8-9ac6e7dd28b5_records__filter_tags__team_ml_filter_tags__priority_high_get_32a3b5f2.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_11975234-16e6-4c5a-b48a-3162efa0c076_batch_update_post_54f96654.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_11975234-16e6-4c5a-b48a-3162efa0c076_batch_update_post_54f96654.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_11975234-16e6-4c5a-b48a-3162efa0c076_batch_update_post_54f96654.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_11975234-16e6-4c5a-b48a-3162efa0c076_batch_update_post_54f96654.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_11975234-16e6-4c5a-b48a-3162efa0c076_records_get_90c77497.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_11975234-16e6-4c5a-b48a-3162efa0c076_records_get_90c77497.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_11975234-16e6-4c5a-b48a-3162efa0c076_records_get_90c77497.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_11975234-16e6-4c5a-b48a-3162efa0c076_records_get_90c77497.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_filter_name__test-dataset-857-tags_get_c68fc7f0.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_filter_name__test-dataset-857-tags_get_c68fc7f0.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_filter_name__test-dataset-857-tags_get_c68fc7f0.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_filter_name__test-dataset-857-tags_get_c68fc7f0.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_filter_name__test-dataset-857_get_18cc713f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_filter_name__test-dataset-857_get_18cc713f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_filter_name__test-dataset-857_get_18cc713f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_3a1a13ae-9bf7-4953-8f09-2e0235836d11_datasets_filter_name__test-dataset-857_get_18cc713f.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_041bc4f9-5376-4650-a500-043227f55329_batch_update_post_0330b422.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_041bc4f9-5376-4650-a500-043227f55329_batch_update_post_0330b422.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_041bc4f9-5376-4650-a500-043227f55329_batch_update_post_0330b422.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_041bc4f9-5376-4650-a500-043227f55329_batch_update_post_0330b422.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_041bc4f9-5376-4650-a500-043227f55329_records__filter_tags__env_prod_get_ef9de441.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_041bc4f9-5376-4650-a500-043227f55329_records__filter_tags__env_prod_get_ef9de441.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_041bc4f9-5376-4650-a500-043227f55329_records__filter_tags__env_prod_get_ef9de441.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_041bc4f9-5376-4650-a500-043227f55329_records__filter_tags__env_prod_get_ef9de441.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_056ba26f-318d-41e8-91a7-4a48580a2810_batch_update_post_1eff6eee.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_056ba26f-318d-41e8-91a7-4a48580a2810_batch_update_post_1eff6eee.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_056ba26f-318d-41e8-91a7-4a48580a2810_batch_update_post_1eff6eee.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_056ba26f-318d-41e8-91a7-4a48580a2810_batch_update_post_1eff6eee.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_0c921be1-7e77-4143-b291-f551e758d3ec_batch_update_post_76f533ab.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_0c921be1-7e77-4143-b291-f551e758d3ec_batch_update_post_76f533ab.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_0c921be1-7e77-4143-b291-f551e758d3ec_batch_update_post_76f533ab.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_0c921be1-7e77-4143-b291-f551e758d3ec_batch_update_post_76f533ab.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_batch_update_post_b2c8ef64.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_batch_update_post_b2c8ef64.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_batch_update_post_b2c8ef64.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_batch_update_post_b2c8ef64.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_batch_update_post_f65e13ac.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_batch_update_post_f65e13ac.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_batch_update_post_f65e13ac.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_batch_update_post_f65e13ac.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_records_get_b5eb4f85.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_records_get_b5eb4f85.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_records_get_b5eb4f85.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1363d189-61b3-42a2-be0e-4f4fa204da25_records_get_b5eb4f85.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_batch_update_post_4acede96.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_batch_update_post_4acede96.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_batch_update_post_4acede96.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_batch_update_post_4acede96.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_batch_update_post_7845846d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_batch_update_post_7845846d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_batch_update_post_7845846d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_batch_update_post_7845846d.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_records_get_5a2d0318.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_records_get_5a2d0318.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_records_get_5a2d0318.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_16a04fb7-8853-4a68-b006-27e337d2d286_records_get_5a2d0318.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1af2c23e-3114-4748-8e07-e8db2fe855cc_records_get_dd87a73f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1af2c23e-3114-4748-8e07-e8db2fe855cc_records_get_dd87a73f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1af2c23e-3114-4748-8e07-e8db2fe855cc_records_get_dd87a73f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_1af2c23e-3114-4748-8e07-e8db2fe855cc_records_get_dd87a73f.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_230d512f-04bd-455e-a347-8bdbc1056d8e_batch_update_post_0a040bab.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_230d512f-04bd-455e-a347-8bdbc1056d8e_batch_update_post_0a040bab.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_230d512f-04bd-455e-a347-8bdbc1056d8e_batch_update_post_0a040bab.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_230d512f-04bd-455e-a347-8bdbc1056d8e_batch_update_post_0a040bab.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_272d9532-cf29-4a93-b02e-897f2f1bb632_batch_update_post_772bf53c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_272d9532-cf29-4a93-b02e-897f2f1bb632_batch_update_post_772bf53c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_272d9532-cf29-4a93-b02e-897f2f1bb632_batch_update_post_772bf53c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_272d9532-cf29-4a93-b02e-897f2f1bb632_batch_update_post_772bf53c.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_batch_update_post_4afa1491.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_batch_update_post_4afa1491.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_batch_update_post_4afa1491.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_batch_update_post_4afa1491.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_batch_update_post_dfe21c85.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_batch_update_post_dfe21c85.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_batch_update_post_dfe21c85.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_batch_update_post_dfe21c85.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_records_get_dbea61eb.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_records_get_dbea61eb.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_records_get_dbea61eb.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_273822db-21b4-46b1-9f51-d6159173bdac_records_get_dbea61eb.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_290e4246-af5d-4d3b-873b-f538c7830a82_batch_update_post_9f612765.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_290e4246-af5d-4d3b-873b-f538c7830a82_batch_update_post_9f612765.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_290e4246-af5d-4d3b-873b-f538c7830a82_batch_update_post_9f612765.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_290e4246-af5d-4d3b-873b-f538c7830a82_batch_update_post_9f612765.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_290e4246-af5d-4d3b-873b-f538c7830a82_records__filter_tags__env_staging_get_b8f12de3.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_290e4246-af5d-4d3b-873b-f538c7830a82_records__filter_tags__env_staging_get_b8f12de3.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_290e4246-af5d-4d3b-873b-f538c7830a82_records__filter_tags__env_staging_get_b8f12de3.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_290e4246-af5d-4d3b-873b-f538c7830a82_records__filter_tags__env_staging_get_b8f12de3.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_batch_update_post_272d1fde.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_batch_update_post_272d1fde.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_batch_update_post_272d1fde.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_batch_update_post_272d1fde.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_batch_update_post_9e17f5ef.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_batch_update_post_9e17f5ef.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_batch_update_post_9e17f5ef.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_batch_update_post_9e17f5ef.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_records_get_6b6d6a4f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_records_get_6b6d6a4f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_records_get_6b6d6a4f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2b62f5f1-cf89-4d1f-8b87-55b0ea4b3221_records_get_6b6d6a4f.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_batch_update_post_2730327c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_batch_update_post_2730327c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_batch_update_post_2730327c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_batch_update_post_2730327c.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_batch_update_post_e8afaf35.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_batch_update_post_e8afaf35.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_batch_update_post_e8afaf35.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_batch_update_post_e8afaf35.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_records_get_5702ca9d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_records_get_5702ca9d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_records_get_5702ca9d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_2fdcd392-5830-4fd6-8d05-d4c03bf19190_records_get_5702ca9d.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_33eb3c3e-bf6e-4ee9-af80-21ceee31c3c6_batch_update_post_3c4984d0.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_33eb3c3e-bf6e-4ee9-af80-21ceee31c3c6_batch_update_post_3c4984d0.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_33eb3c3e-bf6e-4ee9-af80-21ceee31c3c6_batch_update_post_3c4984d0.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_33eb3c3e-bf6e-4ee9-af80-21ceee31c3c6_batch_update_post_3c4984d0.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_33eb3c3e-bf6e-4ee9-af80-21ceee31c3c6_records__filter_tags__env_prod_filter_tags__version_1.0_get_d5ad0869.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_33eb3c3e-bf6e-4ee9-af80-21ceee31c3c6_records__filter_tags__env_prod_filter_tags__version_1.0_get_d5ad0869.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_33eb3c3e-bf6e-4ee9-af80-21ceee31c3c6_records__filter_tags__env_prod_filter_tags__version_1.0_get_d5ad0869.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_33eb3c3e-bf6e-4ee9-af80-21ceee31c3c6_records__filter_tags__env_prod_filter_tags__version_1.0_get_d5ad0869.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_batch_update_post_7d4037bd.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_batch_update_post_7d4037bd.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_batch_update_post_7d4037bd.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_batch_update_post_7d4037bd.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_batch_update_post_ee82a2d3.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_batch_update_post_ee82a2d3.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_batch_update_post_ee82a2d3.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_batch_update_post_ee82a2d3.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_records_get_c2fdfcd9.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_records_get_c2fdfcd9.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_records_get_c2fdfcd9.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_35a20cf1-71ad-445b-9a70-0cb59eca4495_records_get_c2fdfcd9.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_batch_update_post_1bfde554.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_batch_update_post_1bfde554.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_batch_update_post_1bfde554.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_batch_update_post_1bfde554.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_batch_update_post_44246b15.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_batch_update_post_44246b15.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_batch_update_post_44246b15.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_batch_update_post_44246b15.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_records_filter_version__1_get_8db038cb.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_records_filter_version__1_get_8db038cb.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_records_filter_version__1_get_8db038cb.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_records_filter_version__1_get_8db038cb.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_records_get_8a89be18.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_records_get_8a89be18.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_records_get_8a89be18.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_363c8894-94d5-4da3-8573-99f9d95c3807_records_get_8a89be18.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_368a86ea-fffb-44d6-a330-e4ab03a262f9_batch_update_post_e6db9ec3.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_368a86ea-fffb-44d6-a330-e4ab03a262f9_batch_update_post_e6db9ec3.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_368a86ea-fffb-44d6-a330-e4ab03a262f9_batch_update_post_e6db9ec3.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_368a86ea-fffb-44d6-a330-e4ab03a262f9_batch_update_post_e6db9ec3.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_batch_update_post_2ee9f41c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_batch_update_post_2ee9f41c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_batch_update_post_2ee9f41c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_batch_update_post_2ee9f41c.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_batch_update_post_361741f9.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_batch_update_post_361741f9.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_batch_update_post_361741f9.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_batch_update_post_361741f9.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_records_get_a1b5642a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_records_get_a1b5642a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_records_get_a1b5642a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_3b62976c-f39f-4648-8613-6e94c793a200_records_get_a1b5642a.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_batch_update_post_02d1c1e1.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_batch_update_post_02d1c1e1.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_batch_update_post_02d1c1e1.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_batch_update_post_02d1c1e1.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_batch_update_post_54c879e5.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_batch_update_post_54c879e5.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_batch_update_post_54c879e5.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_batch_update_post_54c879e5.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_records_get_3877c987.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_records_get_3877c987.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_records_get_3877c987.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_43bc5b14-b13f-4ea6-ab47-1f394bd97a60_records_get_3877c987.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_batch_update_post_d14b64ad.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_batch_update_post_d14b64ad.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_batch_update_post_d14b64ad.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_batch_update_post_d14b64ad.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_batch_update_post_d4b3b33b.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_batch_update_post_d4b3b33b.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_batch_update_post_d4b3b33b.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_batch_update_post_d4b3b33b.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_records_get_ae0f379f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_records_get_ae0f379f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_records_get_ae0f379f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_4b608db8-7a68-48f5-af44-78f157019b07_records_get_ae0f379f.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_batch_update_post_0dcaf94b.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_batch_update_post_0dcaf94b.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_batch_update_post_0dcaf94b.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_batch_update_post_0dcaf94b.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_batch_update_post_5f9d7726.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_batch_update_post_5f9d7726.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_batch_update_post_5f9d7726.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_batch_update_post_5f9d7726.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_records_get_f79f0de3.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_records_get_f79f0de3.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_records_get_f79f0de3.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_572ec912-df2a-48ff-9779-3978c8d8e740_records_get_f79f0de3.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_598246ca-3f8c-430c-baec-37f95d14f419_batch_update_post_2ebe991f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_598246ca-3f8c-430c-baec-37f95d14f419_batch_update_post_2ebe991f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_598246ca-3f8c-430c-baec-37f95d14f419_batch_update_post_2ebe991f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_598246ca-3f8c-430c-baec-37f95d14f419_batch_update_post_2ebe991f.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_5ae45008-c9a5-4671-9bfa-973f7bce6554_batch_update_post_ecbdca41.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_5ae45008-c9a5-4671-9bfa-973f7bce6554_batch_update_post_ecbdca41.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_5ae45008-c9a5-4671-9bfa-973f7bce6554_batch_update_post_ecbdca41.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_5ae45008-c9a5-4671-9bfa-973f7bce6554_batch_update_post_ecbdca41.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_5ae45008-c9a5-4671-9bfa-973f7bce6554_records_get_84399dc0.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_5ae45008-c9a5-4671-9bfa-973f7bce6554_records_get_84399dc0.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_5ae45008-c9a5-4671-9bfa-973f7bce6554_records_get_84399dc0.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_5ae45008-c9a5-4671-9bfa-973f7bce6554_records_get_84399dc0.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_6193e86f-d98d-45ac-a18b-aef4645e0aef_batch_update_post_a210f6e9.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_6193e86f-d98d-45ac-a18b-aef4645e0aef_batch_update_post_a210f6e9.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_6193e86f-d98d-45ac-a18b-aef4645e0aef_batch_update_post_a210f6e9.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_6193e86f-d98d-45ac-a18b-aef4645e0aef_batch_update_post_a210f6e9.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_6193e86f-d98d-45ac-a18b-aef4645e0aef_records__filter_tags__env_nonexistent_filter_tags__version_99.0_get_332d2d0d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_6193e86f-d98d-45ac-a18b-aef4645e0aef_records__filter_tags__env_nonexistent_filter_tags__version_99.0_get_332d2d0d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_6193e86f-d98d-45ac-a18b-aef4645e0aef_records__filter_tags__env_nonexistent_filter_tags__version_99.0_get_332d2d0d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_6193e86f-d98d-45ac-a18b-aef4645e0aef_records__filter_tags__env_nonexistent_filter_tags__version_99.0_get_332d2d0d.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_61bd140d-b298-4e11-84b9-de77692e0d41_batch_update_post_916e56a2.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_61bd140d-b298-4e11-84b9-de77692e0d41_batch_update_post_916e56a2.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_61bd140d-b298-4e11-84b9-de77692e0d41_batch_update_post_916e56a2.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_61bd140d-b298-4e11-84b9-de77692e0d41_batch_update_post_916e56a2.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_61bd140d-b298-4e11-84b9-de77692e0d41_records_get_b8156a78.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_61bd140d-b298-4e11-84b9-de77692e0d41_records_get_b8156a78.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_61bd140d-b298-4e11-84b9-de77692e0d41_records_get_b8156a78.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_61bd140d-b298-4e11-84b9-de77692e0d41_records_get_b8156a78.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_647e6426-54ac-4629-b3f1-bbde80c09311_batch_update_post_1b1793fd.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_647e6426-54ac-4629-b3f1-bbde80c09311_batch_update_post_1b1793fd.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_647e6426-54ac-4629-b3f1-bbde80c09311_batch_update_post_1b1793fd.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_647e6426-54ac-4629-b3f1-bbde80c09311_batch_update_post_1b1793fd.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_batch_update_post_8899b83d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_batch_update_post_8899b83d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_batch_update_post_8899b83d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_batch_update_post_8899b83d.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_batch_update_post_a11dadf9.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_batch_update_post_a11dadf9.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_batch_update_post_a11dadf9.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_batch_update_post_a11dadf9.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_records_get_dd676293.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_records_get_dd676293.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_records_get_dd676293.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_762a46bf-2012-457e-97ab-0fbb1dc70d86_records_get_dd676293.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_7d265463-705e-4e28-83d8-e5d25b3845a8_batch_update_post_a7f1b103.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_7d265463-705e-4e28-83d8-e5d25b3845a8_batch_update_post_a7f1b103.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_7d265463-705e-4e28-83d8-e5d25b3845a8_batch_update_post_a7f1b103.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_7d265463-705e-4e28-83d8-e5d25b3845a8_batch_update_post_a7f1b103.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_batch_update_post_6c5b4e9d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_batch_update_post_6c5b4e9d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_batch_update_post_6c5b4e9d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_batch_update_post_6c5b4e9d.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_batch_update_post_c74e7b8d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_batch_update_post_c74e7b8d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_batch_update_post_c74e7b8d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_batch_update_post_c74e7b8d.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_records_get_cc194a5e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_records_get_cc194a5e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_records_get_cc194a5e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_83bee214-e334-404f-a570-3ac9e7910649_records_get_cc194a5e.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_batch_update_post_7f67d464.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_batch_update_post_7f67d464.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_batch_update_post_7f67d464.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_batch_update_post_7f67d464.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_batch_update_post_9a00800a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_batch_update_post_9a00800a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_batch_update_post_9a00800a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_batch_update_post_9a00800a.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_records_get_011f409f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_records_get_011f409f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_records_get_011f409f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8930b3fb-4a4d-415f-9cd7-34c542629024_records_get_011f409f.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8d427d79-ad87-484b-a4c2-5bf20ccf24ca_batch_update_post_2cfd7369.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8d427d79-ad87-484b-a4c2-5bf20ccf24ca_batch_update_post_2cfd7369.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8d427d79-ad87-484b-a4c2-5bf20ccf24ca_batch_update_post_2cfd7369.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8d427d79-ad87-484b-a4c2-5bf20ccf24ca_batch_update_post_2cfd7369.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8e10fd0a-4d5d-4ea3-8209-3c0cad37b2e2_batch_update_post_849b4c0d.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8e10fd0a-4d5d-4ea3-8209-3c0cad37b2e2_batch_update_post_849b4c0d.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8e10fd0a-4d5d-4ea3-8209-3c0cad37b2e2_batch_update_post_849b4c0d.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_8e10fd0a-4d5d-4ea3-8209-3c0cad37b2e2_batch_update_post_849b4c0d.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_9308870c-f5c1-448c-8800-82d16cb4f958_batch_update_post_28ea36bd.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_9308870c-f5c1-448c-8800-82d16cb4f958_batch_update_post_28ea36bd.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_9308870c-f5c1-448c-8800-82d16cb4f958_batch_update_post_28ea36bd.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_9308870c-f5c1-448c-8800-82d16cb4f958_batch_update_post_28ea36bd.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_986a071c-83dd-488f-8a5a-200d0151ed1a_batch_update_post_c74e668c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_986a071c-83dd-488f-8a5a-200d0151ed1a_batch_update_post_c74e668c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_986a071c-83dd-488f-8a5a-200d0151ed1a_batch_update_post_c74e668c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_986a071c-83dd-488f-8a5a-200d0151ed1a_batch_update_post_c74e668c.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_986a071c-83dd-488f-8a5a-200d0151ed1a_records_filter_version__420_get_d5fb67ee.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_986a071c-83dd-488f-8a5a-200d0151ed1a_records_filter_version__420_get_d5fb67ee.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_986a071c-83dd-488f-8a5a-200d0151ed1a_records_filter_version__420_get_d5fb67ee.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_986a071c-83dd-488f-8a5a-200d0151ed1a_records_filter_version__420_get_d5fb67ee.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_9aa3980a-2b3e-4c74-bff5-dd674a6c0a3f_batch_update_post_515e9787.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_9aa3980a-2b3e-4c74-bff5-dd674a6c0a3f_batch_update_post_515e9787.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_9aa3980a-2b3e-4c74-bff5-dd674a6c0a3f_batch_update_post_515e9787.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_9aa3980a-2b3e-4c74-bff5-dd674a6c0a3f_batch_update_post_515e9787.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_batch_update_post_ab8cfbd4.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_batch_update_post_ab8cfbd4.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_batch_update_post_ab8cfbd4.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_batch_update_post_ab8cfbd4.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_batch_update_post_ae4d9bfe.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_batch_update_post_ae4d9bfe.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_batch_update_post_ae4d9bfe.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_batch_update_post_ae4d9bfe.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_records_get_6a849d36.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_records_get_6a849d36.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_records_get_6a849d36.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_b5d28662-8cd4-49e2-8ea4-f8c077840305_records_get_6a849d36.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bad7c5ca-d1ff-4d34-b7fb-1384381af919_batch_update_post_1b695f8e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bad7c5ca-d1ff-4d34-b7fb-1384381af919_batch_update_post_1b695f8e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bad7c5ca-d1ff-4d34-b7fb-1384381af919_batch_update_post_1b695f8e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bad7c5ca-d1ff-4d34-b7fb-1384381af919_batch_update_post_1b695f8e.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bad7c5ca-d1ff-4d34-b7fb-1384381af919_records__filter_tags__env_prod_filter_tags__nonexistent_tag_get_20703021.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bad7c5ca-d1ff-4d34-b7fb-1384381af919_records__filter_tags__env_prod_filter_tags__nonexistent_tag_get_20703021.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bad7c5ca-d1ff-4d34-b7fb-1384381af919_records__filter_tags__env_prod_filter_tags__nonexistent_tag_get_20703021.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bad7c5ca-d1ff-4d34-b7fb-1384381af919_records__filter_tags__env_prod_filter_tags__nonexistent_tag_get_20703021.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bfed902b-53c7-4bdc-99dc-98bed141d540_batch_update_post_ab9e3ace.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bfed902b-53c7-4bdc-99dc-98bed141d540_batch_update_post_ab9e3ace.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bfed902b-53c7-4bdc-99dc-98bed141d540_batch_update_post_ab9e3ace.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_bfed902b-53c7-4bdc-99dc-98bed141d540_batch_update_post_ab9e3ace.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_cd3ba3dd-b03d-45d5-9f28-4f14c202db39_batch_update_post_3b048302.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_cd3ba3dd-b03d-45d5-9f28-4f14c202db39_batch_update_post_3b048302.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_cd3ba3dd-b03d-45d5-9f28-4f14c202db39_batch_update_post_3b048302.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_cd3ba3dd-b03d-45d5-9f28-4f14c202db39_batch_update_post_3b048302.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_d0bde03e-2b41-43db-a7da-419815a2fed5_batch_update_post_c2923f7c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_d0bde03e-2b41-43db-a7da-419815a2fed5_batch_update_post_c2923f7c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_d0bde03e-2b41-43db-a7da-419815a2fed5_batch_update_post_c2923f7c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_d0bde03e-2b41-43db-a7da-419815a2fed5_batch_update_post_c2923f7c.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_d11f44a4-2d24-4aed-a943-ce3a73f49b10_batch_update_post_b9cd2a43.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_d11f44a4-2d24-4aed-a943-ce3a73f49b10_batch_update_post_b9cd2a43.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_d11f44a4-2d24-4aed-a943-ce3a73f49b10_batch_update_post_b9cd2a43.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_d11f44a4-2d24-4aed-a943-ce3a73f49b10_batch_update_post_b9cd2a43.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_de72b1e2-b38a-4708-a1af-24cf08b05714_batch_update_post_f256022c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_de72b1e2-b38a-4708-a1af-24cf08b05714_batch_update_post_f256022c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_de72b1e2-b38a-4708-a1af-24cf08b05714_batch_update_post_f256022c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_de72b1e2-b38a-4708-a1af-24cf08b05714_batch_update_post_f256022c.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_de72b1e2-b38a-4708-a1af-24cf08b05714_records_get_63613c03.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_de72b1e2-b38a-4708-a1af-24cf08b05714_records_get_63613c03.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_de72b1e2-b38a-4708-a1af-24cf08b05714_records_get_63613c03.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_de72b1e2-b38a-4708-a1af-24cf08b05714_records_get_63613c03.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e710dd46-d04d-427c-bd3d-b08f6d1c0347_batch_update_post_b94c705b.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e710dd46-d04d-427c-bd3d-b08f6d1c0347_batch_update_post_b94c705b.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e710dd46-d04d-427c-bd3d-b08f6d1c0347_batch_update_post_b94c705b.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e710dd46-d04d-427c-bd3d-b08f6d1c0347_batch_update_post_b94c705b.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_2e654ad1.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_2e654ad1.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_2e654ad1.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_2e654ad1.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_8fef54ab.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_8fef54ab.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_8fef54ab.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_8fef54ab.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_b2ec6528.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_b2ec6528.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_b2ec6528.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_batch_update_post_b2ec6528.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_records_get_e3bf059f.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_records_get_e3bf059f.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_records_get_e3bf059f.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_e89a72db-1c70-4e5c-a044-39f30718c2ca_records_get_e3bf059f.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_batch_update_post_b15be4dc.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_batch_update_post_b15be4dc.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_batch_update_post_b15be4dc.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_batch_update_post_b15be4dc.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_batch_update_post_bca469e0.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_batch_update_post_bca469e0.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_batch_update_post_bca469e0.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_batch_update_post_bca469e0.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_records_get_fdfd5b5a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_records_get_fdfd5b5a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_records_get_fdfd5b5a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_eec41712-46c6-4376-9f5e-5466d8df94d8_records_get_fdfd5b5a.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-large-num-records_get_48af6c09.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-large-num-records_get_48af6c09.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-large-num-records_get_48af6c09.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-large-num-records_get_48af6c09.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-non-existent_get_ff00f35c.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-non-existent_get_ff00f35c.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-non-existent_get_ff00f35c.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-non-existent_get_ff00f35c.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-one-rec_get_be5b6cd0.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-one-rec_get_be5b6cd0.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-one-rec_get_be5b6cd0.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-one-rec_get_be5b6cd0.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-non-exist-tags_get_8141c6cd.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-non-exist-tags_get_8141c6cd.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-non-exist-tags_get_8141c6cd.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-non-exist-tags_get_8141c6cd.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-tag-1-match-1-non_get_1e45336a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-tag-1-match-1-non_get_1e45336a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-tag-1-match-1-non_get_1e45336a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-tag-1-match-1-non_get_1e45336a.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-tag-partial-match_get_adc46809.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-tag-partial-match_get_adc46809.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-tag-partial-match_get_adc46809.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-tag-partial-match_get_adc46809.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-with-notags_get_d32796f7.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-with-notags_get_d32796f7.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-with-notags_get_d32796f7.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-pull-with-notags_get_d32796f7.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-single-tag_get_ac092d60.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-single-tag_get_ac092d60.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-single-tag_get_ac092d60.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-single-tag_get_ac092d60.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_append_no_expected_output_test_dataset_records0__get_10aa11c9.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_append_no_expected_output_test_dataset_records0__get_10aa11c9.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_append_no_expected_output_test_dataset_records0__get_10aa11c9.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_append_no_expected_output_test_dataset_records0__get_10aa11c9.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_append_test_dataset_records0__get_177d53f4.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_append_test_dataset_records0__get_177d53f4.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_append_test_dataset_records0__get_177d53f4.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_append_test_dataset_records0__get_177d53f4.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_after_append_test_dataset_records0__get_991ff219.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_after_append_test_dataset_records0__get_991ff219.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_after_append_test_dataset_records0__get_991ff219.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_after_append_test_dataset_records0__get_991ff219.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_after_update_test_dataset_records0__get_866377e5.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_after_update_test_dataset_records0__get_866377e5.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_after_update_test_dataset_records0__get_866377e5.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_after_update_test_dataset_records0__get_866377e5.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_no_expected_output_test_dataset_records0__get_3be0802a.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_no_expected_output_test_dataset_records0__get_3be0802a.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_no_expected_output_test_dataset_records0__get_3be0802a.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_no_expected_output_test_dataset_records0__get_3be0802a.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_test_dataset_records0__get_d6a4f8e5.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_test_dataset_records0__get_d6a4f8e5.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_test_dataset_records0__get_d6a4f8e5.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_delete_test_dataset_records0__get_d6a4f8e5.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_extend_test_dataset_records0__get_17c18bc2.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_extend_test_dataset_records0__get_17c18bc2.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_extend_test_dataset_records0__get_17c18bc2.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_extend_test_dataset_records0__get_17c18bc2.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_record_on_input_test_dataset_records0__get_b7ca5209.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_record_on_input_test_dataset_records0__get_b7ca5209.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_record_on_input_test_dataset_records0__get_b7ca5209.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_record_on_input_test_dataset_records0__get_b7ca5209.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_record_on_optional_test_dataset_records0__get_4b30dfed.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_record_on_optional_test_dataset_records0__get_4b30dfed.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_record_on_optional_test_dataset_records0__get_4b30dfed.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_record_on_optional_test_dataset_records0__get_4b30dfed.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_records_multiple_times_test_dataset_records0__get_4feb3867.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_records_multiple_times_test_dataset_records0__get_4feb3867.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_records_multiple_times_test_dataset_records0__get_4feb3867.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_records_multiple_times_test_dataset_records0__get_4feb3867.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_single_record_test_dataset_records0__get_60b3fe91.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_single_record_test_dataset_records0__get_60b3fe91.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_single_record_test_dataset_records0__get_60b3fe91.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_modify_single_record_test_dataset_records0__get_60b3fe91.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_exists_but_no_records_test_dataset_records0__get_0aea633e.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_exists_but_no_records_test_dataset_records0__get_0aea633e.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_exists_but_no_records_test_dataset_records0__get_0aea633e.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_exists_but_no_records_test_dataset_records0__get_0aea633e.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_w_invalid_version_test_dataset_records0__get_e6678cf7.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_w_invalid_version_test_dataset_records0__get_e6678cf7.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_w_invalid_version_test_dataset_records0__get_e6678cf7.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_w_invalid_version_test_dataset_records0__get_e6678cf7.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_w_versions_test_dataset_records0__get_141fb254.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_w_versions_test_dataset_records0__get_141fb254.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_w_versions_test_dataset_records0__get_141fb254.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_dataset_pull_w_versions_test_dataset_records0__get_141fb254.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_mixed_update_test_dataset_records0__get_b09de334.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_mixed_update_test_dataset_records0__get_b09de334.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_mixed_update_test_dataset_records0__get_b09de334.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_mixed_update_test_dataset_records0__get_b09de334.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_multi_tag_ops_test_dataset_records0__get_cfbd1581.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_multi_tag_ops_test_dataset_records0__get_cfbd1581.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_multi_tag_ops_test_dataset_records0__get_cfbd1581.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_multi_tag_ops_test_dataset_records0__get_cfbd1581.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_new_with_tags_get_8ca36943.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_new_with_tags_get_8ca36943.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_new_with_tags_get_8ca36943.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_new_with_tags_get_8ca36943.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_remove_tags_test_dataset_records0__get_1ec12e19.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_remove_tags_test_dataset_records0__get_1ec12e19.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_remove_tags_test_dataset_records0__get_1ec12e19.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_remove_tags_test_dataset_records0__get_1ec12e19.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_replace_tags_test_dataset_records0__get_50cab7f7.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_replace_tags_test_dataset_records0__get_50cab7f7.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_replace_tags_test_dataset_records0__get_50cab7f7.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-test_ds_push_replace_tags_test_dataset_records0__get_50cab7f7.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-with-tags_get_3fa31c35.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-with-tags_get_3fa31c35.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-with-tags_get_3fa31c35.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_569aa33c-7acf-4061-abd0-4f2078e61ee8_datasets_filter_name__test-dataset-with-tags_get_3fa31c35.json
diff --git a/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_a9b86d7b-c35b-465f-9b99-01cff012fe52_datasets_filter_name__test-dataset-non-existent_get_94e11220.json b/dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_a9b86d7b-c35b-465f-9b99-01cff012fe52_datasets_filter_name__test-dataset-non-existent_get_94e11220.json
similarity index 100%
rename from tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_a9b86d7b-c35b-465f-9b99-01cff012fe52_datasets_filter_name__test-dataset-non-existent_get_94e11220.json
rename to dd-trace-py/tests/cassettes/datadog/datadog_api_v2_llm-obs_v1_a9b86d7b-c35b-465f-9b99-01cff012fe52_datasets_filter_name__test-dataset-non-existent_get_94e11220.json
diff --git a/tests/cassettes/genai/genai_v1beta_models_gemini-2.5-flash_generateContent_post_459b74a0.yaml b/dd-trace-py/tests/cassettes/genai/genai_v1beta_models_gemini-2.5-flash_generateContent_post_459b74a0.yaml
similarity index 100%
rename from tests/cassettes/genai/genai_v1beta_models_gemini-2.5-flash_generateContent_post_459b74a0.yaml
rename to dd-trace-py/tests/cassettes/genai/genai_v1beta_models_gemini-2.5-flash_generateContent_post_459b74a0.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_01c947d6.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_01c947d6.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_01c947d6.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_01c947d6.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_01c947d6.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_01c947d6.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_01c947d6.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_01c947d6.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_0fdef9ab.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_0fdef9ab.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_0fdef9ab.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_0fdef9ab.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_1d538f35.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_1d538f35.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_1d538f35.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_1d538f35.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_23dfb471.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_23dfb471.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_23dfb471.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_23dfb471.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_28ee53fa.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_28ee53fa.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_28ee53fa.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_28ee53fa.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_2eb535d8.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_2eb535d8.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_2eb535d8.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_2eb535d8.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_2eb535d8.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_2eb535d8.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_2eb535d8.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_2eb535d8.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_35680ba4.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_35680ba4.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_35680ba4.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_35680ba4.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_3c0e4b6c.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3c0e4b6c.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_3c0e4b6c.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3c0e4b6c.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_3c0e4b6c.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3c0e4b6c.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_3c0e4b6c.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3c0e4b6c.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_3eb1f03d.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3eb1f03d.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_3eb1f03d.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3eb1f03d.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_3eb1f03d.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3eb1f03d.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_3eb1f03d.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3eb1f03d.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_3f27d542.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3f27d542.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_3f27d542.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_3f27d542.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_42302850.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_42302850.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_42302850.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_42302850.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_448095a4.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_448095a4.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_448095a4.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_448095a4.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_495f6def.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_495f6def.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_495f6def.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_495f6def.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_5244958a.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5244958a.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_5244958a.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5244958a.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_5244958a.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5244958a.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_5244958a.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5244958a.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_573ba3c4.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_573ba3c4.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_573ba3c4.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_573ba3c4.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_5787a21c.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5787a21c.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_5787a21c.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5787a21c.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_57f3fae0.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_57f3fae0.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_57f3fae0.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_57f3fae0.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_5940fcfa.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5940fcfa.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_5940fcfa.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5940fcfa.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_5940fcfa.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5940fcfa.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_5940fcfa.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5940fcfa.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_5bb04f9e.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5bb04f9e.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_5bb04f9e.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5bb04f9e.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_5db41b2a.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5db41b2a.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_5db41b2a.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5db41b2a.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_5db41b2a.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5db41b2a.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_5db41b2a.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_5db41b2a.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_68f561a6.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_68f561a6.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_68f561a6.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_68f561a6.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_6c0d752b.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_6c0d752b.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_6c0d752b.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_6c0d752b.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_754a7349.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_754a7349.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_754a7349.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_754a7349.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_7d83634e.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_7d83634e.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_7d83634e.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_7d83634e.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_7d83634e.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_7d83634e.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_7d83634e.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_7d83634e.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_7efd1a80.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_7efd1a80.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_7efd1a80.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_7efd1a80.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_7efd1a80.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_7efd1a80.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_7efd1a80.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_7efd1a80.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_8071e4f7.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8071e4f7.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_8071e4f7.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8071e4f7.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_87cdfc2c.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_87cdfc2c.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_87cdfc2c.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_87cdfc2c.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_8b446c8e.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8b446c8e.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_8b446c8e.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8b446c8e.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_8b446c8e.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8b446c8e.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_8b446c8e.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8b446c8e.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_8fdba4e4.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8fdba4e4.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_8fdba4e4.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8fdba4e4.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_8fdba4e4.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8fdba4e4.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_8fdba4e4.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_8fdba4e4.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_930afee9.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_930afee9.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_930afee9.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_930afee9.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_930afee9.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_930afee9.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_930afee9.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_930afee9.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_93632758.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_93632758.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_93632758.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_93632758.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_9df957b1.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_9df957b1.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_9df957b1.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_9df957b1.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_9df957b1.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_9df957b1.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_9df957b1.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_9df957b1.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_9e52f9d0.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_9e52f9d0.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_9e52f9d0.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_9e52f9d0.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_a1bd9cc3.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_a1bd9cc3.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_a1bd9cc3.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_a1bd9cc3.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_a630cfaa.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_a630cfaa.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_a630cfaa.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_a630cfaa.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_ad49e5d4.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ad49e5d4.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_ad49e5d4.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ad49e5d4.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_ad49e5d4.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ad49e5d4.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_ad49e5d4.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ad49e5d4.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_ad7e4955.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ad7e4955.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_ad7e4955.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ad7e4955.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_b45798ae.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_b45798ae.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_b45798ae.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_b45798ae.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_b5942717.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_b5942717.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_b5942717.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_b5942717.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_b979ad33.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_b979ad33.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_b979ad33.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_b979ad33.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_c180b8dd.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_c180b8dd.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_c180b8dd.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_c180b8dd.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_c180b8dd.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_c180b8dd.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_c180b8dd.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_c180b8dd.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_c779ce98.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_c779ce98.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_c779ce98.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_c779ce98.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_caac525c.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_caac525c.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_caac525c.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_caac525c.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_caac525c.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_caac525c.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_caac525c.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_caac525c.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_cccf16c3.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_cccf16c3.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_cccf16c3.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_cccf16c3.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_ddb692c6.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ddb692c6.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_ddb692c6.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ddb692c6.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_ddb692c6.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ddb692c6.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_ddb692c6.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_ddb692c6.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_dedf669d.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_dedf669d.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_dedf669d.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_dedf669d.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_e16811d2.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_e16811d2.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_e16811d2.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_e16811d2.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_e21123cc.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_e21123cc.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_e21123cc.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_e21123cc.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_eb4ba851.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_eb4ba851.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_eb4ba851.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_eb4ba851.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_f9fa0b14.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_f9fa0b14.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_f9fa0b14.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_f9fa0b14.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_fcae7ba6.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_fcae7ba6.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_fcae7ba6.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_fcae7ba6.json
diff --git a/tests/cassettes/openai/openai_chat_completions_post_fcae7ba6.yaml b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_fcae7ba6.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_fcae7ba6.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_fcae7ba6.yaml
diff --git a/tests/cassettes/openai/openai_chat_completions_post_fd55b179.json b/dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_fd55b179.json
similarity index 100%
rename from tests/cassettes/openai/openai_chat_completions_post_fd55b179.json
rename to dd-trace-py/tests/cassettes/openai/openai_chat_completions_post_fd55b179.json
diff --git a/tests/cassettes/openai/openai_completions_post_028af692.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_028af692.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_028af692.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_028af692.json
diff --git a/tests/cassettes/openai/openai_completions_post_028af692.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_028af692.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_028af692.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_028af692.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_05ff41f7.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_05ff41f7.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_05ff41f7.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_05ff41f7.json
diff --git a/tests/cassettes/openai/openai_completions_post_076bb2cf.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_076bb2cf.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_076bb2cf.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_076bb2cf.json
diff --git a/tests/cassettes/openai/openai_completions_post_076bb2cf.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_076bb2cf.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_076bb2cf.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_076bb2cf.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_09f7a946.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_09f7a946.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_09f7a946.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_09f7a946.json
diff --git a/tests/cassettes/openai/openai_completions_post_09f7a946.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_09f7a946.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_09f7a946.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_09f7a946.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_0fdd1e55.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_0fdd1e55.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_0fdd1e55.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_0fdd1e55.json
diff --git a/tests/cassettes/openai/openai_completions_post_0fdd1e55.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_0fdd1e55.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_0fdd1e55.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_0fdd1e55.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_199eb572.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_199eb572.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_199eb572.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_199eb572.json
diff --git a/tests/cassettes/openai/openai_completions_post_1dd33b11.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_1dd33b11.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_1dd33b11.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_1dd33b11.json
diff --git a/tests/cassettes/openai/openai_completions_post_1dd33b11.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_1dd33b11.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_1dd33b11.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_1dd33b11.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_2dbdd8b1.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_2dbdd8b1.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_2dbdd8b1.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_2dbdd8b1.json
diff --git a/tests/cassettes/openai/openai_completions_post_32550a8a.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_32550a8a.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_32550a8a.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_32550a8a.json
diff --git a/tests/cassettes/openai/openai_completions_post_32550a8a.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_32550a8a.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_32550a8a.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_32550a8a.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_4527033c.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_4527033c.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_4527033c.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_4527033c.json
diff --git a/tests/cassettes/openai/openai_completions_post_4527033c.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_4527033c.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_4527033c.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_4527033c.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_46579144.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_46579144.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_46579144.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_46579144.json
diff --git a/tests/cassettes/openai/openai_completions_post_48ee296c.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_48ee296c.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_48ee296c.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_48ee296c.json
diff --git a/tests/cassettes/openai/openai_completions_post_4eee919c.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_4eee919c.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_4eee919c.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_4eee919c.json
diff --git a/tests/cassettes/openai/openai_completions_post_585b2ba8.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_585b2ba8.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_585b2ba8.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_585b2ba8.json
diff --git a/tests/cassettes/openai/openai_completions_post_585b2ba8.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_585b2ba8.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_585b2ba8.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_585b2ba8.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_5a8d3c22.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_5a8d3c22.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_5a8d3c22.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_5a8d3c22.json
diff --git a/tests/cassettes/openai/openai_completions_post_5a8d3c22.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_5a8d3c22.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_5a8d3c22.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_5a8d3c22.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_6033ffd1.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_6033ffd1.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_6033ffd1.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_6033ffd1.json
diff --git a/tests/cassettes/openai/openai_completions_post_685224b8.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_685224b8.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_685224b8.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_685224b8.json
diff --git a/tests/cassettes/openai/openai_completions_post_68f85366.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_68f85366.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_68f85366.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_68f85366.json
diff --git a/tests/cassettes/openai/openai_completions_post_68f85366.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_68f85366.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_68f85366.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_68f85366.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_6e95e620.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_6e95e620.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_6e95e620.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_6e95e620.json
diff --git a/tests/cassettes/openai/openai_completions_post_6e95e620.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_6e95e620.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_6e95e620.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_6e95e620.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_7b116e69.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_7b116e69.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_7b116e69.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_7b116e69.json
diff --git a/tests/cassettes/openai/openai_completions_post_8706eb93.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_8706eb93.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_8706eb93.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_8706eb93.json
diff --git a/tests/cassettes/openai/openai_completions_post_8706eb93.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_8706eb93.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_8706eb93.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_8706eb93.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_8899bb88.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_8899bb88.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_8899bb88.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_8899bb88.json
diff --git a/tests/cassettes/openai/openai_completions_post_8899bb88.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_8899bb88.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_8899bb88.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_8899bb88.yaml
diff --git a/tests/cassettes/openai/openai_completions_post_8af08079.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_8af08079.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_8af08079.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_8af08079.json
diff --git a/tests/cassettes/openai/openai_completions_post_8b80b4c0.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_8b80b4c0.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_8b80b4c0.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_8b80b4c0.json
diff --git a/tests/cassettes/openai/openai_completions_post_a23a180e.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_a23a180e.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_a23a180e.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_a23a180e.json
diff --git a/tests/cassettes/openai/openai_completions_post_b2bf069e.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_b2bf069e.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_b2bf069e.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_b2bf069e.json
diff --git a/tests/cassettes/openai/openai_completions_post_b77fd180.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_b77fd180.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_b77fd180.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_b77fd180.json
diff --git a/tests/cassettes/openai/openai_completions_post_ec9c4d9d.json b/dd-trace-py/tests/cassettes/openai/openai_completions_post_ec9c4d9d.json
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_ec9c4d9d.json
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_ec9c4d9d.json
diff --git a/tests/cassettes/openai/openai_completions_post_ec9c4d9d.yaml b/dd-trace-py/tests/cassettes/openai/openai_completions_post_ec9c4d9d.yaml
similarity index 100%
rename from tests/cassettes/openai/openai_completions_post_ec9c4d9d.yaml
rename to dd-trace-py/tests/cassettes/openai/openai_completions_post_ec9c4d9d.yaml
diff --git a/tests/cassettes/openai/openai_embeddings_post_1748947d.json b/dd-trace-py/tests/cassettes/openai/openai_embeddings_post_1748947d.json
similarity index 100%
rename from tests/cassettes/openai/openai_embeddings_post_1748947d.json
rename to dd-trace-py/tests/cassettes/openai/openai_embeddings_post_1748947d.json
diff --git a/tests/cassettes/openai/openai_embeddings_post_5f290ee6.json b/dd-trace-py/tests/cassettes/openai/openai_embeddings_post_5f290ee6.json
similarity index 100%
rename from tests/cassettes/openai/openai_embeddings_post_5f290ee6.json
rename to dd-trace-py/tests/cassettes/openai/openai_embeddings_post_5f290ee6.json
diff --git a/tests/cassettes/openai/openai_embeddings_post_6efa595c.json b/dd-trace-py/tests/cassettes/openai/openai_embeddings_post_6efa595c.json
similarity index 100%
rename from tests/cassettes/openai/openai_embeddings_post_6efa595c.json
rename to dd-trace-py/tests/cassettes/openai/openai_embeddings_post_6efa595c.json
diff --git a/tests/cassettes/openai/openai_embeddings_post_8c74532d.json b/dd-trace-py/tests/cassettes/openai/openai_embeddings_post_8c74532d.json
similarity index 100%
rename from tests/cassettes/openai/openai_embeddings_post_8c74532d.json
rename to dd-trace-py/tests/cassettes/openai/openai_embeddings_post_8c74532d.json
diff --git a/tests/cassettes/openai/openai_embeddings_post_8edc8b38.json b/dd-trace-py/tests/cassettes/openai/openai_embeddings_post_8edc8b38.json
similarity index 100%
rename from tests/cassettes/openai/openai_embeddings_post_8edc8b38.json
rename to dd-trace-py/tests/cassettes/openai/openai_embeddings_post_8edc8b38.json
diff --git a/tests/cassettes/openai/openai_embeddings_post_acabe5b2.json b/dd-trace-py/tests/cassettes/openai/openai_embeddings_post_acabe5b2.json
similarity index 100%
rename from tests/cassettes/openai/openai_embeddings_post_acabe5b2.json
rename to dd-trace-py/tests/cassettes/openai/openai_embeddings_post_acabe5b2.json
diff --git a/tests/cassettes/openai/openai_embeddings_post_dcf2f142.json b/dd-trace-py/tests/cassettes/openai/openai_embeddings_post_dcf2f142.json
similarity index 100%
rename from tests/cassettes/openai/openai_embeddings_post_dcf2f142.json
rename to dd-trace-py/tests/cassettes/openai/openai_embeddings_post_dcf2f142.json
diff --git a/tests/cassettes/openai/openai_embeddings_post_fe2b2aef.json b/dd-trace-py/tests/cassettes/openai/openai_embeddings_post_fe2b2aef.json
similarity index 100%
rename from tests/cassettes/openai/openai_embeddings_post_fe2b2aef.json
rename to dd-trace-py/tests/cassettes/openai/openai_embeddings_post_fe2b2aef.json
diff --git a/tests/cassettes/openai/openai_responses_post_aaef3e68.json b/dd-trace-py/tests/cassettes/openai/openai_responses_post_aaef3e68.json
similarity index 100%
rename from tests/cassettes/openai/openai_responses_post_aaef3e68.json
rename to dd-trace-py/tests/cassettes/openai/openai_responses_post_aaef3e68.json
diff --git a/tests/cassettes/openai/openai_responses_post_eae4a165.json b/dd-trace-py/tests/cassettes/openai/openai_responses_post_eae4a165.json
similarity index 100%
rename from tests/cassettes/openai/openai_responses_post_eae4a165.json
rename to dd-trace-py/tests/cassettes/openai/openai_responses_post_eae4a165.json
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.send_score_metric.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.send_score_metric.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.send_score_metric.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.send_score_metric.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_categorical_metric.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_categorical_metric.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_categorical_metric.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_categorical_metric.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_multiple_events.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_multiple_events.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_multiple_events.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_multiple_events.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_score_metric.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_score_metric.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_score_metric.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_score_metric.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_timed_events.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_timed_events.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_timed_events.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_eval_metric_agentless_writer.test_send_timed_events.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_evaluator_runner.test_evaluator_runner_periodic_enqueues_eval_metric.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_evaluator_runner.test_evaluator_runner_periodic_enqueues_eval_metric.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_evaluator_runner.test_evaluator_runner_periodic_enqueues_eval_metric.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_evaluator_runner.test_evaluator_runner_periodic_enqueues_eval_metric.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_evaluator_runner.test_evaluator_runner_timed_enqueues_eval_metric.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_evaluator_runner.test_evaluator_runner_timed_enqueues_eval_metric.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_evaluator_runner.test_evaluator_runner_timed_enqueues_eval_metric.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_evaluator_runner.test_evaluator_runner_timed_enqueues_eval_metric.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.answer_relevancy_inference.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.answer_relevancy_inference.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.answer_relevancy_inference.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.answer_relevancy_inference.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.emits_traces_and_evaluations_on_exit.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.emits_traces_and_evaluations_on_exit.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.emits_traces_and_evaluations_on_exit.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.emits_traces_and_evaluations_on_exit.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_context_precision_multiple_context.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_context_precision_multiple_context.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_context_precision_multiple_context.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_context_precision_multiple_context.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_context_precision_single_context.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_context_precision_single_context.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_context_precision_single_context.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_context_precision_single_context.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_emits_traces.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_emits_traces.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_emits_traces.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_emits_traces.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation_on_span_with_custom_keys.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation_on_span_with_custom_keys.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation_on_span_with_custom_keys.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation_on_span_with_custom_keys.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation_on_span_with_question_in_messages.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation_on_span_with_question_in_messages.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation_on_span_with_question_in_messages.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_ragas_evaluators.test_ragas_faithfulness_submits_evaluation_on_span_with_question_in_messages.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_chat_completion_event.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_chat_completion_event.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_chat_completion_event.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_chat_completion_event.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_completion_event.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_completion_event.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_completion_event.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_completion_event.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_multiple_events.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_multiple_events.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_multiple_events.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_multiple_events.yaml
diff --git a/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_timed_events.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_timed_events.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_timed_events.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_llmobs_span_agentless_writer.test_send_timed_events.yaml
diff --git a/tests/cassettes/tests.llmobs.test_logger.test_send_log.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_logger.test_send_log.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_logger.test_send_log.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_logger.test_send_log.yaml
diff --git a/tests/cassettes/tests.llmobs.test_logger.test_send_log_bad_api_key.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_logger.test_send_log_bad_api_key.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_logger.test_send_log_bad_api_key.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_logger.test_send_log_bad_api_key.yaml
diff --git a/tests/cassettes/tests.llmobs.test_logger.test_send_on_exit.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_logger.test_send_on_exit.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_logger.test_send_on_exit.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_logger.test_send_on_exit.yaml
diff --git a/tests/cassettes/tests.llmobs.test_logger.test_send_timed.yaml b/dd-trace-py/tests/cassettes/tests.llmobs.test_logger.test_send_timed.yaml
similarity index 100%
rename from tests/cassettes/tests.llmobs.test_logger.test_send_timed.yaml
rename to dd-trace-py/tests/cassettes/tests.llmobs.test_logger.test_send_timed.yaml
diff --git a/tests/cassettes/vertexai/vertexai_generate_content_boolean.yaml b/dd-trace-py/tests/cassettes/vertexai/vertexai_generate_content_boolean.yaml
similarity index 100%
rename from tests/cassettes/vertexai/vertexai_generate_content_boolean.yaml
rename to dd-trace-py/tests/cassettes/vertexai/vertexai_generate_content_boolean.yaml
diff --git a/tests/cassettes/vertexai/vertexai_generate_content_categorical.yaml b/dd-trace-py/tests/cassettes/vertexai/vertexai_generate_content_categorical.yaml
similarity index 100%
rename from tests/cassettes/vertexai/vertexai_generate_content_categorical.yaml
rename to dd-trace-py/tests/cassettes/vertexai/vertexai_generate_content_categorical.yaml
diff --git a/tests/cassettes/vertexai/vertexai_generate_content_score.yaml b/dd-trace-py/tests/cassettes/vertexai/vertexai_generate_content_score.yaml
similarity index 100%
rename from tests/cassettes/vertexai/vertexai_generate_content_score.yaml
rename to dd-trace-py/tests/cassettes/vertexai/vertexai_generate_content_score.yaml
diff --git a/tests/ci_visibility/__init__.py b/dd-trace-py/tests/ci_visibility/__init__.py
similarity index 100%
rename from tests/ci_visibility/__init__.py
rename to dd-trace-py/tests/ci_visibility/__init__.py
diff --git a/tests/ci_visibility/api/README.md b/dd-trace-py/tests/ci_visibility/api/README.md
similarity index 100%
rename from tests/ci_visibility/api/README.md
rename to dd-trace-py/tests/ci_visibility/api/README.md
diff --git a/tests/ci_visibility/api/fake_runner_all_fail.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_all_fail.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_all_fail.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_all_fail.py
diff --git a/tests/ci_visibility/api/fake_runner_all_itr_skip_suite_level.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_all_itr_skip_suite_level.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_all_itr_skip_suite_level.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_all_itr_skip_suite_level.py
diff --git a/tests/ci_visibility/api/fake_runner_all_itr_skip_test_level.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_all_itr_skip_test_level.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_all_itr_skip_test_level.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_all_itr_skip_test_level.py
diff --git a/tests/ci_visibility/api/fake_runner_all_pass.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_all_pass.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_all_pass.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_all_pass.py
diff --git a/tests/ci_visibility/api/fake_runner_all_skip.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_all_skip.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_all_skip.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_all_skip.py
diff --git a/tests/ci_visibility/api/fake_runner_atr_mix_fail.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_atr_mix_fail.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_atr_mix_fail.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_atr_mix_fail.py
diff --git a/tests/ci_visibility/api/fake_runner_atr_mix_pass.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_atr_mix_pass.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_atr_mix_pass.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_atr_mix_pass.py
diff --git a/tests/ci_visibility/api/fake_runner_efd_all_pass.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_efd_all_pass.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_efd_all_pass.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_efd_all_pass.py
diff --git a/tests/ci_visibility/api/fake_runner_efd_faulty_session.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_efd_faulty_session.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_efd_faulty_session.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_efd_faulty_session.py
diff --git a/tests/ci_visibility/api/fake_runner_efd_mix_fail.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_efd_mix_fail.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_efd_mix_fail.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_efd_mix_fail.py
diff --git a/tests/ci_visibility/api/fake_runner_efd_mix_pass.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_efd_mix_pass.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_efd_mix_pass.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_efd_mix_pass.py
diff --git a/tests/ci_visibility/api/fake_runner_mix_fail.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_mix_fail.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_mix_fail.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_mix_fail.py
diff --git a/tests/ci_visibility/api/fake_runner_mix_fail_itr_suite_level.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_mix_fail_itr_suite_level.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_mix_fail_itr_suite_level.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_mix_fail_itr_suite_level.py
diff --git a/tests/ci_visibility/api/fake_runner_mix_fail_itr_test_level.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_mix_fail_itr_test_level.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_mix_fail_itr_test_level.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_mix_fail_itr_test_level.py
diff --git a/tests/ci_visibility/api/fake_runner_mix_pass.py b/dd-trace-py/tests/ci_visibility/api/fake_runner_mix_pass.py
similarity index 100%
rename from tests/ci_visibility/api/fake_runner_mix_pass.py
rename to dd-trace-py/tests/ci_visibility/api/fake_runner_mix_pass.py
diff --git a/tests/ci_visibility/api/test_api_fake_runners.py b/dd-trace-py/tests/ci_visibility/api/test_api_fake_runners.py
similarity index 100%
rename from tests/ci_visibility/api/test_api_fake_runners.py
rename to dd-trace-py/tests/ci_visibility/api/test_api_fake_runners.py
diff --git a/tests/ci_visibility/api/test_ext_test_visibility_api.py b/dd-trace-py/tests/ci_visibility/api/test_ext_test_visibility_api.py
similarity index 100%
rename from tests/ci_visibility/api/test_ext_test_visibility_api.py
rename to dd-trace-py/tests/ci_visibility/api/test_ext_test_visibility_api.py
diff --git a/tests/ci_visibility/api/test_internal_ci_visibility_api.py b/dd-trace-py/tests/ci_visibility/api/test_internal_ci_visibility_api.py
similarity index 100%
rename from tests/ci_visibility/api/test_internal_ci_visibility_api.py
rename to dd-trace-py/tests/ci_visibility/api/test_internal_ci_visibility_api.py
diff --git a/tests/ci_visibility/api/test_internal_test_visibility_api.py b/dd-trace-py/tests/ci_visibility/api/test_internal_test_visibility_api.py
similarity index 100%
rename from tests/ci_visibility/api/test_internal_test_visibility_api.py
rename to dd-trace-py/tests/ci_visibility/api/test_internal_test_visibility_api.py
diff --git a/tests/ci_visibility/api/test_two_phase_finish.py b/dd-trace-py/tests/ci_visibility/api/test_two_phase_finish.py
similarity index 100%
rename from tests/ci_visibility/api/test_two_phase_finish.py
rename to dd-trace-py/tests/ci_visibility/api/test_two_phase_finish.py
diff --git a/tests/ci_visibility/api_client/_util.py b/dd-trace-py/tests/ci_visibility/api_client/_util.py
similarity index 100%
rename from tests/ci_visibility/api_client/_util.py
rename to dd-trace-py/tests/ci_visibility/api_client/_util.py
diff --git a/tests/ci_visibility/api_client/real_world_skippable_response_flask_suite_level.json b/dd-trace-py/tests/ci_visibility/api_client/real_world_skippable_response_flask_suite_level.json
similarity index 100%
rename from tests/ci_visibility/api_client/real_world_skippable_response_flask_suite_level.json
rename to dd-trace-py/tests/ci_visibility/api_client/real_world_skippable_response_flask_suite_level.json
diff --git a/tests/ci_visibility/api_client/real_world_skippable_response_flask_test_level.json b/dd-trace-py/tests/ci_visibility/api_client/real_world_skippable_response_flask_test_level.json
similarity index 100%
rename from tests/ci_visibility/api_client/real_world_skippable_response_flask_test_level.json
rename to dd-trace-py/tests/ci_visibility/api_client/real_world_skippable_response_flask_test_level.json
diff --git a/tests/ci_visibility/api_client/test_ci_visibility_api_client.py b/dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client.py
similarity index 100%
rename from tests/ci_visibility/api_client/test_ci_visibility_api_client.py
rename to dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client.py
diff --git a/tests/ci_visibility/api_client/test_ci_visibility_api_client_caching.py b/dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_caching.py
similarity index 100%
rename from tests/ci_visibility/api_client/test_ci_visibility_api_client_caching.py
rename to dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_caching.py
diff --git a/tests/ci_visibility/api_client/test_ci_visibility_api_client_setting_responses.py b/dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_setting_responses.py
similarity index 100%
rename from tests/ci_visibility/api_client/test_ci_visibility_api_client_setting_responses.py
rename to dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_setting_responses.py
diff --git a/tests/ci_visibility/api_client/test_ci_visibility_api_client_skippable_real_world_responses.py b/dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_skippable_real_world_responses.py
similarity index 100%
rename from tests/ci_visibility/api_client/test_ci_visibility_api_client_skippable_real_world_responses.py
rename to dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_skippable_real_world_responses.py
diff --git a/tests/ci_visibility/api_client/test_ci_visibility_api_client_skippable_responses.py b/dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_skippable_responses.py
similarity index 100%
rename from tests/ci_visibility/api_client/test_ci_visibility_api_client_skippable_responses.py
rename to dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_skippable_responses.py
diff --git a/tests/ci_visibility/api_client/test_ci_visibility_api_client_test_management_responses.py b/dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_test_management_responses.py
similarity index 100%
rename from tests/ci_visibility/api_client/test_ci_visibility_api_client_test_management_responses.py
rename to dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_test_management_responses.py
diff --git a/tests/ci_visibility/api_client/test_ci_visibility_api_client_unique_tests_responses.py b/dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_unique_tests_responses.py
similarity index 100%
rename from tests/ci_visibility/api_client/test_ci_visibility_api_client_unique_tests_responses.py
rename to dd-trace-py/tests/ci_visibility/api_client/test_ci_visibility_api_client_unique_tests_responses.py
diff --git a/tests/ci_visibility/conftest.py b/dd-trace-py/tests/ci_visibility/conftest.py
similarity index 100%
rename from tests/ci_visibility/conftest.py
rename to dd-trace-py/tests/ci_visibility/conftest.py
diff --git a/tests/ci_visibility/suitespec.yml b/dd-trace-py/tests/ci_visibility/suitespec.yml
similarity index 100%
rename from tests/ci_visibility/suitespec.yml
rename to dd-trace-py/tests/ci_visibility/suitespec.yml
diff --git a/tests/ci_visibility/test_atr.py b/dd-trace-py/tests/ci_visibility/test_atr.py
similarity index 100%
rename from tests/ci_visibility/test_atr.py
rename to dd-trace-py/tests/ci_visibility/test_atr.py
diff --git a/tests/ci_visibility/test_ci_visibility.py b/dd-trace-py/tests/ci_visibility/test_ci_visibility.py
similarity index 100%
rename from tests/ci_visibility/test_ci_visibility.py
rename to dd-trace-py/tests/ci_visibility/test_ci_visibility.py
diff --git a/tests/ci_visibility/test_ci_visibility_check_enabled_features.py b/dd-trace-py/tests/ci_visibility/test_ci_visibility_check_enabled_features.py
similarity index 100%
rename from tests/ci_visibility/test_ci_visibility_check_enabled_features.py
rename to dd-trace-py/tests/ci_visibility/test_ci_visibility_check_enabled_features.py
diff --git a/tests/ci_visibility/test_cli.py b/dd-trace-py/tests/ci_visibility/test_cli.py
similarity index 100%
rename from tests/ci_visibility/test_cli.py
rename to dd-trace-py/tests/ci_visibility/test_cli.py
diff --git a/tests/ci_visibility/test_coverage.py b/dd-trace-py/tests/ci_visibility/test_coverage.py
similarity index 100%
rename from tests/ci_visibility/test_coverage.py
rename to dd-trace-py/tests/ci_visibility/test_coverage.py
diff --git a/tests/ci_visibility/test_coverage_report_encoder.py b/dd-trace-py/tests/ci_visibility/test_coverage_report_encoder.py
similarity index 100%
rename from tests/ci_visibility/test_coverage_report_encoder.py
rename to dd-trace-py/tests/ci_visibility/test_coverage_report_encoder.py
diff --git a/tests/ci_visibility/test_efd.py b/dd-trace-py/tests/ci_visibility/test_efd.py
similarity index 100%
rename from tests/ci_visibility/test_efd.py
rename to dd-trace-py/tests/ci_visibility/test_efd.py
diff --git a/tests/ci_visibility/test_encoder.py b/dd-trace-py/tests/ci_visibility/test_encoder.py
similarity index 100%
rename from tests/ci_visibility/test_encoder.py
rename to dd-trace-py/tests/ci_visibility/test_encoder.py
diff --git a/tests/ci_visibility/test_git_data.py b/dd-trace-py/tests/ci_visibility/test_git_data.py
similarity index 100%
rename from tests/ci_visibility/test_git_data.py
rename to dd-trace-py/tests/ci_visibility/test_git_data.py
diff --git a/tests/ci_visibility/test_is_user_provided_service.py b/dd-trace-py/tests/ci_visibility/test_is_user_provided_service.py
similarity index 100%
rename from tests/ci_visibility/test_is_user_provided_service.py
rename to dd-trace-py/tests/ci_visibility/test_is_user_provided_service.py
diff --git a/tests/ci_visibility/test_quarantine.py b/dd-trace-py/tests/ci_visibility/test_quarantine.py
similarity index 100%
rename from tests/ci_visibility/test_quarantine.py
rename to dd-trace-py/tests/ci_visibility/test_quarantine.py
diff --git a/tests/ci_visibility/test_recorder_coverage_upload.py b/dd-trace-py/tests/ci_visibility/test_recorder_coverage_upload.py
similarity index 100%
rename from tests/ci_visibility/test_recorder_coverage_upload.py
rename to dd-trace-py/tests/ci_visibility/test_recorder_coverage_upload.py
diff --git a/tests/ci_visibility/test_utils.py b/dd-trace-py/tests/ci_visibility/test_utils.py
similarity index 100%
rename from tests/ci_visibility/test_utils.py
rename to dd-trace-py/tests/ci_visibility/test_utils.py
diff --git a/tests/ci_visibility/test_writer_coverage_client.py b/dd-trace-py/tests/ci_visibility/test_writer_coverage_client.py
similarity index 100%
rename from tests/ci_visibility/test_writer_coverage_client.py
rename to dd-trace-py/tests/ci_visibility/test_writer_coverage_client.py
diff --git a/tests/ci_visibility/util.py b/dd-trace-py/tests/ci_visibility/util.py
similarity index 100%
rename from tests/ci_visibility/util.py
rename to dd-trace-py/tests/ci_visibility/util.py
diff --git a/tests/commands/__init__.py b/dd-trace-py/tests/commands/__init__.py
similarity index 100%
rename from tests/commands/__init__.py
rename to dd-trace-py/tests/commands/__init__.py
diff --git a/tests/commands/bootstrap/__init__.py b/dd-trace-py/tests/commands/bootstrap/__init__.py
similarity index 100%
rename from tests/commands/bootstrap/__init__.py
rename to dd-trace-py/tests/commands/bootstrap/__init__.py
diff --git a/tests/commands/bootstrap/sitecustomize.py b/dd-trace-py/tests/commands/bootstrap/sitecustomize.py
similarity index 100%
rename from tests/commands/bootstrap/sitecustomize.py
rename to dd-trace-py/tests/commands/bootstrap/sitecustomize.py
diff --git a/tests/commands/ddtrace_minimal.py b/dd-trace-py/tests/commands/ddtrace_minimal.py
similarity index 100%
rename from tests/commands/ddtrace_minimal.py
rename to dd-trace-py/tests/commands/ddtrace_minimal.py
diff --git a/tests/commands/ddtrace_run_argv.py b/dd-trace-py/tests/commands/ddtrace_run_argv.py
similarity index 100%
rename from tests/commands/ddtrace_run_argv.py
rename to dd-trace-py/tests/commands/ddtrace_run_argv.py
diff --git a/tests/commands/ddtrace_run_debug.py b/dd-trace-py/tests/commands/ddtrace_run_debug.py
similarity index 100%
rename from tests/commands/ddtrace_run_debug.py
rename to dd-trace-py/tests/commands/ddtrace_run_debug.py
diff --git a/tests/commands/ddtrace_run_disabled.py b/dd-trace-py/tests/commands/ddtrace_run_disabled.py
similarity index 100%
rename from tests/commands/ddtrace_run_disabled.py
rename to dd-trace-py/tests/commands/ddtrace_run_disabled.py
diff --git a/tests/commands/ddtrace_run_dogstatsd.py b/dd-trace-py/tests/commands/ddtrace_run_dogstatsd.py
similarity index 100%
rename from tests/commands/ddtrace_run_dogstatsd.py
rename to dd-trace-py/tests/commands/ddtrace_run_dogstatsd.py
diff --git a/tests/commands/ddtrace_run_enabled.py b/dd-trace-py/tests/commands/ddtrace_run_enabled.py
similarity index 100%
rename from tests/commands/ddtrace_run_enabled.py
rename to dd-trace-py/tests/commands/ddtrace_run_enabled.py
diff --git a/tests/commands/ddtrace_run_gevent.py b/dd-trace-py/tests/commands/ddtrace_run_gevent.py
similarity index 100%
rename from tests/commands/ddtrace_run_gevent.py
rename to dd-trace-py/tests/commands/ddtrace_run_gevent.py
diff --git a/tests/commands/ddtrace_run_hostname.py b/dd-trace-py/tests/commands/ddtrace_run_hostname.py
similarity index 100%
rename from tests/commands/ddtrace_run_hostname.py
rename to dd-trace-py/tests/commands/ddtrace_run_hostname.py
diff --git a/tests/commands/ddtrace_run_integration.py b/dd-trace-py/tests/commands/ddtrace_run_integration.py
similarity index 100%
rename from tests/commands/ddtrace_run_integration.py
rename to dd-trace-py/tests/commands/ddtrace_run_integration.py
diff --git a/tests/commands/ddtrace_run_logs_injection.py b/dd-trace-py/tests/commands/ddtrace_run_logs_injection.py
similarity index 100%
rename from tests/commands/ddtrace_run_logs_injection.py
rename to dd-trace-py/tests/commands/ddtrace_run_logs_injection.py
diff --git a/tests/commands/ddtrace_run_no_debug.py b/dd-trace-py/tests/commands/ddtrace_run_no_debug.py
similarity index 100%
rename from tests/commands/ddtrace_run_no_debug.py
rename to dd-trace-py/tests/commands/ddtrace_run_no_debug.py
diff --git a/tests/commands/ddtrace_run_patched_modules.py b/dd-trace-py/tests/commands/ddtrace_run_patched_modules.py
similarity index 100%
rename from tests/commands/ddtrace_run_patched_modules.py
rename to dd-trace-py/tests/commands/ddtrace_run_patched_modules.py
diff --git a/tests/commands/ddtrace_run_patched_modules_overrides.py b/dd-trace-py/tests/commands/ddtrace_run_patched_modules_overrides.py
similarity index 100%
rename from tests/commands/ddtrace_run_patched_modules_overrides.py
rename to dd-trace-py/tests/commands/ddtrace_run_patched_modules_overrides.py
diff --git a/tests/commands/ddtrace_run_profiling.py b/dd-trace-py/tests/commands/ddtrace_run_profiling.py
similarity index 100%
rename from tests/commands/ddtrace_run_profiling.py
rename to dd-trace-py/tests/commands/ddtrace_run_profiling.py
diff --git a/tests/commands/ddtrace_run_sitecustomize.py b/dd-trace-py/tests/commands/ddtrace_run_sitecustomize.py
similarity index 100%
rename from tests/commands/ddtrace_run_sitecustomize.py
rename to dd-trace-py/tests/commands/ddtrace_run_sitecustomize.py
diff --git a/tests/commands/test_runner.py b/dd-trace-py/tests/commands/test_runner.py
similarity index 100%
rename from tests/commands/test_runner.py
rename to dd-trace-py/tests/commands/test_runner.py
diff --git a/tests/conftest.py b/dd-trace-py/tests/conftest.py
similarity index 100%
rename from tests/conftest.py
rename to dd-trace-py/tests/conftest.py
diff --git a/tests/contrib/__init__.py b/dd-trace-py/tests/contrib/__init__.py
similarity index 100%
rename from tests/contrib/__init__.py
rename to dd-trace-py/tests/contrib/__init__.py
diff --git a/tests/contrib/aiobotocore/__init__.py b/dd-trace-py/tests/contrib/aiobotocore/__init__.py
similarity index 100%
rename from tests/contrib/aiobotocore/__init__.py
rename to dd-trace-py/tests/contrib/aiobotocore/__init__.py
diff --git a/tests/contrib/aiobotocore/test.py b/dd-trace-py/tests/contrib/aiobotocore/test.py
similarity index 100%
rename from tests/contrib/aiobotocore/test.py
rename to dd-trace-py/tests/contrib/aiobotocore/test.py
diff --git a/tests/contrib/aiobotocore/test_aiobotocore_patch.py b/dd-trace-py/tests/contrib/aiobotocore/test_aiobotocore_patch.py
similarity index 100%
rename from tests/contrib/aiobotocore/test_aiobotocore_patch.py
rename to dd-trace-py/tests/contrib/aiobotocore/test_aiobotocore_patch.py
diff --git a/tests/contrib/aiobotocore/utils.py b/dd-trace-py/tests/contrib/aiobotocore/utils.py
similarity index 100%
rename from tests/contrib/aiobotocore/utils.py
rename to dd-trace-py/tests/contrib/aiobotocore/utils.py
diff --git a/tests/contrib/aiohttp/__init__.py b/dd-trace-py/tests/contrib/aiohttp/__init__.py
similarity index 100%
rename from tests/contrib/aiohttp/__init__.py
rename to dd-trace-py/tests/contrib/aiohttp/__init__.py
diff --git a/tests/contrib/aiohttp/app/__init__.py b/dd-trace-py/tests/contrib/aiohttp/app/__init__.py
similarity index 100%
rename from tests/contrib/aiohttp/app/__init__.py
rename to dd-trace-py/tests/contrib/aiohttp/app/__init__.py
diff --git a/tests/contrib/aiohttp/app/statics/empty.txt b/dd-trace-py/tests/contrib/aiohttp/app/statics/empty.txt
similarity index 100%
rename from tests/contrib/aiohttp/app/statics/empty.txt
rename to dd-trace-py/tests/contrib/aiohttp/app/statics/empty.txt
diff --git a/tests/contrib/aiohttp/app/templates/__init__.py b/dd-trace-py/tests/contrib/aiohttp/app/templates/__init__.py
similarity index 100%
rename from tests/contrib/aiohttp/app/templates/__init__.py
rename to dd-trace-py/tests/contrib/aiohttp/app/templates/__init__.py
diff --git a/tests/contrib/aiohttp/app/templates/template.jinja2 b/dd-trace-py/tests/contrib/aiohttp/app/templates/template.jinja2
similarity index 100%
rename from tests/contrib/aiohttp/app/templates/template.jinja2
rename to dd-trace-py/tests/contrib/aiohttp/app/templates/template.jinja2
diff --git a/tests/contrib/aiohttp/app/web.py b/dd-trace-py/tests/contrib/aiohttp/app/web.py
similarity index 100%
rename from tests/contrib/aiohttp/app/web.py
rename to dd-trace-py/tests/contrib/aiohttp/app/web.py
diff --git a/tests/contrib/aiohttp/conftest.py b/dd-trace-py/tests/contrib/aiohttp/conftest.py
similarity index 100%
rename from tests/contrib/aiohttp/conftest.py
rename to dd-trace-py/tests/contrib/aiohttp/conftest.py
diff --git a/tests/contrib/aiohttp/test_aiohttp_client.py b/dd-trace-py/tests/contrib/aiohttp/test_aiohttp_client.py
similarity index 100%
rename from tests/contrib/aiohttp/test_aiohttp_client.py
rename to dd-trace-py/tests/contrib/aiohttp/test_aiohttp_client.py
diff --git a/tests/contrib/aiohttp/test_aiohttp_patch.py b/dd-trace-py/tests/contrib/aiohttp/test_aiohttp_patch.py
similarity index 100%
rename from tests/contrib/aiohttp/test_aiohttp_patch.py
rename to dd-trace-py/tests/contrib/aiohttp/test_aiohttp_patch.py
diff --git a/tests/contrib/aiohttp/test_middleware.py b/dd-trace-py/tests/contrib/aiohttp/test_middleware.py
similarity index 100%
rename from tests/contrib/aiohttp/test_middleware.py
rename to dd-trace-py/tests/contrib/aiohttp/test_middleware.py
diff --git a/tests/contrib/aiohttp/test_request.py b/dd-trace-py/tests/contrib/aiohttp/test_request.py
similarity index 100%
rename from tests/contrib/aiohttp/test_request.py
rename to dd-trace-py/tests/contrib/aiohttp/test_request.py
diff --git a/tests/contrib/aiohttp/test_request_safety.py b/dd-trace-py/tests/contrib/aiohttp/test_request_safety.py
similarity index 100%
rename from tests/contrib/aiohttp/test_request_safety.py
rename to dd-trace-py/tests/contrib/aiohttp/test_request_safety.py
diff --git a/tests/contrib/aiohttp_jinja2/__init__.py b/dd-trace-py/tests/contrib/aiohttp_jinja2/__init__.py
similarity index 100%
rename from tests/contrib/aiohttp_jinja2/__init__.py
rename to dd-trace-py/tests/contrib/aiohttp_jinja2/__init__.py
diff --git a/tests/contrib/aiohttp_jinja2/conftest.py b/dd-trace-py/tests/contrib/aiohttp_jinja2/conftest.py
similarity index 100%
rename from tests/contrib/aiohttp_jinja2/conftest.py
rename to dd-trace-py/tests/contrib/aiohttp_jinja2/conftest.py
diff --git a/tests/contrib/aiohttp_jinja2/test_aiohttp_jinja2.py b/dd-trace-py/tests/contrib/aiohttp_jinja2/test_aiohttp_jinja2.py
similarity index 100%
rename from tests/contrib/aiohttp_jinja2/test_aiohttp_jinja2.py
rename to dd-trace-py/tests/contrib/aiohttp_jinja2/test_aiohttp_jinja2.py
diff --git a/tests/contrib/aiohttp_jinja2/test_aiohttp_jinja2_patch.py b/dd-trace-py/tests/contrib/aiohttp_jinja2/test_aiohttp_jinja2_patch.py
similarity index 100%
rename from tests/contrib/aiohttp_jinja2/test_aiohttp_jinja2_patch.py
rename to dd-trace-py/tests/contrib/aiohttp_jinja2/test_aiohttp_jinja2_patch.py
diff --git a/tests/contrib/aiokafka/__init__.py b/dd-trace-py/tests/contrib/aiokafka/__init__.py
similarity index 100%
rename from tests/contrib/aiokafka/__init__.py
rename to dd-trace-py/tests/contrib/aiokafka/__init__.py
diff --git a/tests/contrib/aiokafka/test_aiokafka.py b/dd-trace-py/tests/contrib/aiokafka/test_aiokafka.py
similarity index 100%
rename from tests/contrib/aiokafka/test_aiokafka.py
rename to dd-trace-py/tests/contrib/aiokafka/test_aiokafka.py
diff --git a/tests/contrib/aiokafka/test_aiokafka_dsm.py b/dd-trace-py/tests/contrib/aiokafka/test_aiokafka_dsm.py
similarity index 100%
rename from tests/contrib/aiokafka/test_aiokafka_dsm.py
rename to dd-trace-py/tests/contrib/aiokafka/test_aiokafka_dsm.py
diff --git a/tests/contrib/aiokafka/test_aiokafka_patch.py b/dd-trace-py/tests/contrib/aiokafka/test_aiokafka_patch.py
similarity index 100%
rename from tests/contrib/aiokafka/test_aiokafka_patch.py
rename to dd-trace-py/tests/contrib/aiokafka/test_aiokafka_patch.py
diff --git a/tests/contrib/aiokafka/utils.py b/dd-trace-py/tests/contrib/aiokafka/utils.py
similarity index 100%
rename from tests/contrib/aiokafka/utils.py
rename to dd-trace-py/tests/contrib/aiokafka/utils.py
diff --git a/tests/contrib/aiomysql/__init__.py b/dd-trace-py/tests/contrib/aiomysql/__init__.py
similarity index 100%
rename from tests/contrib/aiomysql/__init__.py
rename to dd-trace-py/tests/contrib/aiomysql/__init__.py
diff --git a/tests/contrib/aiomysql/test_aiomysql.py b/dd-trace-py/tests/contrib/aiomysql/test_aiomysql.py
similarity index 100%
rename from tests/contrib/aiomysql/test_aiomysql.py
rename to dd-trace-py/tests/contrib/aiomysql/test_aiomysql.py
diff --git a/tests/contrib/aiomysql/test_aiomysql_patch.py b/dd-trace-py/tests/contrib/aiomysql/test_aiomysql_patch.py
similarity index 100%
rename from tests/contrib/aiomysql/test_aiomysql_patch.py
rename to dd-trace-py/tests/contrib/aiomysql/test_aiomysql_patch.py
diff --git a/tests/contrib/aiopg/__init__.py b/dd-trace-py/tests/contrib/aiopg/__init__.py
similarity index 100%
rename from tests/contrib/aiopg/__init__.py
rename to dd-trace-py/tests/contrib/aiopg/__init__.py
diff --git a/tests/contrib/aiopg/test.py b/dd-trace-py/tests/contrib/aiopg/test.py
similarity index 100%
rename from tests/contrib/aiopg/test.py
rename to dd-trace-py/tests/contrib/aiopg/test.py
diff --git a/tests/contrib/aiopg/test_aiopg_patch.py b/dd-trace-py/tests/contrib/aiopg/test_aiopg_patch.py
similarity index 100%
rename from tests/contrib/aiopg/test_aiopg_patch.py
rename to dd-trace-py/tests/contrib/aiopg/test_aiopg_patch.py
diff --git a/tests/contrib/algoliasearch/__init__.py b/dd-trace-py/tests/contrib/algoliasearch/__init__.py
similarity index 100%
rename from tests/contrib/algoliasearch/__init__.py
rename to dd-trace-py/tests/contrib/algoliasearch/__init__.py
diff --git a/tests/contrib/algoliasearch/test.py b/dd-trace-py/tests/contrib/algoliasearch/test.py
similarity index 100%
rename from tests/contrib/algoliasearch/test.py
rename to dd-trace-py/tests/contrib/algoliasearch/test.py
diff --git a/tests/contrib/algoliasearch/test_algoliasearch_patch.py b/dd-trace-py/tests/contrib/algoliasearch/test_algoliasearch_patch.py
similarity index 100%
rename from tests/contrib/algoliasearch/test_algoliasearch_patch.py
rename to dd-trace-py/tests/contrib/algoliasearch/test_algoliasearch_patch.py
diff --git a/tests/contrib/anthropic/__init__.py b/dd-trace-py/tests/contrib/anthropic/__init__.py
similarity index 100%
rename from tests/contrib/anthropic/__init__.py
rename to dd-trace-py/tests/contrib/anthropic/__init__.py
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_beta_tools_stream.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_beta_tools_stream.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_beta_tools_stream.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_beta_tools_stream.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_cache_read.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_cache_read.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_cache_read.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_cache_read.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_cache_write.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_cache_write.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_cache_write.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_cache_write.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_cache_write_1h_ttl.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_cache_write_1h_ttl.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_cache_write_1h_ttl.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_cache_write_1h_ttl.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_error.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_error.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_error.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_error.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_invalid_api_key.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_invalid_api_key.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_invalid_api_key.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_invalid_api_key.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_multi_prompt.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_multi_prompt.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_multi_prompt.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_multi_prompt.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_multi_prompt_with_chat_history.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_multi_prompt_with_chat_history.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_multi_prompt_with_chat_history.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_multi_prompt_with_chat_history.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_multi_system_prompt.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_multi_system_prompt.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_multi_system_prompt.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_multi_system_prompt.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_stream.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_stream.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_stream_cache_read.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream_cache_read.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_stream_cache_read.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream_cache_read.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_stream_cache_write.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream_cache_write.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_stream_cache_write.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream_cache_write.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_stream_helper.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream_helper.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_stream_helper.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream_helper.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_stream_thinking.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream_thinking.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_stream_thinking.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_stream_thinking.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_thinking.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_thinking.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_thinking.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_thinking.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_thinking_tool_result.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_thinking_tool_result.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_thinking_tool_result.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_thinking_tool_result.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_thinking_tools.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_thinking_tools.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_thinking_tools.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_thinking_tools.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result_stream.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result_stream.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result_stream.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result_stream.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result_stream_helper.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result_stream_helper.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result_stream_helper.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_call_with_tool_result_stream_helper.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools_deep_schema.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_deep_schema.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools_deep_schema.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_deep_schema.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools_deferred.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_deferred.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools_deferred.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_deferred.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools_server_tool_use.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_server_tool_use.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools_server_tool_use.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_server_tool_use.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools_stream.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_stream.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools_stream.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_stream.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_completion_tools_stream_helper.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_stream_helper.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_completion_tools_stream_helper.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_completion_tools_stream_helper.yaml
diff --git a/tests/contrib/anthropic/cassettes/anthropic_create_image.yaml b/dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_create_image.yaml
similarity index 100%
rename from tests/contrib/anthropic/cassettes/anthropic_create_image.yaml
rename to dd-trace-py/tests/contrib/anthropic/cassettes/anthropic_create_image.yaml
diff --git a/tests/contrib/anthropic/conftest.py b/dd-trace-py/tests/contrib/anthropic/conftest.py
similarity index 100%
rename from tests/contrib/anthropic/conftest.py
rename to dd-trace-py/tests/contrib/anthropic/conftest.py
diff --git a/tests/contrib/anthropic/images/bits.png b/dd-trace-py/tests/contrib/anthropic/images/bits.png
similarity index 100%
rename from tests/contrib/anthropic/images/bits.png
rename to dd-trace-py/tests/contrib/anthropic/images/bits.png
diff --git a/tests/contrib/anthropic/test_anthropic.py b/dd-trace-py/tests/contrib/anthropic/test_anthropic.py
similarity index 100%
rename from tests/contrib/anthropic/test_anthropic.py
rename to dd-trace-py/tests/contrib/anthropic/test_anthropic.py
diff --git a/tests/contrib/anthropic/test_anthropic_llmobs.py b/dd-trace-py/tests/contrib/anthropic/test_anthropic_llmobs.py
similarity index 100%
rename from tests/contrib/anthropic/test_anthropic_llmobs.py
rename to dd-trace-py/tests/contrib/anthropic/test_anthropic_llmobs.py
diff --git a/tests/contrib/anthropic/test_anthropic_patch.py b/dd-trace-py/tests/contrib/anthropic/test_anthropic_patch.py
similarity index 100%
rename from tests/contrib/anthropic/test_anthropic_patch.py
rename to dd-trace-py/tests/contrib/anthropic/test_anthropic_patch.py
diff --git a/tests/contrib/anthropic/utils.py b/dd-trace-py/tests/contrib/anthropic/utils.py
similarity index 100%
rename from tests/contrib/anthropic/utils.py
rename to dd-trace-py/tests/contrib/anthropic/utils.py
diff --git a/tests/contrib/aredis/__init__.py b/dd-trace-py/tests/contrib/aredis/__init__.py
similarity index 100%
rename from tests/contrib/aredis/__init__.py
rename to dd-trace-py/tests/contrib/aredis/__init__.py
diff --git a/tests/contrib/aredis/test_aredis.py b/dd-trace-py/tests/contrib/aredis/test_aredis.py
similarity index 100%
rename from tests/contrib/aredis/test_aredis.py
rename to dd-trace-py/tests/contrib/aredis/test_aredis.py
diff --git a/tests/contrib/aredis/test_aredis_patch.py b/dd-trace-py/tests/contrib/aredis/test_aredis_patch.py
similarity index 100%
rename from tests/contrib/aredis/test_aredis_patch.py
rename to dd-trace-py/tests/contrib/aredis/test_aredis_patch.py
diff --git a/tests/contrib/asgi/__init__.py b/dd-trace-py/tests/contrib/asgi/__init__.py
similarity index 100%
rename from tests/contrib/asgi/__init__.py
rename to dd-trace-py/tests/contrib/asgi/__init__.py
diff --git a/tests/contrib/asgi/test_asgi.py b/dd-trace-py/tests/contrib/asgi/test_asgi.py
similarity index 100%
rename from tests/contrib/asgi/test_asgi.py
rename to dd-trace-py/tests/contrib/asgi/test_asgi.py
diff --git a/tests/contrib/asyncio/__init__.py b/dd-trace-py/tests/contrib/asyncio/__init__.py
similarity index 100%
rename from tests/contrib/asyncio/__init__.py
rename to dd-trace-py/tests/contrib/asyncio/__init__.py
diff --git a/tests/contrib/asyncio/test_lazyimport.py b/dd-trace-py/tests/contrib/asyncio/test_lazyimport.py
similarity index 100%
rename from tests/contrib/asyncio/test_lazyimport.py
rename to dd-trace-py/tests/contrib/asyncio/test_lazyimport.py
diff --git a/tests/contrib/asyncio/test_propagation.py b/dd-trace-py/tests/contrib/asyncio/test_propagation.py
similarity index 100%
rename from tests/contrib/asyncio/test_propagation.py
rename to dd-trace-py/tests/contrib/asyncio/test_propagation.py
diff --git a/tests/contrib/asyncio/test_tracer.py b/dd-trace-py/tests/contrib/asyncio/test_tracer.py
similarity index 100%
rename from tests/contrib/asyncio/test_tracer.py
rename to dd-trace-py/tests/contrib/asyncio/test_tracer.py
diff --git a/tests/contrib/asyncio/utils.py b/dd-trace-py/tests/contrib/asyncio/utils.py
similarity index 100%
rename from tests/contrib/asyncio/utils.py
rename to dd-trace-py/tests/contrib/asyncio/utils.py
diff --git a/tests/contrib/asyncpg/__init__.py b/dd-trace-py/tests/contrib/asyncpg/__init__.py
similarity index 100%
rename from tests/contrib/asyncpg/__init__.py
rename to dd-trace-py/tests/contrib/asyncpg/__init__.py
diff --git a/tests/contrib/asyncpg/test_asyncpg.py b/dd-trace-py/tests/contrib/asyncpg/test_asyncpg.py
similarity index 100%
rename from tests/contrib/asyncpg/test_asyncpg.py
rename to dd-trace-py/tests/contrib/asyncpg/test_asyncpg.py
diff --git a/tests/contrib/asyncpg/test_asyncpg_patch.py b/dd-trace-py/tests/contrib/asyncpg/test_asyncpg_patch.py
similarity index 100%
rename from tests/contrib/asyncpg/test_asyncpg_patch.py
rename to dd-trace-py/tests/contrib/asyncpg/test_asyncpg_patch.py
diff --git a/tests/contrib/asynctest/__init__.py b/dd-trace-py/tests/contrib/asynctest/__init__.py
similarity index 100%
rename from tests/contrib/asynctest/__init__.py
rename to dd-trace-py/tests/contrib/asynctest/__init__.py
diff --git a/tests/contrib/asynctest/test_asynctest.py b/dd-trace-py/tests/contrib/asynctest/test_asynctest.py
similarity index 100%
rename from tests/contrib/asynctest/test_asynctest.py
rename to dd-trace-py/tests/contrib/asynctest/test_asynctest.py
diff --git a/tests/contrib/avro/__init__.py b/dd-trace-py/tests/contrib/avro/__init__.py
similarity index 100%
rename from tests/contrib/avro/__init__.py
rename to dd-trace-py/tests/contrib/avro/__init__.py
diff --git a/tests/contrib/avro/conftest.py b/dd-trace-py/tests/contrib/avro/conftest.py
similarity index 100%
rename from tests/contrib/avro/conftest.py
rename to dd-trace-py/tests/contrib/avro/conftest.py
diff --git a/tests/contrib/avro/schemas/advanced_user.avsc b/dd-trace-py/tests/contrib/avro/schemas/advanced_user.avsc
similarity index 100%
rename from tests/contrib/avro/schemas/advanced_user.avsc
rename to dd-trace-py/tests/contrib/avro/schemas/advanced_user.avsc
diff --git a/tests/contrib/avro/schemas/advanced_users.avro b/dd-trace-py/tests/contrib/avro/schemas/advanced_users.avro
similarity index 100%
rename from tests/contrib/avro/schemas/advanced_users.avro
rename to dd-trace-py/tests/contrib/avro/schemas/advanced_users.avro
diff --git a/tests/contrib/avro/schemas/user.avsc b/dd-trace-py/tests/contrib/avro/schemas/user.avsc
similarity index 100%
rename from tests/contrib/avro/schemas/user.avsc
rename to dd-trace-py/tests/contrib/avro/schemas/user.avsc
diff --git a/tests/contrib/avro/schemas/users.avro b/dd-trace-py/tests/contrib/avro/schemas/users.avro
similarity index 100%
rename from tests/contrib/avro/schemas/users.avro
rename to dd-trace-py/tests/contrib/avro/schemas/users.avro
diff --git a/tests/contrib/avro/test_avro.py b/dd-trace-py/tests/contrib/avro/test_avro.py
similarity index 100%
rename from tests/contrib/avro/test_avro.py
rename to dd-trace-py/tests/contrib/avro/test_avro.py
diff --git a/tests/contrib/aws_lambda/__init__.py b/dd-trace-py/tests/contrib/aws_lambda/__init__.py
similarity index 100%
rename from tests/contrib/aws_lambda/__init__.py
rename to dd-trace-py/tests/contrib/aws_lambda/__init__.py
diff --git a/tests/contrib/aws_lambda/handlers.py b/dd-trace-py/tests/contrib/aws_lambda/handlers.py
similarity index 100%
rename from tests/contrib/aws_lambda/handlers.py
rename to dd-trace-py/tests/contrib/aws_lambda/handlers.py
diff --git a/tests/contrib/aws_lambda/test_aws_lambda.py b/dd-trace-py/tests/contrib/aws_lambda/test_aws_lambda.py
similarity index 100%
rename from tests/contrib/aws_lambda/test_aws_lambda.py
rename to dd-trace-py/tests/contrib/aws_lambda/test_aws_lambda.py
diff --git a/tests/contrib/azure_cosmos/__init__.py b/dd-trace-py/tests/contrib/azure_cosmos/__init__.py
similarity index 100%
rename from tests/contrib/azure_cosmos/__init__.py
rename to dd-trace-py/tests/contrib/azure_cosmos/__init__.py
diff --git a/tests/contrib/azure_cosmos/common.py b/dd-trace-py/tests/contrib/azure_cosmos/common.py
similarity index 100%
rename from tests/contrib/azure_cosmos/common.py
rename to dd-trace-py/tests/contrib/azure_cosmos/common.py
diff --git a/tests/contrib/azure_cosmos/test_azure_cosmos_patch.py b/dd-trace-py/tests/contrib/azure_cosmos/test_azure_cosmos_patch.py
similarity index 100%
rename from tests/contrib/azure_cosmos/test_azure_cosmos_patch.py
rename to dd-trace-py/tests/contrib/azure_cosmos/test_azure_cosmos_patch.py
diff --git a/tests/contrib/azure_cosmos/test_azure_cosmos_snapshot.py b/dd-trace-py/tests/contrib/azure_cosmos/test_azure_cosmos_snapshot.py
similarity index 100%
rename from tests/contrib/azure_cosmos/test_azure_cosmos_snapshot.py
rename to dd-trace-py/tests/contrib/azure_cosmos/test_azure_cosmos_snapshot.py
diff --git a/tests/contrib/azure_durable_functions/__init__.py b/dd-trace-py/tests/contrib/azure_durable_functions/__init__.py
similarity index 100%
rename from tests/contrib/azure_durable_functions/__init__.py
rename to dd-trace-py/tests/contrib/azure_durable_functions/__init__.py
diff --git a/tests/contrib/azure_durable_functions/azure_function_app/function_app.py b/dd-trace-py/tests/contrib/azure_durable_functions/azure_function_app/function_app.py
similarity index 100%
rename from tests/contrib/azure_durable_functions/azure_function_app/function_app.py
rename to dd-trace-py/tests/contrib/azure_durable_functions/azure_function_app/function_app.py
diff --git a/tests/contrib/azure_durable_functions/azure_function_app/host.json b/dd-trace-py/tests/contrib/azure_durable_functions/azure_function_app/host.json
similarity index 100%
rename from tests/contrib/azure_durable_functions/azure_function_app/host.json
rename to dd-trace-py/tests/contrib/azure_durable_functions/azure_function_app/host.json
diff --git a/tests/contrib/azure_durable_functions/azure_function_app/local.settings.json b/dd-trace-py/tests/contrib/azure_durable_functions/azure_function_app/local.settings.json
similarity index 100%
rename from tests/contrib/azure_durable_functions/azure_function_app/local.settings.json
rename to dd-trace-py/tests/contrib/azure_durable_functions/azure_function_app/local.settings.json
diff --git a/tests/contrib/azure_durable_functions/test_azure_durable_functions_patch.py b/dd-trace-py/tests/contrib/azure_durable_functions/test_azure_durable_functions_patch.py
similarity index 100%
rename from tests/contrib/azure_durable_functions/test_azure_durable_functions_patch.py
rename to dd-trace-py/tests/contrib/azure_durable_functions/test_azure_durable_functions_patch.py
diff --git a/tests/contrib/azure_durable_functions/test_azure_durable_functions_snapshot.py b/dd-trace-py/tests/contrib/azure_durable_functions/test_azure_durable_functions_snapshot.py
similarity index 100%
rename from tests/contrib/azure_durable_functions/test_azure_durable_functions_snapshot.py
rename to dd-trace-py/tests/contrib/azure_durable_functions/test_azure_durable_functions_snapshot.py
diff --git a/tests/contrib/azure_eventhubs/__init__.py b/dd-trace-py/tests/contrib/azure_eventhubs/__init__.py
similarity index 100%
rename from tests/contrib/azure_eventhubs/__init__.py
rename to dd-trace-py/tests/contrib/azure_eventhubs/__init__.py
diff --git a/tests/contrib/azure_eventhubs/common.py b/dd-trace-py/tests/contrib/azure_eventhubs/common.py
similarity index 100%
rename from tests/contrib/azure_eventhubs/common.py
rename to dd-trace-py/tests/contrib/azure_eventhubs/common.py
diff --git a/tests/contrib/azure_eventhubs/test_azure_eventhubs_patch.py b/dd-trace-py/tests/contrib/azure_eventhubs/test_azure_eventhubs_patch.py
similarity index 100%
rename from tests/contrib/azure_eventhubs/test_azure_eventhubs_patch.py
rename to dd-trace-py/tests/contrib/azure_eventhubs/test_azure_eventhubs_patch.py
diff --git a/tests/contrib/azure_eventhubs/test_azure_eventhubs_snapshot.py b/dd-trace-py/tests/contrib/azure_eventhubs/test_azure_eventhubs_snapshot.py
similarity index 100%
rename from tests/contrib/azure_eventhubs/test_azure_eventhubs_snapshot.py
rename to dd-trace-py/tests/contrib/azure_eventhubs/test_azure_eventhubs_snapshot.py
diff --git a/tests/contrib/azure_functions/__init__.py b/dd-trace-py/tests/contrib/azure_functions/__init__.py
similarity index 100%
rename from tests/contrib/azure_functions/__init__.py
rename to dd-trace-py/tests/contrib/azure_functions/__init__.py
diff --git a/tests/contrib/azure_functions/azure_function_app/function_app.py b/dd-trace-py/tests/contrib/azure_functions/azure_function_app/function_app.py
similarity index 100%
rename from tests/contrib/azure_functions/azure_function_app/function_app.py
rename to dd-trace-py/tests/contrib/azure_functions/azure_function_app/function_app.py
diff --git a/tests/contrib/azure_functions/azure_function_app/host.json b/dd-trace-py/tests/contrib/azure_functions/azure_function_app/host.json
similarity index 100%
rename from tests/contrib/azure_functions/azure_function_app/host.json
rename to dd-trace-py/tests/contrib/azure_functions/azure_function_app/host.json
diff --git a/tests/contrib/azure_functions/azure_function_app/local.settings.json b/dd-trace-py/tests/contrib/azure_functions/azure_function_app/local.settings.json
similarity index 100%
rename from tests/contrib/azure_functions/azure_function_app/local.settings.json
rename to dd-trace-py/tests/contrib/azure_functions/azure_function_app/local.settings.json
diff --git a/tests/contrib/azure_functions/test_azure_functions_patch.py b/dd-trace-py/tests/contrib/azure_functions/test_azure_functions_patch.py
similarity index 100%
rename from tests/contrib/azure_functions/test_azure_functions_patch.py
rename to dd-trace-py/tests/contrib/azure_functions/test_azure_functions_patch.py
diff --git a/tests/contrib/azure_functions/test_azure_functions_snapshot.py b/dd-trace-py/tests/contrib/azure_functions/test_azure_functions_snapshot.py
similarity index 100%
rename from tests/contrib/azure_functions/test_azure_functions_snapshot.py
rename to dd-trace-py/tests/contrib/azure_functions/test_azure_functions_snapshot.py
diff --git a/tests/contrib/azure_functions_cosmos/__init__.py b/dd-trace-py/tests/contrib/azure_functions_cosmos/__init__.py
similarity index 100%
rename from tests/contrib/azure_functions_cosmos/__init__.py
rename to dd-trace-py/tests/contrib/azure_functions_cosmos/__init__.py
diff --git a/tests/contrib/azure_functions_cosmos/azure_function_app/function_app.py b/dd-trace-py/tests/contrib/azure_functions_cosmos/azure_function_app/function_app.py
similarity index 100%
rename from tests/contrib/azure_functions_cosmos/azure_function_app/function_app.py
rename to dd-trace-py/tests/contrib/azure_functions_cosmos/azure_function_app/function_app.py
diff --git a/tests/contrib/azure_functions_cosmos/azure_function_app/host.json b/dd-trace-py/tests/contrib/azure_functions_cosmos/azure_function_app/host.json
similarity index 100%
rename from tests/contrib/azure_functions_cosmos/azure_function_app/host.json
rename to dd-trace-py/tests/contrib/azure_functions_cosmos/azure_function_app/host.json
diff --git a/tests/contrib/azure_functions_cosmos/azure_function_app/local.settings.json b/dd-trace-py/tests/contrib/azure_functions_cosmos/azure_function_app/local.settings.json
similarity index 100%
rename from tests/contrib/azure_functions_cosmos/azure_function_app/local.settings.json
rename to dd-trace-py/tests/contrib/azure_functions_cosmos/azure_function_app/local.settings.json
diff --git a/tests/contrib/azure_functions_cosmos/test_azure_functions_snapshot.py b/dd-trace-py/tests/contrib/azure_functions_cosmos/test_azure_functions_snapshot.py
similarity index 100%
rename from tests/contrib/azure_functions_cosmos/test_azure_functions_snapshot.py
rename to dd-trace-py/tests/contrib/azure_functions_cosmos/test_azure_functions_snapshot.py
diff --git a/tests/contrib/azure_functions_eventhubs/__init__.py b/dd-trace-py/tests/contrib/azure_functions_eventhubs/__init__.py
similarity index 100%
rename from tests/contrib/azure_functions_eventhubs/__init__.py
rename to dd-trace-py/tests/contrib/azure_functions_eventhubs/__init__.py
diff --git a/tests/contrib/azure_functions_eventhubs/azure_function_app/function_app.py b/dd-trace-py/tests/contrib/azure_functions_eventhubs/azure_function_app/function_app.py
similarity index 100%
rename from tests/contrib/azure_functions_eventhubs/azure_function_app/function_app.py
rename to dd-trace-py/tests/contrib/azure_functions_eventhubs/azure_function_app/function_app.py
diff --git a/tests/contrib/azure_functions_eventhubs/azure_function_app/host.json b/dd-trace-py/tests/contrib/azure_functions_eventhubs/azure_function_app/host.json
similarity index 100%
rename from tests/contrib/azure_functions_eventhubs/azure_function_app/host.json
rename to dd-trace-py/tests/contrib/azure_functions_eventhubs/azure_function_app/host.json
diff --git a/tests/contrib/azure_functions_eventhubs/azure_function_app/local.settings.json b/dd-trace-py/tests/contrib/azure_functions_eventhubs/azure_function_app/local.settings.json
similarity index 100%
rename from tests/contrib/azure_functions_eventhubs/azure_function_app/local.settings.json
rename to dd-trace-py/tests/contrib/azure_functions_eventhubs/azure_function_app/local.settings.json
diff --git a/tests/contrib/azure_functions_eventhubs/test_azure_functions_snapshot.py b/dd-trace-py/tests/contrib/azure_functions_eventhubs/test_azure_functions_snapshot.py
similarity index 100%
rename from tests/contrib/azure_functions_eventhubs/test_azure_functions_snapshot.py
rename to dd-trace-py/tests/contrib/azure_functions_eventhubs/test_azure_functions_snapshot.py
diff --git a/tests/contrib/azure_functions_servicebus/__init__.py b/dd-trace-py/tests/contrib/azure_functions_servicebus/__init__.py
similarity index 100%
rename from tests/contrib/azure_functions_servicebus/__init__.py
rename to dd-trace-py/tests/contrib/azure_functions_servicebus/__init__.py
diff --git a/tests/contrib/azure_functions_servicebus/azure_function_app/function_app.py b/dd-trace-py/tests/contrib/azure_functions_servicebus/azure_function_app/function_app.py
similarity index 100%
rename from tests/contrib/azure_functions_servicebus/azure_function_app/function_app.py
rename to dd-trace-py/tests/contrib/azure_functions_servicebus/azure_function_app/function_app.py
diff --git a/tests/contrib/azure_functions_servicebus/azure_function_app/host.json b/dd-trace-py/tests/contrib/azure_functions_servicebus/azure_function_app/host.json
similarity index 100%
rename from tests/contrib/azure_functions_servicebus/azure_function_app/host.json
rename to dd-trace-py/tests/contrib/azure_functions_servicebus/azure_function_app/host.json
diff --git a/tests/contrib/azure_functions_servicebus/azure_function_app/local.settings.json b/dd-trace-py/tests/contrib/azure_functions_servicebus/azure_function_app/local.settings.json
similarity index 100%
rename from tests/contrib/azure_functions_servicebus/azure_function_app/local.settings.json
rename to dd-trace-py/tests/contrib/azure_functions_servicebus/azure_function_app/local.settings.json
diff --git a/tests/contrib/azure_functions_servicebus/test_azure_functions_snapshot.py b/dd-trace-py/tests/contrib/azure_functions_servicebus/test_azure_functions_snapshot.py
similarity index 100%
rename from tests/contrib/azure_functions_servicebus/test_azure_functions_snapshot.py
rename to dd-trace-py/tests/contrib/azure_functions_servicebus/test_azure_functions_snapshot.py
diff --git a/tests/contrib/azure_servicebus/__init__.py b/dd-trace-py/tests/contrib/azure_servicebus/__init__.py
similarity index 100%
rename from tests/contrib/azure_servicebus/__init__.py
rename to dd-trace-py/tests/contrib/azure_servicebus/__init__.py
diff --git a/tests/contrib/azure_servicebus/common.py b/dd-trace-py/tests/contrib/azure_servicebus/common.py
similarity index 100%
rename from tests/contrib/azure_servicebus/common.py
rename to dd-trace-py/tests/contrib/azure_servicebus/common.py
diff --git a/tests/contrib/azure_servicebus/test_azure_servicebus_patch.py b/dd-trace-py/tests/contrib/azure_servicebus/test_azure_servicebus_patch.py
similarity index 100%
rename from tests/contrib/azure_servicebus/test_azure_servicebus_patch.py
rename to dd-trace-py/tests/contrib/azure_servicebus/test_azure_servicebus_patch.py
diff --git a/tests/contrib/azure_servicebus/test_azure_servicebus_snapshot.py b/dd-trace-py/tests/contrib/azure_servicebus/test_azure_servicebus_snapshot.py
similarity index 100%
rename from tests/contrib/azure_servicebus/test_azure_servicebus_snapshot.py
rename to dd-trace-py/tests/contrib/azure_servicebus/test_azure_servicebus_snapshot.py
diff --git a/tests/contrib/boto/__init__.py b/dd-trace-py/tests/contrib/boto/__init__.py
similarity index 100%
rename from tests/contrib/boto/__init__.py
rename to dd-trace-py/tests/contrib/boto/__init__.py
diff --git a/tests/contrib/boto/test.py b/dd-trace-py/tests/contrib/boto/test.py
similarity index 100%
rename from tests/contrib/boto/test.py
rename to dd-trace-py/tests/contrib/boto/test.py
diff --git a/tests/contrib/boto/test_boto_patch.py b/dd-trace-py/tests/contrib/boto/test_boto_patch.py
similarity index 100%
rename from tests/contrib/boto/test_boto_patch.py
rename to dd-trace-py/tests/contrib/boto/test_boto_patch.py
diff --git a/tests/contrib/botocore/__init__.py b/dd-trace-py/tests/contrib/botocore/__init__.py
similarity index 100%
rename from tests/contrib/botocore/__init__.py
rename to dd-trace-py/tests/contrib/botocore/__init__.py
diff --git a/tests/contrib/botocore/bedrock_cassettes/agent_invoke.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/agent_invoke.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/agent_invoke.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/agent_invoke.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/agent_invoke_trace_disabled.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/agent_invoke_trace_disabled.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/agent_invoke_trace_disabled.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/agent_invoke_trace_disabled.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/ai21_invoke.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/ai21_invoke.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/ai21_invoke.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/ai21_invoke.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/amazon_embedding.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/amazon_embedding.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/amazon_embedding.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/amazon_embedding.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/amazon_invoke.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/amazon_invoke.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/amazon_invoke.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/amazon_invoke.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/amazon_invoke_model_arn.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/amazon_invoke_model_arn.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/amazon_invoke_model_arn.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/amazon_invoke_model_arn.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/amazon_invoke_stream.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/amazon_invoke_stream.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/amazon_invoke_stream.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/amazon_invoke_stream.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/anthropic_invoke.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/anthropic_invoke.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/anthropic_invoke.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/anthropic_invoke.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/anthropic_invoke_stream.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/anthropic_invoke_stream.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/anthropic_invoke_stream.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/anthropic_invoke_stream.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/anthropic_message_invoke.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/anthropic_message_invoke.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/anthropic_message_invoke.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/anthropic_message_invoke.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/anthropic_message_invoke_stream.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/anthropic_message_invoke_stream.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/anthropic_message_invoke_stream.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/anthropic_message_invoke_stream.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/bedrock_converse.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/bedrock_converse.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_error.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_error.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/bedrock_converse_error.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_error.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_prompt_caching.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_prompt_caching.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/bedrock_converse_prompt_caching.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_prompt_caching.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_stream.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_stream.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/bedrock_converse_stream.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_stream.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_stream_prompt_caching.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_stream_prompt_caching.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/bedrock_converse_stream_prompt_caching.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/bedrock_converse_stream_prompt_caching.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/cohere_embedding.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_embedding.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/cohere_embedding.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_embedding.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_multi_output.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_multi_output.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/cohere_invoke_multi_output.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_multi_output.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_single_output.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_single_output.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/cohere_invoke_single_output.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_single_output.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_multi_output.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_multi_output.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_multi_output.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_multi_output.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_multiple_output.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_multiple_output.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_multiple_output.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_multiple_output.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_single_output.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_single_output.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_single_output.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_invoke_stream_single_output.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/cohere_rerank_invoke.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_rerank_invoke.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/cohere_rerank_invoke.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/cohere_rerank_invoke.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/meta_invoke.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/meta_invoke.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/meta_invoke.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/meta_invoke.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/meta_invoke_error.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/meta_invoke_error.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/meta_invoke_error.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/meta_invoke_error.yaml
diff --git a/tests/contrib/botocore/bedrock_cassettes/meta_invoke_stream.yaml b/dd-trace-py/tests/contrib/botocore/bedrock_cassettes/meta_invoke_stream.yaml
similarity index 100%
rename from tests/contrib/botocore/bedrock_cassettes/meta_invoke_stream.yaml
rename to dd-trace-py/tests/contrib/botocore/bedrock_cassettes/meta_invoke_stream.yaml
diff --git a/tests/contrib/botocore/bedrock_utils.py b/dd-trace-py/tests/contrib/botocore/bedrock_utils.py
similarity index 100%
rename from tests/contrib/botocore/bedrock_utils.py
rename to dd-trace-py/tests/contrib/botocore/bedrock_utils.py
diff --git a/tests/contrib/botocore/conftest.py b/dd-trace-py/tests/contrib/botocore/conftest.py
similarity index 100%
rename from tests/contrib/botocore/conftest.py
rename to dd-trace-py/tests/contrib/botocore/conftest.py
diff --git a/tests/contrib/botocore/test.py b/dd-trace-py/tests/contrib/botocore/test.py
similarity index 100%
rename from tests/contrib/botocore/test.py
rename to dd-trace-py/tests/contrib/botocore/test.py
diff --git a/tests/contrib/botocore/test_bedrock.py b/dd-trace-py/tests/contrib/botocore/test_bedrock.py
similarity index 100%
rename from tests/contrib/botocore/test_bedrock.py
rename to dd-trace-py/tests/contrib/botocore/test_bedrock.py
diff --git a/tests/contrib/botocore/test_bedrock_agents.py b/dd-trace-py/tests/contrib/botocore/test_bedrock_agents.py
similarity index 100%
rename from tests/contrib/botocore/test_bedrock_agents.py
rename to dd-trace-py/tests/contrib/botocore/test_bedrock_agents.py
diff --git a/tests/contrib/botocore/test_bedrock_agents_llmobs.py b/dd-trace-py/tests/contrib/botocore/test_bedrock_agents_llmobs.py
similarity index 100%
rename from tests/contrib/botocore/test_bedrock_agents_llmobs.py
rename to dd-trace-py/tests/contrib/botocore/test_bedrock_agents_llmobs.py
diff --git a/tests/contrib/botocore/test_bedrock_llmobs.py b/dd-trace-py/tests/contrib/botocore/test_bedrock_llmobs.py
similarity index 100%
rename from tests/contrib/botocore/test_bedrock_llmobs.py
rename to dd-trace-py/tests/contrib/botocore/test_bedrock_llmobs.py
diff --git a/tests/contrib/botocore/test_botocore_patch.py b/dd-trace-py/tests/contrib/botocore/test_botocore_patch.py
similarity index 100%
rename from tests/contrib/botocore/test_botocore_patch.py
rename to dd-trace-py/tests/contrib/botocore/test_botocore_patch.py
diff --git a/tests/contrib/botocore/test_dsm.py b/dd-trace-py/tests/contrib/botocore/test_dsm.py
similarity index 100%
rename from tests/contrib/botocore/test_dsm.py
rename to dd-trace-py/tests/contrib/botocore/test_dsm.py
diff --git a/tests/contrib/botocore/test_stepfunctions.py b/dd-trace-py/tests/contrib/botocore/test_stepfunctions.py
similarity index 100%
rename from tests/contrib/botocore/test_stepfunctions.py
rename to dd-trace-py/tests/contrib/botocore/test_stepfunctions.py
diff --git a/tests/contrib/bottle/__init__.py b/dd-trace-py/tests/contrib/bottle/__init__.py
similarity index 100%
rename from tests/contrib/bottle/__init__.py
rename to dd-trace-py/tests/contrib/bottle/__init__.py
diff --git a/tests/contrib/bottle/test.py b/dd-trace-py/tests/contrib/bottle/test.py
similarity index 100%
rename from tests/contrib/bottle/test.py
rename to dd-trace-py/tests/contrib/bottle/test.py
diff --git a/tests/contrib/bottle/test_autopatch.py b/dd-trace-py/tests/contrib/bottle/test_autopatch.py
similarity index 100%
rename from tests/contrib/bottle/test_autopatch.py
rename to dd-trace-py/tests/contrib/bottle/test_autopatch.py
diff --git a/tests/contrib/bottle/test_bottle_patch.py b/dd-trace-py/tests/contrib/bottle/test_bottle_patch.py
similarity index 100%
rename from tests/contrib/bottle/test_bottle_patch.py
rename to dd-trace-py/tests/contrib/bottle/test_bottle_patch.py
diff --git a/tests/contrib/bottle/test_distributed.py b/dd-trace-py/tests/contrib/bottle/test_distributed.py
similarity index 100%
rename from tests/contrib/bottle/test_distributed.py
rename to dd-trace-py/tests/contrib/bottle/test_distributed.py
diff --git a/tests/contrib/celery/__init__.py b/dd-trace-py/tests/contrib/celery/__init__.py
similarity index 100%
rename from tests/contrib/celery/__init__.py
rename to dd-trace-py/tests/contrib/celery/__init__.py
diff --git a/tests/contrib/celery/autopatch.py b/dd-trace-py/tests/contrib/celery/autopatch.py
similarity index 100%
rename from tests/contrib/celery/autopatch.py
rename to dd-trace-py/tests/contrib/celery/autopatch.py
diff --git a/tests/contrib/celery/base.py b/dd-trace-py/tests/contrib/celery/base.py
similarity index 100%
rename from tests/contrib/celery/base.py
rename to dd-trace-py/tests/contrib/celery/base.py
diff --git a/tests/contrib/celery/run_tasks.py b/dd-trace-py/tests/contrib/celery/run_tasks.py
similarity index 100%
rename from tests/contrib/celery/run_tasks.py
rename to dd-trace-py/tests/contrib/celery/run_tasks.py
diff --git a/tests/contrib/celery/tasks.py b/dd-trace-py/tests/contrib/celery/tasks.py
similarity index 100%
rename from tests/contrib/celery/tasks.py
rename to dd-trace-py/tests/contrib/celery/tasks.py
diff --git a/tests/contrib/celery/test_app.py b/dd-trace-py/tests/contrib/celery/test_app.py
similarity index 100%
rename from tests/contrib/celery/test_app.py
rename to dd-trace-py/tests/contrib/celery/test_app.py
diff --git a/tests/contrib/celery/test_autopatch.py b/dd-trace-py/tests/contrib/celery/test_autopatch.py
similarity index 100%
rename from tests/contrib/celery/test_autopatch.py
rename to dd-trace-py/tests/contrib/celery/test_autopatch.py
diff --git a/tests/contrib/celery/test_chained_task.py b/dd-trace-py/tests/contrib/celery/test_chained_task.py
similarity index 100%
rename from tests/contrib/celery/test_chained_task.py
rename to dd-trace-py/tests/contrib/celery/test_chained_task.py
diff --git a/tests/contrib/celery/test_integration.py b/dd-trace-py/tests/contrib/celery/test_integration.py
similarity index 100%
rename from tests/contrib/celery/test_integration.py
rename to dd-trace-py/tests/contrib/celery/test_integration.py
diff --git a/tests/contrib/celery/test_old_style_task.py b/dd-trace-py/tests/contrib/celery/test_old_style_task.py
similarity index 100%
rename from tests/contrib/celery/test_old_style_task.py
rename to dd-trace-py/tests/contrib/celery/test_old_style_task.py
diff --git a/tests/contrib/celery/test_patch.py b/dd-trace-py/tests/contrib/celery/test_patch.py
similarity index 100%
rename from tests/contrib/celery/test_patch.py
rename to dd-trace-py/tests/contrib/celery/test_patch.py
diff --git a/tests/contrib/celery/test_tagging.py b/dd-trace-py/tests/contrib/celery/test_tagging.py
similarity index 100%
rename from tests/contrib/celery/test_tagging.py
rename to dd-trace-py/tests/contrib/celery/test_tagging.py
diff --git a/tests/contrib/celery/test_utils.py b/dd-trace-py/tests/contrib/celery/test_utils.py
similarity index 100%
rename from tests/contrib/celery/test_utils.py
rename to dd-trace-py/tests/contrib/celery/test_utils.py
diff --git a/tests/contrib/cherrypy/__init__.py b/dd-trace-py/tests/contrib/cherrypy/__init__.py
similarity index 100%
rename from tests/contrib/cherrypy/__init__.py
rename to dd-trace-py/tests/contrib/cherrypy/__init__.py
diff --git a/tests/contrib/cherrypy/test.conf b/dd-trace-py/tests/contrib/cherrypy/test.conf
similarity index 100%
rename from tests/contrib/cherrypy/test.conf
rename to dd-trace-py/tests/contrib/cherrypy/test.conf
diff --git a/tests/contrib/cherrypy/test_middleware.py b/dd-trace-py/tests/contrib/cherrypy/test_middleware.py
similarity index 100%
rename from tests/contrib/cherrypy/test_middleware.py
rename to dd-trace-py/tests/contrib/cherrypy/test_middleware.py
diff --git a/tests/contrib/cherrypy/web.py b/dd-trace-py/tests/contrib/cherrypy/web.py
similarity index 100%
rename from tests/contrib/cherrypy/web.py
rename to dd-trace-py/tests/contrib/cherrypy/web.py
diff --git a/tests/contrib/claude_agent_sdk/__init__.py b/dd-trace-py/tests/contrib/claude_agent_sdk/__init__.py
similarity index 100%
rename from tests/contrib/claude_agent_sdk/__init__.py
rename to dd-trace-py/tests/contrib/claude_agent_sdk/__init__.py
diff --git a/tests/contrib/claude_agent_sdk/conftest.py b/dd-trace-py/tests/contrib/claude_agent_sdk/conftest.py
similarity index 100%
rename from tests/contrib/claude_agent_sdk/conftest.py
rename to dd-trace-py/tests/contrib/claude_agent_sdk/conftest.py
diff --git a/tests/contrib/claude_agent_sdk/test_claude_agent_sdk.py b/dd-trace-py/tests/contrib/claude_agent_sdk/test_claude_agent_sdk.py
similarity index 100%
rename from tests/contrib/claude_agent_sdk/test_claude_agent_sdk.py
rename to dd-trace-py/tests/contrib/claude_agent_sdk/test_claude_agent_sdk.py
diff --git a/tests/contrib/claude_agent_sdk/test_claude_agent_sdk_llmobs.py b/dd-trace-py/tests/contrib/claude_agent_sdk/test_claude_agent_sdk_llmobs.py
similarity index 100%
rename from tests/contrib/claude_agent_sdk/test_claude_agent_sdk_llmobs.py
rename to dd-trace-py/tests/contrib/claude_agent_sdk/test_claude_agent_sdk_llmobs.py
diff --git a/tests/contrib/claude_agent_sdk/test_claude_agent_sdk_patch.py b/dd-trace-py/tests/contrib/claude_agent_sdk/test_claude_agent_sdk_patch.py
similarity index 100%
rename from tests/contrib/claude_agent_sdk/test_claude_agent_sdk_patch.py
rename to dd-trace-py/tests/contrib/claude_agent_sdk/test_claude_agent_sdk_patch.py
diff --git a/tests/contrib/claude_agent_sdk/utils.py b/dd-trace-py/tests/contrib/claude_agent_sdk/utils.py
similarity index 100%
rename from tests/contrib/claude_agent_sdk/utils.py
rename to dd-trace-py/tests/contrib/claude_agent_sdk/utils.py
diff --git a/tests/contrib/config.py b/dd-trace-py/tests/contrib/config.py
similarity index 100%
rename from tests/contrib/config.py
rename to dd-trace-py/tests/contrib/config.py
diff --git a/tests/contrib/conftest.py b/dd-trace-py/tests/contrib/conftest.py
similarity index 100%
rename from tests/contrib/conftest.py
rename to dd-trace-py/tests/contrib/conftest.py
diff --git a/tests/contrib/consul/__init__.py b/dd-trace-py/tests/contrib/consul/__init__.py
similarity index 100%
rename from tests/contrib/consul/__init__.py
rename to dd-trace-py/tests/contrib/consul/__init__.py
diff --git a/tests/contrib/consul/test.py b/dd-trace-py/tests/contrib/consul/test.py
similarity index 100%
rename from tests/contrib/consul/test.py
rename to dd-trace-py/tests/contrib/consul/test.py
diff --git a/tests/contrib/consul/test_consul_patch.py b/dd-trace-py/tests/contrib/consul/test_consul_patch.py
similarity index 100%
rename from tests/contrib/consul/test_consul_patch.py
rename to dd-trace-py/tests/contrib/consul/test_consul_patch.py
diff --git a/tests/contrib/crewai/__init__.py b/dd-trace-py/tests/contrib/crewai/__init__.py
similarity index 100%
rename from tests/contrib/crewai/__init__.py
rename to dd-trace-py/tests/contrib/crewai/__init__.py
diff --git a/tests/contrib/crewai/cassettes/test_basic_crew.yaml b/dd-trace-py/tests/contrib/crewai/cassettes/test_basic_crew.yaml
similarity index 100%
rename from tests/contrib/crewai/cassettes/test_basic_crew.yaml
rename to dd-trace-py/tests/contrib/crewai/cassettes/test_basic_crew.yaml
diff --git a/tests/contrib/crewai/cassettes/test_crew_with_async_tasks.yaml b/dd-trace-py/tests/contrib/crewai/cassettes/test_crew_with_async_tasks.yaml
similarity index 100%
rename from tests/contrib/crewai/cassettes/test_crew_with_async_tasks.yaml
rename to dd-trace-py/tests/contrib/crewai/cassettes/test_crew_with_async_tasks.yaml
diff --git a/tests/contrib/crewai/cassettes/test_crew_with_tool.yaml b/dd-trace-py/tests/contrib/crewai/cassettes/test_crew_with_tool.yaml
similarity index 100%
rename from tests/contrib/crewai/cassettes/test_crew_with_tool.yaml
rename to dd-trace-py/tests/contrib/crewai/cassettes/test_crew_with_tool.yaml
diff --git a/tests/contrib/crewai/cassettes/test_hierarchical_crew.yaml b/dd-trace-py/tests/contrib/crewai/cassettes/test_hierarchical_crew.yaml
similarity index 100%
rename from tests/contrib/crewai/cassettes/test_hierarchical_crew.yaml
rename to dd-trace-py/tests/contrib/crewai/cassettes/test_hierarchical_crew.yaml
diff --git a/tests/contrib/crewai/conftest.py b/dd-trace-py/tests/contrib/crewai/conftest.py
similarity index 100%
rename from tests/contrib/crewai/conftest.py
rename to dd-trace-py/tests/contrib/crewai/conftest.py
diff --git a/tests/contrib/crewai/test_crewai.py b/dd-trace-py/tests/contrib/crewai/test_crewai.py
similarity index 100%
rename from tests/contrib/crewai/test_crewai.py
rename to dd-trace-py/tests/contrib/crewai/test_crewai.py
diff --git a/tests/contrib/crewai/test_crewai_llmobs.py b/dd-trace-py/tests/contrib/crewai/test_crewai_llmobs.py
similarity index 100%
rename from tests/contrib/crewai/test_crewai_llmobs.py
rename to dd-trace-py/tests/contrib/crewai/test_crewai_llmobs.py
diff --git a/tests/contrib/crewai/test_crewai_patch.py b/dd-trace-py/tests/contrib/crewai/test_crewai_patch.py
similarity index 100%
rename from tests/contrib/crewai/test_crewai_patch.py
rename to dd-trace-py/tests/contrib/crewai/test_crewai_patch.py
diff --git a/tests/contrib/crewai/utils.py b/dd-trace-py/tests/contrib/crewai/utils.py
similarity index 100%
rename from tests/contrib/crewai/utils.py
rename to dd-trace-py/tests/contrib/crewai/utils.py
diff --git a/tests/contrib/dbapi/__init__.py b/dd-trace-py/tests/contrib/dbapi/__init__.py
similarity index 100%
rename from tests/contrib/dbapi/__init__.py
rename to dd-trace-py/tests/contrib/dbapi/__init__.py
diff --git a/tests/contrib/dbapi/test_dbapi.py b/dd-trace-py/tests/contrib/dbapi/test_dbapi.py
similarity index 100%
rename from tests/contrib/dbapi/test_dbapi.py
rename to dd-trace-py/tests/contrib/dbapi/test_dbapi.py
diff --git a/tests/contrib/dbapi_async/__init__.py b/dd-trace-py/tests/contrib/dbapi_async/__init__.py
similarity index 100%
rename from tests/contrib/dbapi_async/__init__.py
rename to dd-trace-py/tests/contrib/dbapi_async/__init__.py
diff --git a/tests/contrib/dbapi_async/test_dbapi_async.py b/dd-trace-py/tests/contrib/dbapi_async/test_dbapi_async.py
similarity index 100%
rename from tests/contrib/dbapi_async/test_dbapi_async.py
rename to dd-trace-py/tests/contrib/dbapi_async/test_dbapi_async.py
diff --git a/tests/contrib/ddtrace_api/__init__.py b/dd-trace-py/tests/contrib/ddtrace_api/__init__.py
similarity index 100%
rename from tests/contrib/ddtrace_api/__init__.py
rename to dd-trace-py/tests/contrib/ddtrace_api/__init__.py
diff --git a/tests/contrib/ddtrace_api/test_dd_trace_api_patch.py b/dd-trace-py/tests/contrib/ddtrace_api/test_dd_trace_api_patch.py
similarity index 100%
rename from tests/contrib/ddtrace_api/test_dd_trace_api_patch.py
rename to dd-trace-py/tests/contrib/ddtrace_api/test_dd_trace_api_patch.py
diff --git a/tests/contrib/ddtrace_api/test_integration.py b/dd-trace-py/tests/contrib/ddtrace_api/test_integration.py
similarity index 100%
rename from tests/contrib/ddtrace_api/test_integration.py
rename to dd-trace-py/tests/contrib/ddtrace_api/test_integration.py
diff --git a/tests/contrib/django/__init__.py b/dd-trace-py/tests/contrib/django/__init__.py
similarity index 100%
rename from tests/contrib/django/__init__.py
rename to dd-trace-py/tests/contrib/django/__init__.py
diff --git a/tests/contrib/django/asgi.py b/dd-trace-py/tests/contrib/django/asgi.py
similarity index 100%
rename from tests/contrib/django/asgi.py
rename to dd-trace-py/tests/contrib/django/asgi.py
diff --git a/tests/contrib/django/compat.py b/dd-trace-py/tests/contrib/django/compat.py
similarity index 100%
rename from tests/contrib/django/compat.py
rename to dd-trace-py/tests/contrib/django/compat.py
diff --git a/tests/contrib/django/conftest.py b/dd-trace-py/tests/contrib/django/conftest.py
similarity index 100%
rename from tests/contrib/django/conftest.py
rename to dd-trace-py/tests/contrib/django/conftest.py
diff --git a/tests/contrib/django/django1_app/__init__.py b/dd-trace-py/tests/contrib/django/django1_app/__init__.py
similarity index 100%
rename from tests/contrib/django/django1_app/__init__.py
rename to dd-trace-py/tests/contrib/django/django1_app/__init__.py
diff --git a/tests/contrib/django/django1_app/settings.py b/dd-trace-py/tests/contrib/django/django1_app/settings.py
similarity index 100%
rename from tests/contrib/django/django1_app/settings.py
rename to dd-trace-py/tests/contrib/django/django1_app/settings.py
diff --git a/tests/contrib/django/django1_app/urls.py b/dd-trace-py/tests/contrib/django/django1_app/urls.py
similarity index 100%
rename from tests/contrib/django/django1_app/urls.py
rename to dd-trace-py/tests/contrib/django/django1_app/urls.py
diff --git a/tests/contrib/django/django_app/__init__.py b/dd-trace-py/tests/contrib/django/django_app/__init__.py
similarity index 100%
rename from tests/contrib/django/django_app/__init__.py
rename to dd-trace-py/tests/contrib/django/django_app/__init__.py
diff --git a/tests/contrib/django/django_app/extra_urls.py b/dd-trace-py/tests/contrib/django/django_app/extra_urls.py
similarity index 100%
rename from tests/contrib/django/django_app/extra_urls.py
rename to dd-trace-py/tests/contrib/django/django_app/extra_urls.py
diff --git a/tests/contrib/django/django_app/models.py b/dd-trace-py/tests/contrib/django/django_app/models.py
similarity index 100%
rename from tests/contrib/django/django_app/models.py
rename to dd-trace-py/tests/contrib/django/django_app/models.py
diff --git a/tests/contrib/django/django_app/settings.py b/dd-trace-py/tests/contrib/django/django_app/settings.py
similarity index 100%
rename from tests/contrib/django/django_app/settings.py
rename to dd-trace-py/tests/contrib/django/django_app/settings.py
diff --git a/tests/contrib/django/django_app/urls.py b/dd-trace-py/tests/contrib/django/django_app/urls.py
similarity index 100%
rename from tests/contrib/django/django_app/urls.py
rename to dd-trace-py/tests/contrib/django/django_app/urls.py
diff --git a/tests/contrib/django/middleware.py b/dd-trace-py/tests/contrib/django/middleware.py
similarity index 100%
rename from tests/contrib/django/middleware.py
rename to dd-trace-py/tests/contrib/django/middleware.py
diff --git a/tests/contrib/django/soap/__init__.py b/dd-trace-py/tests/contrib/django/soap/__init__.py
similarity index 100%
rename from tests/contrib/django/soap/__init__.py
rename to dd-trace-py/tests/contrib/django/soap/__init__.py
diff --git a/tests/contrib/django/soap/apps.py b/dd-trace-py/tests/contrib/django/soap/apps.py
similarity index 100%
rename from tests/contrib/django/soap/apps.py
rename to dd-trace-py/tests/contrib/django/soap/apps.py
diff --git a/tests/contrib/django/soap/models.py b/dd-trace-py/tests/contrib/django/soap/models.py
similarity index 100%
rename from tests/contrib/django/soap/models.py
rename to dd-trace-py/tests/contrib/django/soap/models.py
diff --git a/tests/contrib/django/soap/services.py b/dd-trace-py/tests/contrib/django/soap/services.py
similarity index 100%
rename from tests/contrib/django/soap/services.py
rename to dd-trace-py/tests/contrib/django/soap/services.py
diff --git a/tests/contrib/django/templates/basic.html b/dd-trace-py/tests/contrib/django/templates/basic.html
similarity index 100%
rename from tests/contrib/django/templates/basic.html
rename to dd-trace-py/tests/contrib/django/templates/basic.html
diff --git a/tests/contrib/django/templates/cached_list.html b/dd-trace-py/tests/contrib/django/templates/cached_list.html
similarity index 100%
rename from tests/contrib/django/templates/cached_list.html
rename to dd-trace-py/tests/contrib/django/templates/cached_list.html
diff --git a/tests/contrib/django/templates/custom_dispatch.html b/dd-trace-py/tests/contrib/django/templates/custom_dispatch.html
similarity index 100%
rename from tests/contrib/django/templates/custom_dispatch.html
rename to dd-trace-py/tests/contrib/django/templates/custom_dispatch.html
diff --git a/tests/contrib/django/templates/users_list.html b/dd-trace-py/tests/contrib/django/templates/users_list.html
similarity index 100%
rename from tests/contrib/django/templates/users_list.html
rename to dd-trace-py/tests/contrib/django/templates/users_list.html
diff --git a/tests/contrib/django/test_django.py b/dd-trace-py/tests/contrib/django/test_django.py
similarity index 100%
rename from tests/contrib/django/test_django.py
rename to dd-trace-py/tests/contrib/django/test_django.py
diff --git a/tests/contrib/django/test_django_appsec_snapshots.py b/dd-trace-py/tests/contrib/django/test_django_appsec_snapshots.py
similarity index 100%
rename from tests/contrib/django/test_django_appsec_snapshots.py
rename to dd-trace-py/tests/contrib/django/test_django_appsec_snapshots.py
diff --git a/tests/contrib/django/test_django_dbm.py b/dd-trace-py/tests/contrib/django/test_django_dbm.py
similarity index 100%
rename from tests/contrib/django/test_django_dbm.py
rename to dd-trace-py/tests/contrib/django/test_django_dbm.py
diff --git a/tests/contrib/django/test_django_patch.py b/dd-trace-py/tests/contrib/django/test_django_patch.py
similarity index 100%
rename from tests/contrib/django/test_django_patch.py
rename to dd-trace-py/tests/contrib/django/test_django_patch.py
diff --git a/tests/contrib/django/test_django_snapshots.py b/dd-trace-py/tests/contrib/django/test_django_snapshots.py
similarity index 100%
rename from tests/contrib/django/test_django_snapshots.py
rename to dd-trace-py/tests/contrib/django/test_django_snapshots.py
diff --git a/tests/contrib/django/test_django_utils.py b/dd-trace-py/tests/contrib/django/test_django_utils.py
similarity index 100%
rename from tests/contrib/django/test_django_utils.py
rename to dd-trace-py/tests/contrib/django/test_django_utils.py
diff --git a/tests/contrib/django/test_django_wsgi.py b/dd-trace-py/tests/contrib/django/test_django_wsgi.py
similarity index 100%
rename from tests/contrib/django/test_django_wsgi.py
rename to dd-trace-py/tests/contrib/django/test_django_wsgi.py
diff --git a/tests/contrib/django/utils.py b/dd-trace-py/tests/contrib/django/utils.py
similarity index 100%
rename from tests/contrib/django/utils.py
rename to dd-trace-py/tests/contrib/django/utils.py
diff --git a/tests/contrib/django/views.py b/dd-trace-py/tests/contrib/django/views.py
similarity index 100%
rename from tests/contrib/django/views.py
rename to dd-trace-py/tests/contrib/django/views.py
diff --git a/tests/contrib/django_celery/app/demoapp/__init__.py b/dd-trace-py/tests/contrib/django_celery/app/demoapp/__init__.py
similarity index 100%
rename from tests/contrib/django_celery/app/demoapp/__init__.py
rename to dd-trace-py/tests/contrib/django_celery/app/demoapp/__init__.py
diff --git a/tests/contrib/django_celery/app/demoapp/migrations/0001_initial.py b/dd-trace-py/tests/contrib/django_celery/app/demoapp/migrations/0001_initial.py
similarity index 100%
rename from tests/contrib/django_celery/app/demoapp/migrations/0001_initial.py
rename to dd-trace-py/tests/contrib/django_celery/app/demoapp/migrations/0001_initial.py
diff --git a/tests/contrib/django_celery/app/demoapp/migrations/__init__.py b/dd-trace-py/tests/contrib/django_celery/app/demoapp/migrations/__init__.py
similarity index 100%
rename from tests/contrib/django_celery/app/demoapp/migrations/__init__.py
rename to dd-trace-py/tests/contrib/django_celery/app/demoapp/migrations/__init__.py
diff --git a/tests/contrib/django_celery/app/demoapp/models.py b/dd-trace-py/tests/contrib/django_celery/app/demoapp/models.py
similarity index 100%
rename from tests/contrib/django_celery/app/demoapp/models.py
rename to dd-trace-py/tests/contrib/django_celery/app/demoapp/models.py
diff --git a/tests/contrib/django_celery/app/demoapp/tasks.py b/dd-trace-py/tests/contrib/django_celery/app/demoapp/tasks.py
similarity index 100%
rename from tests/contrib/django_celery/app/demoapp/tasks.py
rename to dd-trace-py/tests/contrib/django_celery/app/demoapp/tasks.py
diff --git a/tests/contrib/django_celery/app/demoapp/views.py b/dd-trace-py/tests/contrib/django_celery/app/demoapp/views.py
similarity index 100%
rename from tests/contrib/django_celery/app/demoapp/views.py
rename to dd-trace-py/tests/contrib/django_celery/app/demoapp/views.py
diff --git a/tests/contrib/django_celery/app/manage.py b/dd-trace-py/tests/contrib/django_celery/app/manage.py
similarity index 100%
rename from tests/contrib/django_celery/app/manage.py
rename to dd-trace-py/tests/contrib/django_celery/app/manage.py
diff --git a/tests/contrib/django_celery/app/proj/__init__.py b/dd-trace-py/tests/contrib/django_celery/app/proj/__init__.py
similarity index 100%
rename from tests/contrib/django_celery/app/proj/__init__.py
rename to dd-trace-py/tests/contrib/django_celery/app/proj/__init__.py
diff --git a/tests/contrib/django_celery/app/proj/celery.py b/dd-trace-py/tests/contrib/django_celery/app/proj/celery.py
similarity index 100%
rename from tests/contrib/django_celery/app/proj/celery.py
rename to dd-trace-py/tests/contrib/django_celery/app/proj/celery.py
diff --git a/tests/contrib/django_celery/app/proj/settings.py b/dd-trace-py/tests/contrib/django_celery/app/proj/settings.py
similarity index 100%
rename from tests/contrib/django_celery/app/proj/settings.py
rename to dd-trace-py/tests/contrib/django_celery/app/proj/settings.py
diff --git a/tests/contrib/django_celery/app/proj/urls.py b/dd-trace-py/tests/contrib/django_celery/app/proj/urls.py
similarity index 100%
rename from tests/contrib/django_celery/app/proj/urls.py
rename to dd-trace-py/tests/contrib/django_celery/app/proj/urls.py
diff --git a/tests/contrib/django_celery/app/proj/wsgi.py b/dd-trace-py/tests/contrib/django_celery/app/proj/wsgi.py
similarity index 100%
rename from tests/contrib/django_celery/app/proj/wsgi.py
rename to dd-trace-py/tests/contrib/django_celery/app/proj/wsgi.py
diff --git a/tests/contrib/django_celery/test_django_celery.py b/dd-trace-py/tests/contrib/django_celery/test_django_celery.py
similarity index 100%
rename from tests/contrib/django_celery/test_django_celery.py
rename to dd-trace-py/tests/contrib/django_celery/test_django_celery.py
diff --git a/tests/contrib/django_hosts/__init__.py b/dd-trace-py/tests/contrib/django_hosts/__init__.py
similarity index 100%
rename from tests/contrib/django_hosts/__init__.py
rename to dd-trace-py/tests/contrib/django_hosts/__init__.py
diff --git a/tests/contrib/django_hosts/conftest.py b/dd-trace-py/tests/contrib/django_hosts/conftest.py
similarity index 100%
rename from tests/contrib/django_hosts/conftest.py
rename to dd-trace-py/tests/contrib/django_hosts/conftest.py
diff --git a/tests/contrib/django_hosts/django_app/__init__.py b/dd-trace-py/tests/contrib/django_hosts/django_app/__init__.py
similarity index 100%
rename from tests/contrib/django_hosts/django_app/__init__.py
rename to dd-trace-py/tests/contrib/django_hosts/django_app/__init__.py
diff --git a/tests/contrib/django_hosts/django_app/app_urls.py b/dd-trace-py/tests/contrib/django_hosts/django_app/app_urls.py
similarity index 100%
rename from tests/contrib/django_hosts/django_app/app_urls.py
rename to dd-trace-py/tests/contrib/django_hosts/django_app/app_urls.py
diff --git a/tests/contrib/django_hosts/django_app/extra_urls.py b/dd-trace-py/tests/contrib/django_hosts/django_app/extra_urls.py
similarity index 100%
rename from tests/contrib/django_hosts/django_app/extra_urls.py
rename to dd-trace-py/tests/contrib/django_hosts/django_app/extra_urls.py
diff --git a/tests/contrib/django_hosts/django_app/hosts.py b/dd-trace-py/tests/contrib/django_hosts/django_app/hosts.py
similarity index 100%
rename from tests/contrib/django_hosts/django_app/hosts.py
rename to dd-trace-py/tests/contrib/django_hosts/django_app/hosts.py
diff --git a/tests/contrib/django_hosts/django_app/settings.py b/dd-trace-py/tests/contrib/django_hosts/django_app/settings.py
similarity index 100%
rename from tests/contrib/django_hosts/django_app/settings.py
rename to dd-trace-py/tests/contrib/django_hosts/django_app/settings.py
diff --git a/tests/contrib/django_hosts/django_app/urls.py b/dd-trace-py/tests/contrib/django_hosts/django_app/urls.py
similarity index 100%
rename from tests/contrib/django_hosts/django_app/urls.py
rename to dd-trace-py/tests/contrib/django_hosts/django_app/urls.py
diff --git a/tests/contrib/django_hosts/test_django.py b/dd-trace-py/tests/contrib/django_hosts/test_django.py
similarity index 100%
rename from tests/contrib/django_hosts/test_django.py
rename to dd-trace-py/tests/contrib/django_hosts/test_django.py
diff --git a/tests/contrib/django_hosts/views.py b/dd-trace-py/tests/contrib/django_hosts/views.py
similarity index 100%
rename from tests/contrib/django_hosts/views.py
rename to dd-trace-py/tests/contrib/django_hosts/views.py
diff --git a/tests/contrib/djangorestframework/__init__.py b/dd-trace-py/tests/contrib/djangorestframework/__init__.py
similarity index 100%
rename from tests/contrib/djangorestframework/__init__.py
rename to dd-trace-py/tests/contrib/djangorestframework/__init__.py
diff --git a/tests/contrib/djangorestframework/app/__init__.py b/dd-trace-py/tests/contrib/djangorestframework/app/__init__.py
similarity index 100%
rename from tests/contrib/djangorestframework/app/__init__.py
rename to dd-trace-py/tests/contrib/djangorestframework/app/__init__.py
diff --git a/tests/contrib/djangorestframework/app/exceptions.py b/dd-trace-py/tests/contrib/djangorestframework/app/exceptions.py
similarity index 100%
rename from tests/contrib/djangorestframework/app/exceptions.py
rename to dd-trace-py/tests/contrib/djangorestframework/app/exceptions.py
diff --git a/tests/contrib/djangorestframework/app/settings.py b/dd-trace-py/tests/contrib/djangorestframework/app/settings.py
similarity index 100%
rename from tests/contrib/djangorestframework/app/settings.py
rename to dd-trace-py/tests/contrib/djangorestframework/app/settings.py
diff --git a/tests/contrib/djangorestframework/app/views.py b/dd-trace-py/tests/contrib/djangorestframework/app/views.py
similarity index 100%
rename from tests/contrib/djangorestframework/app/views.py
rename to dd-trace-py/tests/contrib/djangorestframework/app/views.py
diff --git a/tests/contrib/djangorestframework/conftest.py b/dd-trace-py/tests/contrib/djangorestframework/conftest.py
similarity index 100%
rename from tests/contrib/djangorestframework/conftest.py
rename to dd-trace-py/tests/contrib/djangorestframework/conftest.py
diff --git a/tests/contrib/djangorestframework/test_appsec.py b/dd-trace-py/tests/contrib/djangorestframework/test_appsec.py
similarity index 100%
rename from tests/contrib/djangorestframework/test_appsec.py
rename to dd-trace-py/tests/contrib/djangorestframework/test_appsec.py
diff --git a/tests/contrib/djangorestframework/test_djangorestframework.py b/dd-trace-py/tests/contrib/djangorestframework/test_djangorestframework.py
similarity index 100%
rename from tests/contrib/djangorestframework/test_djangorestframework.py
rename to dd-trace-py/tests/contrib/djangorestframework/test_djangorestframework.py
diff --git a/tests/contrib/dogpile_cache/__init__.py b/dd-trace-py/tests/contrib/dogpile_cache/__init__.py
similarity index 100%
rename from tests/contrib/dogpile_cache/__init__.py
rename to dd-trace-py/tests/contrib/dogpile_cache/__init__.py
diff --git a/tests/contrib/dogpile_cache/test_dogpile_cache_patch.py b/dd-trace-py/tests/contrib/dogpile_cache/test_dogpile_cache_patch.py
similarity index 100%
rename from tests/contrib/dogpile_cache/test_dogpile_cache_patch.py
rename to dd-trace-py/tests/contrib/dogpile_cache/test_dogpile_cache_patch.py
diff --git a/tests/contrib/dogpile_cache/test_tracing.py b/dd-trace-py/tests/contrib/dogpile_cache/test_tracing.py
similarity index 100%
rename from tests/contrib/dogpile_cache/test_tracing.py
rename to dd-trace-py/tests/contrib/dogpile_cache/test_tracing.py
diff --git a/tests/contrib/dramatiq/__init__.py b/dd-trace-py/tests/contrib/dramatiq/__init__.py
similarity index 100%
rename from tests/contrib/dramatiq/__init__.py
rename to dd-trace-py/tests/contrib/dramatiq/__init__.py
diff --git a/tests/contrib/dramatiq/autopatch.py b/dd-trace-py/tests/contrib/dramatiq/autopatch.py
similarity index 100%
rename from tests/contrib/dramatiq/autopatch.py
rename to dd-trace-py/tests/contrib/dramatiq/autopatch.py
diff --git a/tests/contrib/dramatiq/conftest.py b/dd-trace-py/tests/contrib/dramatiq/conftest.py
similarity index 100%
rename from tests/contrib/dramatiq/conftest.py
rename to dd-trace-py/tests/contrib/dramatiq/conftest.py
diff --git a/tests/contrib/dramatiq/test_integration.py b/dd-trace-py/tests/contrib/dramatiq/test_integration.py
similarity index 100%
rename from tests/contrib/dramatiq/test_integration.py
rename to dd-trace-py/tests/contrib/dramatiq/test_integration.py
diff --git a/tests/contrib/dramatiq/test_patch_auto.py b/dd-trace-py/tests/contrib/dramatiq/test_patch_auto.py
similarity index 100%
rename from tests/contrib/dramatiq/test_patch_auto.py
rename to dd-trace-py/tests/contrib/dramatiq/test_patch_auto.py
diff --git a/tests/contrib/dramatiq/test_patch_manual.py b/dd-trace-py/tests/contrib/dramatiq/test_patch_manual.py
similarity index 100%
rename from tests/contrib/dramatiq/test_patch_manual.py
rename to dd-trace-py/tests/contrib/dramatiq/test_patch_manual.py
diff --git a/tests/contrib/elasticsearch/__init__.py b/dd-trace-py/tests/contrib/elasticsearch/__init__.py
similarity index 100%
rename from tests/contrib/elasticsearch/__init__.py
rename to dd-trace-py/tests/contrib/elasticsearch/__init__.py
diff --git a/tests/contrib/elasticsearch/test_async.py b/dd-trace-py/tests/contrib/elasticsearch/test_async.py
similarity index 100%
rename from tests/contrib/elasticsearch/test_async.py
rename to dd-trace-py/tests/contrib/elasticsearch/test_async.py
diff --git a/tests/contrib/elasticsearch/test_elasticsearch.py b/dd-trace-py/tests/contrib/elasticsearch/test_elasticsearch.py
similarity index 100%
rename from tests/contrib/elasticsearch/test_elasticsearch.py
rename to dd-trace-py/tests/contrib/elasticsearch/test_elasticsearch.py
diff --git a/tests/contrib/elasticsearch/test_elasticsearch_multi.py b/dd-trace-py/tests/contrib/elasticsearch/test_elasticsearch_multi.py
similarity index 100%
rename from tests/contrib/elasticsearch/test_elasticsearch_multi.py
rename to dd-trace-py/tests/contrib/elasticsearch/test_elasticsearch_multi.py
diff --git a/tests/contrib/elasticsearch/test_opensearch.py b/dd-trace-py/tests/contrib/elasticsearch/test_opensearch.py
similarity index 100%
rename from tests/contrib/elasticsearch/test_opensearch.py
rename to dd-trace-py/tests/contrib/elasticsearch/test_opensearch.py
diff --git a/tests/contrib/falcon/__init__.py b/dd-trace-py/tests/contrib/falcon/__init__.py
similarity index 100%
rename from tests/contrib/falcon/__init__.py
rename to dd-trace-py/tests/contrib/falcon/__init__.py
diff --git a/tests/contrib/falcon/app/__init__.py b/dd-trace-py/tests/contrib/falcon/app/__init__.py
similarity index 100%
rename from tests/contrib/falcon/app/__init__.py
rename to dd-trace-py/tests/contrib/falcon/app/__init__.py
diff --git a/tests/contrib/falcon/app/app.py b/dd-trace-py/tests/contrib/falcon/app/app.py
similarity index 100%
rename from tests/contrib/falcon/app/app.py
rename to dd-trace-py/tests/contrib/falcon/app/app.py
diff --git a/tests/contrib/falcon/app/resources.py b/dd-trace-py/tests/contrib/falcon/app/resources.py
similarity index 100%
rename from tests/contrib/falcon/app/resources.py
rename to dd-trace-py/tests/contrib/falcon/app/resources.py
diff --git a/tests/contrib/falcon/test_distributed_tracing.py b/dd-trace-py/tests/contrib/falcon/test_distributed_tracing.py
similarity index 100%
rename from tests/contrib/falcon/test_distributed_tracing.py
rename to dd-trace-py/tests/contrib/falcon/test_distributed_tracing.py
diff --git a/tests/contrib/falcon/test_falcon_patch.py b/dd-trace-py/tests/contrib/falcon/test_falcon_patch.py
similarity index 100%
rename from tests/contrib/falcon/test_falcon_patch.py
rename to dd-trace-py/tests/contrib/falcon/test_falcon_patch.py
diff --git a/tests/contrib/falcon/test_middleware.py b/dd-trace-py/tests/contrib/falcon/test_middleware.py
similarity index 100%
rename from tests/contrib/falcon/test_middleware.py
rename to dd-trace-py/tests/contrib/falcon/test_middleware.py
diff --git a/tests/contrib/falcon/test_schematization.py b/dd-trace-py/tests/contrib/falcon/test_schematization.py
similarity index 100%
rename from tests/contrib/falcon/test_schematization.py
rename to dd-trace-py/tests/contrib/falcon/test_schematization.py
diff --git a/tests/contrib/falcon/test_suite.py b/dd-trace-py/tests/contrib/falcon/test_suite.py
similarity index 100%
rename from tests/contrib/falcon/test_suite.py
rename to dd-trace-py/tests/contrib/falcon/test_suite.py
diff --git a/tests/contrib/fastapi/__init__.py b/dd-trace-py/tests/contrib/fastapi/__init__.py
similarity index 100%
rename from tests/contrib/fastapi/__init__.py
rename to dd-trace-py/tests/contrib/fastapi/__init__.py
diff --git a/tests/contrib/fastapi/app.py b/dd-trace-py/tests/contrib/fastapi/app.py
similarity index 100%
rename from tests/contrib/fastapi/app.py
rename to dd-trace-py/tests/contrib/fastapi/app.py
diff --git a/tests/contrib/fastapi/conftest.py b/dd-trace-py/tests/contrib/fastapi/conftest.py
similarity index 100%
rename from tests/contrib/fastapi/conftest.py
rename to dd-trace-py/tests/contrib/fastapi/conftest.py
diff --git a/tests/contrib/fastapi/test_fastapi.py b/dd-trace-py/tests/contrib/fastapi/test_fastapi.py
similarity index 100%
rename from tests/contrib/fastapi/test_fastapi.py
rename to dd-trace-py/tests/contrib/fastapi/test_fastapi.py
diff --git a/tests/contrib/fastapi/test_fastapi_patch.py b/dd-trace-py/tests/contrib/fastapi/test_fastapi_patch.py
similarity index 100%
rename from tests/contrib/fastapi/test_fastapi_patch.py
rename to dd-trace-py/tests/contrib/fastapi/test_fastapi_patch.py
diff --git a/tests/contrib/flask/__init__.py b/dd-trace-py/tests/contrib/flask/__init__.py
similarity index 100%
rename from tests/contrib/flask/__init__.py
rename to dd-trace-py/tests/contrib/flask/__init__.py
diff --git a/tests/contrib/flask/app.py b/dd-trace-py/tests/contrib/flask/app.py
similarity index 100%
rename from tests/contrib/flask/app.py
rename to dd-trace-py/tests/contrib/flask/app.py
diff --git a/tests/contrib/flask/static/test.txt b/dd-trace-py/tests/contrib/flask/static/test.txt
similarity index 100%
rename from tests/contrib/flask/static/test.txt
rename to dd-trace-py/tests/contrib/flask/static/test.txt
diff --git a/tests/contrib/flask/test_appsec_flask_pytest_iast_no_snapshot.py b/dd-trace-py/tests/contrib/flask/test_appsec_flask_pytest_iast_no_snapshot.py
similarity index 100%
rename from tests/contrib/flask/test_appsec_flask_pytest_iast_no_snapshot.py
rename to dd-trace-py/tests/contrib/flask/test_appsec_flask_pytest_iast_no_snapshot.py
diff --git a/tests/contrib/flask/test_appsec_flask_snapshot.py b/dd-trace-py/tests/contrib/flask/test_appsec_flask_snapshot.py
similarity index 100%
rename from tests/contrib/flask/test_appsec_flask_snapshot.py
rename to dd-trace-py/tests/contrib/flask/test_appsec_flask_snapshot.py
diff --git a/tests/contrib/flask/test_blueprint.py b/dd-trace-py/tests/contrib/flask/test_blueprint.py
similarity index 100%
rename from tests/contrib/flask/test_blueprint.py
rename to dd-trace-py/tests/contrib/flask/test_blueprint.py
diff --git a/tests/contrib/flask/test_errorhandler.py b/dd-trace-py/tests/contrib/flask/test_errorhandler.py
similarity index 100%
rename from tests/contrib/flask/test_errorhandler.py
rename to dd-trace-py/tests/contrib/flask/test_errorhandler.py
diff --git a/tests/contrib/flask/test_flask_helpers.py b/dd-trace-py/tests/contrib/flask/test_flask_helpers.py
similarity index 100%
rename from tests/contrib/flask/test_flask_helpers.py
rename to dd-trace-py/tests/contrib/flask/test_flask_helpers.py
diff --git a/tests/contrib/flask/test_flask_openapi3.py b/dd-trace-py/tests/contrib/flask/test_flask_openapi3.py
similarity index 100%
rename from tests/contrib/flask/test_flask_openapi3.py
rename to dd-trace-py/tests/contrib/flask/test_flask_openapi3.py
diff --git a/tests/contrib/flask/test_flask_patch.py b/dd-trace-py/tests/contrib/flask/test_flask_patch.py
similarity index 100%
rename from tests/contrib/flask/test_flask_patch.py
rename to dd-trace-py/tests/contrib/flask/test_flask_patch.py
diff --git a/tests/contrib/flask/test_flask_pytest_iast.py b/dd-trace-py/tests/contrib/flask/test_flask_pytest_iast.py
similarity index 100%
rename from tests/contrib/flask/test_flask_pytest_iast.py
rename to dd-trace-py/tests/contrib/flask/test_flask_pytest_iast.py
diff --git a/tests/contrib/flask/test_flask_snapshot.py b/dd-trace-py/tests/contrib/flask/test_flask_snapshot.py
similarity index 100%
rename from tests/contrib/flask/test_flask_snapshot.py
rename to dd-trace-py/tests/contrib/flask/test_flask_snapshot.py
diff --git a/tests/contrib/flask/test_hooks.py b/dd-trace-py/tests/contrib/flask/test_hooks.py
similarity index 100%
rename from tests/contrib/flask/test_hooks.py
rename to dd-trace-py/tests/contrib/flask/test_hooks.py
diff --git a/tests/contrib/flask/test_idempotency.py b/dd-trace-py/tests/contrib/flask/test_idempotency.py
similarity index 100%
rename from tests/contrib/flask/test_idempotency.py
rename to dd-trace-py/tests/contrib/flask/test_idempotency.py
diff --git a/tests/contrib/flask/test_request.py b/dd-trace-py/tests/contrib/flask/test_request.py
similarity index 100%
rename from tests/contrib/flask/test_request.py
rename to dd-trace-py/tests/contrib/flask/test_request.py
diff --git a/tests/contrib/flask/test_signals.py b/dd-trace-py/tests/contrib/flask/test_signals.py
similarity index 100%
rename from tests/contrib/flask/test_signals.py
rename to dd-trace-py/tests/contrib/flask/test_signals.py
diff --git a/tests/contrib/flask/test_static.py b/dd-trace-py/tests/contrib/flask/test_static.py
similarity index 100%
rename from tests/contrib/flask/test_static.py
rename to dd-trace-py/tests/contrib/flask/test_static.py
diff --git a/tests/contrib/flask/test_template.py b/dd-trace-py/tests/contrib/flask/test_template.py
similarity index 100%
rename from tests/contrib/flask/test_template.py
rename to dd-trace-py/tests/contrib/flask/test_template.py
diff --git a/tests/contrib/flask/test_templates/err.html b/dd-trace-py/tests/contrib/flask/test_templates/err.html
similarity index 100%
rename from tests/contrib/flask/test_templates/err.html
rename to dd-trace-py/tests/contrib/flask/test_templates/err.html
diff --git a/tests/contrib/flask/test_templates/render_err.html b/dd-trace-py/tests/contrib/flask/test_templates/render_err.html
similarity index 100%
rename from tests/contrib/flask/test_templates/render_err.html
rename to dd-trace-py/tests/contrib/flask/test_templates/render_err.html
diff --git a/tests/contrib/flask/test_templates/test.html b/dd-trace-py/tests/contrib/flask/test_templates/test.html
similarity index 100%
rename from tests/contrib/flask/test_templates/test.html
rename to dd-trace-py/tests/contrib/flask/test_templates/test.html
diff --git a/tests/contrib/flask/test_templates/test_insecure.html b/dd-trace-py/tests/contrib/flask/test_templates/test_insecure.html
similarity index 100%
rename from tests/contrib/flask/test_templates/test_insecure.html
rename to dd-trace-py/tests/contrib/flask/test_templates/test_insecure.html
diff --git a/tests/contrib/flask/test_templates/test_trans_insecure.html b/dd-trace-py/tests/contrib/flask/test_templates/test_trans_insecure.html
similarity index 100%
rename from tests/contrib/flask/test_templates/test_trans_insecure.html
rename to dd-trace-py/tests/contrib/flask/test_templates/test_trans_insecure.html
diff --git a/tests/contrib/flask/test_views.py b/dd-trace-py/tests/contrib/flask/test_views.py
similarity index 100%
rename from tests/contrib/flask/test_views.py
rename to dd-trace-py/tests/contrib/flask/test_views.py
diff --git a/tests/contrib/flask_autopatch/__init__.py b/dd-trace-py/tests/contrib/flask_autopatch/__init__.py
similarity index 100%
rename from tests/contrib/flask_autopatch/__init__.py
rename to dd-trace-py/tests/contrib/flask_autopatch/__init__.py
diff --git a/tests/contrib/flask_autopatch/test_flask_autopatch.py b/dd-trace-py/tests/contrib/flask_autopatch/test_flask_autopatch.py
similarity index 100%
rename from tests/contrib/flask_autopatch/test_flask_autopatch.py
rename to dd-trace-py/tests/contrib/flask_autopatch/test_flask_autopatch.py
diff --git a/tests/contrib/flask_autopatch/test_templates/err.html b/dd-trace-py/tests/contrib/flask_autopatch/test_templates/err.html
similarity index 100%
rename from tests/contrib/flask_autopatch/test_templates/err.html
rename to dd-trace-py/tests/contrib/flask_autopatch/test_templates/err.html
diff --git a/tests/contrib/flask_autopatch/test_templates/test.html b/dd-trace-py/tests/contrib/flask_autopatch/test_templates/test.html
similarity index 100%
rename from tests/contrib/flask_autopatch/test_templates/test.html
rename to dd-trace-py/tests/contrib/flask_autopatch/test_templates/test.html
diff --git a/tests/contrib/flask_cache/__init__.py b/dd-trace-py/tests/contrib/flask_cache/__init__.py
similarity index 100%
rename from tests/contrib/flask_cache/__init__.py
rename to dd-trace-py/tests/contrib/flask_cache/__init__.py
diff --git a/tests/contrib/flask_cache/test.py b/dd-trace-py/tests/contrib/flask_cache/test.py
similarity index 100%
rename from tests/contrib/flask_cache/test.py
rename to dd-trace-py/tests/contrib/flask_cache/test.py
diff --git a/tests/contrib/flask_cache/test_utils.py b/dd-trace-py/tests/contrib/flask_cache/test_utils.py
similarity index 100%
rename from tests/contrib/flask_cache/test_utils.py
rename to dd-trace-py/tests/contrib/flask_cache/test_utils.py
diff --git a/tests/contrib/flask_cache/test_wrapper_safety.py b/dd-trace-py/tests/contrib/flask_cache/test_wrapper_safety.py
similarity index 100%
rename from tests/contrib/flask_cache/test_wrapper_safety.py
rename to dd-trace-py/tests/contrib/flask_cache/test_wrapper_safety.py
diff --git a/tests/contrib/futures/__init__.py b/dd-trace-py/tests/contrib/futures/__init__.py
similarity index 100%
rename from tests/contrib/futures/__init__.py
rename to dd-trace-py/tests/contrib/futures/__init__.py
diff --git a/tests/contrib/futures/test_futures_patch.py b/dd-trace-py/tests/contrib/futures/test_futures_patch.py
similarity index 100%
rename from tests/contrib/futures/test_futures_patch.py
rename to dd-trace-py/tests/contrib/futures/test_futures_patch.py
diff --git a/tests/contrib/futures/test_propagation.py b/dd-trace-py/tests/contrib/futures/test_propagation.py
similarity index 100%
rename from tests/contrib/futures/test_propagation.py
rename to dd-trace-py/tests/contrib/futures/test_propagation.py
diff --git a/tests/contrib/gevent/__init__.py b/dd-trace-py/tests/contrib/gevent/__init__.py
similarity index 100%
rename from tests/contrib/gevent/__init__.py
rename to dd-trace-py/tests/contrib/gevent/__init__.py
diff --git a/tests/contrib/gevent/monkeypatch.py b/dd-trace-py/tests/contrib/gevent/monkeypatch.py
similarity index 100%
rename from tests/contrib/gevent/monkeypatch.py
rename to dd-trace-py/tests/contrib/gevent/monkeypatch.py
diff --git a/tests/contrib/gevent/test_tracer.py b/dd-trace-py/tests/contrib/gevent/test_tracer.py
similarity index 100%
rename from tests/contrib/gevent/test_tracer.py
rename to dd-trace-py/tests/contrib/gevent/test_tracer.py
diff --git a/tests/contrib/gevent/utils.py b/dd-trace-py/tests/contrib/gevent/utils.py
similarity index 100%
rename from tests/contrib/gevent/utils.py
rename to dd-trace-py/tests/contrib/gevent/utils.py
diff --git a/tests/contrib/gevent/wrong_program_gevent.py b/dd-trace-py/tests/contrib/gevent/wrong_program_gevent.py
similarity index 100%
rename from tests/contrib/gevent/wrong_program_gevent.py
rename to dd-trace-py/tests/contrib/gevent/wrong_program_gevent.py
diff --git a/tests/contrib/google_adk/__init__.py b/dd-trace-py/tests/contrib/google_adk/__init__.py
similarity index 100%
rename from tests/contrib/google_adk/__init__.py
rename to dd-trace-py/tests/contrib/google_adk/__init__.py
diff --git a/tests/contrib/google_adk/cassettes/agent_error_handling.yaml b/dd-trace-py/tests/contrib/google_adk/cassettes/agent_error_handling.yaml
similarity index 100%
rename from tests/contrib/google_adk/cassettes/agent_error_handling.yaml
rename to dd-trace-py/tests/contrib/google_adk/cassettes/agent_error_handling.yaml
diff --git a/tests/contrib/google_adk/cassettes/agent_math_and_code.yaml b/dd-trace-py/tests/contrib/google_adk/cassettes/agent_math_and_code.yaml
similarity index 100%
rename from tests/contrib/google_adk/cassettes/agent_math_and_code.yaml
rename to dd-trace-py/tests/contrib/google_adk/cassettes/agent_math_and_code.yaml
diff --git a/tests/contrib/google_adk/cassettes/agent_run_async.yaml b/dd-trace-py/tests/contrib/google_adk/cassettes/agent_run_async.yaml
similarity index 100%
rename from tests/contrib/google_adk/cassettes/agent_run_async.yaml
rename to dd-trace-py/tests/contrib/google_adk/cassettes/agent_run_async.yaml
diff --git a/tests/contrib/google_adk/cassettes/agent_tool_usage.yaml b/dd-trace-py/tests/contrib/google_adk/cassettes/agent_tool_usage.yaml
similarity index 100%
rename from tests/contrib/google_adk/cassettes/agent_tool_usage.yaml
rename to dd-trace-py/tests/contrib/google_adk/cassettes/agent_tool_usage.yaml
diff --git a/tests/contrib/google_adk/conftest.py b/dd-trace-py/tests/contrib/google_adk/conftest.py
similarity index 100%
rename from tests/contrib/google_adk/conftest.py
rename to dd-trace-py/tests/contrib/google_adk/conftest.py
diff --git a/tests/contrib/google_adk/test_google_adk.py b/dd-trace-py/tests/contrib/google_adk/test_google_adk.py
similarity index 100%
rename from tests/contrib/google_adk/test_google_adk.py
rename to dd-trace-py/tests/contrib/google_adk/test_google_adk.py
diff --git a/tests/contrib/google_adk/test_google_adk_llmobs.py b/dd-trace-py/tests/contrib/google_adk/test_google_adk_llmobs.py
similarity index 100%
rename from tests/contrib/google_adk/test_google_adk_llmobs.py
rename to dd-trace-py/tests/contrib/google_adk/test_google_adk_llmobs.py
diff --git a/tests/contrib/google_adk/test_google_adk_patch.py b/dd-trace-py/tests/contrib/google_adk/test_google_adk_patch.py
similarity index 100%
rename from tests/contrib/google_adk/test_google_adk_patch.py
rename to dd-trace-py/tests/contrib/google_adk/test_google_adk_patch.py
diff --git a/tests/contrib/google_adk/utils.py b/dd-trace-py/tests/contrib/google_adk/utils.py
similarity index 100%
rename from tests/contrib/google_adk/utils.py
rename to dd-trace-py/tests/contrib/google_adk/utils.py
diff --git a/tests/contrib/google_cloud_pubsub/__init__.py b/dd-trace-py/tests/contrib/google_cloud_pubsub/__init__.py
similarity index 100%
rename from tests/contrib/google_cloud_pubsub/__init__.py
rename to dd-trace-py/tests/contrib/google_cloud_pubsub/__init__.py
diff --git a/tests/contrib/google_cloud_pubsub/conftest.py b/dd-trace-py/tests/contrib/google_cloud_pubsub/conftest.py
similarity index 100%
rename from tests/contrib/google_cloud_pubsub/conftest.py
rename to dd-trace-py/tests/contrib/google_cloud_pubsub/conftest.py
diff --git a/tests/contrib/google_cloud_pubsub/test_pubsub.py b/dd-trace-py/tests/contrib/google_cloud_pubsub/test_pubsub.py
similarity index 100%
rename from tests/contrib/google_cloud_pubsub/test_pubsub.py
rename to dd-trace-py/tests/contrib/google_cloud_pubsub/test_pubsub.py
diff --git a/tests/contrib/google_cloud_pubsub/test_pubsub_client.py b/dd-trace-py/tests/contrib/google_cloud_pubsub/test_pubsub_client.py
similarity index 100%
rename from tests/contrib/google_cloud_pubsub/test_pubsub_client.py
rename to dd-trace-py/tests/contrib/google_cloud_pubsub/test_pubsub_client.py
diff --git a/tests/contrib/google_cloud_pubsub/test_pubsub_patch.py b/dd-trace-py/tests/contrib/google_cloud_pubsub/test_pubsub_patch.py
similarity index 100%
rename from tests/contrib/google_cloud_pubsub/test_pubsub_patch.py
rename to dd-trace-py/tests/contrib/google_cloud_pubsub/test_pubsub_patch.py
diff --git a/tests/contrib/google_cloud_pubsub/test_pubsub_push.py b/dd-trace-py/tests/contrib/google_cloud_pubsub/test_pubsub_push.py
similarity index 100%
rename from tests/contrib/google_cloud_pubsub/test_pubsub_push.py
rename to dd-trace-py/tests/contrib/google_cloud_pubsub/test_pubsub_push.py
diff --git a/tests/contrib/google_genai/__init__.py b/dd-trace-py/tests/contrib/google_genai/__init__.py
similarity index 100%
rename from tests/contrib/google_genai/__init__.py
rename to dd-trace-py/tests/contrib/google_genai/__init__.py
diff --git a/tests/contrib/google_genai/conftest.py b/dd-trace-py/tests/contrib/google_genai/conftest.py
similarity index 100%
rename from tests/contrib/google_genai/conftest.py
rename to dd-trace-py/tests/contrib/google_genai/conftest.py
diff --git a/tests/contrib/google_genai/test_google_genai.py b/dd-trace-py/tests/contrib/google_genai/test_google_genai.py
similarity index 100%
rename from tests/contrib/google_genai/test_google_genai.py
rename to dd-trace-py/tests/contrib/google_genai/test_google_genai.py
diff --git a/tests/contrib/google_genai/test_google_genai_llmobs.py b/dd-trace-py/tests/contrib/google_genai/test_google_genai_llmobs.py
similarity index 100%
rename from tests/contrib/google_genai/test_google_genai_llmobs.py
rename to dd-trace-py/tests/contrib/google_genai/test_google_genai_llmobs.py
diff --git a/tests/contrib/google_genai/test_google_genai_patch.py b/dd-trace-py/tests/contrib/google_genai/test_google_genai_patch.py
similarity index 100%
rename from tests/contrib/google_genai/test_google_genai_patch.py
rename to dd-trace-py/tests/contrib/google_genai/test_google_genai_patch.py
diff --git a/tests/contrib/google_genai/utils.py b/dd-trace-py/tests/contrib/google_genai/utils.py
similarity index 100%
rename from tests/contrib/google_genai/utils.py
rename to dd-trace-py/tests/contrib/google_genai/utils.py
diff --git a/tests/contrib/graphene/__init__.py b/dd-trace-py/tests/contrib/graphene/__init__.py
similarity index 100%
rename from tests/contrib/graphene/__init__.py
rename to dd-trace-py/tests/contrib/graphene/__init__.py
diff --git a/tests/contrib/graphene/test_graphene.py b/dd-trace-py/tests/contrib/graphene/test_graphene.py
similarity index 100%
rename from tests/contrib/graphene/test_graphene.py
rename to dd-trace-py/tests/contrib/graphene/test_graphene.py
diff --git a/tests/contrib/graphql/__init__.py b/dd-trace-py/tests/contrib/graphql/__init__.py
similarity index 100%
rename from tests/contrib/graphql/__init__.py
rename to dd-trace-py/tests/contrib/graphql/__init__.py
diff --git a/tests/contrib/graphql/test_graphql.py b/dd-trace-py/tests/contrib/graphql/test_graphql.py
similarity index 100%
rename from tests/contrib/graphql/test_graphql.py
rename to dd-trace-py/tests/contrib/graphql/test_graphql.py
diff --git a/tests/contrib/graphql/test_graphql_patch.py b/dd-trace-py/tests/contrib/graphql/test_graphql_patch.py
similarity index 100%
rename from tests/contrib/graphql/test_graphql_patch.py
rename to dd-trace-py/tests/contrib/graphql/test_graphql_patch.py
diff --git a/tests/contrib/grpc/__init__.py b/dd-trace-py/tests/contrib/grpc/__init__.py
similarity index 100%
rename from tests/contrib/grpc/__init__.py
rename to dd-trace-py/tests/contrib/grpc/__init__.py
diff --git a/tests/contrib/grpc/common.py b/dd-trace-py/tests/contrib/grpc/common.py
similarity index 100%
rename from tests/contrib/grpc/common.py
rename to dd-trace-py/tests/contrib/grpc/common.py
diff --git a/tests/contrib/grpc/hello.proto b/dd-trace-py/tests/contrib/grpc/hello.proto
similarity index 100%
rename from tests/contrib/grpc/hello.proto
rename to dd-trace-py/tests/contrib/grpc/hello.proto
diff --git a/tests/contrib/grpc/hello_pb2.py b/dd-trace-py/tests/contrib/grpc/hello_pb2.py
similarity index 100%
rename from tests/contrib/grpc/hello_pb2.py
rename to dd-trace-py/tests/contrib/grpc/hello_pb2.py
diff --git a/tests/contrib/grpc/hello_pb2_grpc.py b/dd-trace-py/tests/contrib/grpc/hello_pb2_grpc.py
similarity index 100%
rename from tests/contrib/grpc/hello_pb2_grpc.py
rename to dd-trace-py/tests/contrib/grpc/hello_pb2_grpc.py
diff --git a/tests/contrib/grpc/hello_servicer.py b/dd-trace-py/tests/contrib/grpc/hello_servicer.py
similarity index 100%
rename from tests/contrib/grpc/hello_servicer.py
rename to dd-trace-py/tests/contrib/grpc/hello_servicer.py
diff --git a/tests/contrib/grpc/test_constants.py b/dd-trace-py/tests/contrib/grpc/test_constants.py
similarity index 100%
rename from tests/contrib/grpc/test_constants.py
rename to dd-trace-py/tests/contrib/grpc/test_constants.py
diff --git a/tests/contrib/grpc/test_grpc.py b/dd-trace-py/tests/contrib/grpc/test_grpc.py
similarity index 100%
rename from tests/contrib/grpc/test_grpc.py
rename to dd-trace-py/tests/contrib/grpc/test_grpc.py
diff --git a/tests/contrib/grpc/test_grpc_patch.py b/dd-trace-py/tests/contrib/grpc/test_grpc_patch.py
similarity index 100%
rename from tests/contrib/grpc/test_grpc_patch.py
rename to dd-trace-py/tests/contrib/grpc/test_grpc_patch.py
diff --git a/tests/contrib/grpc/test_grpc_utils.py b/dd-trace-py/tests/contrib/grpc/test_grpc_utils.py
similarity index 100%
rename from tests/contrib/grpc/test_grpc_utils.py
rename to dd-trace-py/tests/contrib/grpc/test_grpc_utils.py
diff --git a/tests/contrib/grpc_aio/__init__.py b/dd-trace-py/tests/contrib/grpc_aio/__init__.py
similarity index 100%
rename from tests/contrib/grpc_aio/__init__.py
rename to dd-trace-py/tests/contrib/grpc_aio/__init__.py
diff --git a/tests/contrib/grpc_aio/hellostreamingworld_pb2.py b/dd-trace-py/tests/contrib/grpc_aio/hellostreamingworld_pb2.py
similarity index 100%
rename from tests/contrib/grpc_aio/hellostreamingworld_pb2.py
rename to dd-trace-py/tests/contrib/grpc_aio/hellostreamingworld_pb2.py
diff --git a/tests/contrib/grpc_aio/hellostreamingworld_pb2.pyi b/dd-trace-py/tests/contrib/grpc_aio/hellostreamingworld_pb2.pyi
similarity index 100%
rename from tests/contrib/grpc_aio/hellostreamingworld_pb2.pyi
rename to dd-trace-py/tests/contrib/grpc_aio/hellostreamingworld_pb2.pyi
diff --git a/tests/contrib/grpc_aio/hellostreamingworld_pb2_grpc.py b/dd-trace-py/tests/contrib/grpc_aio/hellostreamingworld_pb2_grpc.py
similarity index 100%
rename from tests/contrib/grpc_aio/hellostreamingworld_pb2_grpc.py
rename to dd-trace-py/tests/contrib/grpc_aio/hellostreamingworld_pb2_grpc.py
diff --git a/tests/contrib/grpc_aio/test_grpc_aio.py b/dd-trace-py/tests/contrib/grpc_aio/test_grpc_aio.py
similarity index 100%
rename from tests/contrib/grpc_aio/test_grpc_aio.py
rename to dd-trace-py/tests/contrib/grpc_aio/test_grpc_aio.py
diff --git a/tests/contrib/gunicorn/__init__.py b/dd-trace-py/tests/contrib/gunicorn/__init__.py
similarity index 100%
rename from tests/contrib/gunicorn/__init__.py
rename to dd-trace-py/tests/contrib/gunicorn/__init__.py
diff --git a/tests/contrib/gunicorn/test_gunicorn.py b/dd-trace-py/tests/contrib/gunicorn/test_gunicorn.py
similarity index 100%
rename from tests/contrib/gunicorn/test_gunicorn.py
rename to dd-trace-py/tests/contrib/gunicorn/test_gunicorn.py
diff --git a/tests/contrib/gunicorn/wsgi_mw_app.py b/dd-trace-py/tests/contrib/gunicorn/wsgi_mw_app.py
similarity index 100%
rename from tests/contrib/gunicorn/wsgi_mw_app.py
rename to dd-trace-py/tests/contrib/gunicorn/wsgi_mw_app.py
diff --git a/tests/contrib/httplib/__init__.py b/dd-trace-py/tests/contrib/httplib/__init__.py
similarity index 100%
rename from tests/contrib/httplib/__init__.py
rename to dd-trace-py/tests/contrib/httplib/__init__.py
diff --git a/tests/contrib/httplib/test_httplib.py b/dd-trace-py/tests/contrib/httplib/test_httplib.py
similarity index 100%
rename from tests/contrib/httplib/test_httplib.py
rename to dd-trace-py/tests/contrib/httplib/test_httplib.py
diff --git a/tests/contrib/httplib/test_httplib_distributed.py b/dd-trace-py/tests/contrib/httplib/test_httplib_distributed.py
similarity index 100%
rename from tests/contrib/httplib/test_httplib_distributed.py
rename to dd-trace-py/tests/contrib/httplib/test_httplib_distributed.py
diff --git a/tests/contrib/httplib/test_httplib_patch.py b/dd-trace-py/tests/contrib/httplib/test_httplib_patch.py
similarity index 100%
rename from tests/contrib/httplib/test_httplib_patch.py
rename to dd-trace-py/tests/contrib/httplib/test_httplib_patch.py
diff --git a/tests/contrib/httpx/__init__.py b/dd-trace-py/tests/contrib/httpx/__init__.py
similarity index 100%
rename from tests/contrib/httpx/__init__.py
rename to dd-trace-py/tests/contrib/httpx/__init__.py
diff --git a/tests/contrib/httpx/test_httpx.py b/dd-trace-py/tests/contrib/httpx/test_httpx.py
similarity index 100%
rename from tests/contrib/httpx/test_httpx.py
rename to dd-trace-py/tests/contrib/httpx/test_httpx.py
diff --git a/tests/contrib/httpx/test_httpx_patch.py b/dd-trace-py/tests/contrib/httpx/test_httpx_patch.py
similarity index 100%
rename from tests/contrib/httpx/test_httpx_patch.py
rename to dd-trace-py/tests/contrib/httpx/test_httpx_patch.py
diff --git a/tests/contrib/integration_registry/__init__.py b/dd-trace-py/tests/contrib/integration_registry/__init__.py
similarity index 100%
rename from tests/contrib/integration_registry/__init__.py
rename to dd-trace-py/tests/contrib/integration_registry/__init__.py
diff --git a/tests/contrib/integration_registry/conftest.py b/dd-trace-py/tests/contrib/integration_registry/conftest.py
similarity index 100%
rename from tests/contrib/integration_registry/conftest.py
rename to dd-trace-py/tests/contrib/integration_registry/conftest.py
diff --git a/tests/contrib/integration_registry/test_contrib_versions.py b/dd-trace-py/tests/contrib/integration_registry/test_contrib_versions.py
similarity index 100%
rename from tests/contrib/integration_registry/test_contrib_versions.py
rename to dd-trace-py/tests/contrib/integration_registry/test_contrib_versions.py
diff --git a/tests/contrib/integration_registry/test_external_dependencies.py b/dd-trace-py/tests/contrib/integration_registry/test_external_dependencies.py
similarity index 100%
rename from tests/contrib/integration_registry/test_external_dependencies.py
rename to dd-trace-py/tests/contrib/integration_registry/test_external_dependencies.py
diff --git a/tests/contrib/integration_registry/test_registry_schema.py b/dd-trace-py/tests/contrib/integration_registry/test_registry_schema.py
similarity index 100%
rename from tests/contrib/integration_registry/test_registry_schema.py
rename to dd-trace-py/tests/contrib/integration_registry/test_registry_schema.py
diff --git a/tests/contrib/integration_registry/test_riotfile.py b/dd-trace-py/tests/contrib/integration_registry/test_riotfile.py
similarity index 100%
rename from tests/contrib/integration_registry/test_riotfile.py
rename to dd-trace-py/tests/contrib/integration_registry/test_riotfile.py
diff --git a/tests/contrib/internal/coverage/test_utils.py b/dd-trace-py/tests/contrib/internal/coverage/test_utils.py
similarity index 100%
rename from tests/contrib/internal/coverage/test_utils.py
rename to dd-trace-py/tests/contrib/internal/coverage/test_utils.py
diff --git a/tests/contrib/jinja2/__init__.py b/dd-trace-py/tests/contrib/jinja2/__init__.py
similarity index 100%
rename from tests/contrib/jinja2/__init__.py
rename to dd-trace-py/tests/contrib/jinja2/__init__.py
diff --git a/tests/contrib/jinja2/templates/base.html b/dd-trace-py/tests/contrib/jinja2/templates/base.html
similarity index 100%
rename from tests/contrib/jinja2/templates/base.html
rename to dd-trace-py/tests/contrib/jinja2/templates/base.html
diff --git a/tests/contrib/jinja2/templates/template.html b/dd-trace-py/tests/contrib/jinja2/templates/template.html
similarity index 100%
rename from tests/contrib/jinja2/templates/template.html
rename to dd-trace-py/tests/contrib/jinja2/templates/template.html
diff --git a/tests/contrib/jinja2/test_jinja2.py b/dd-trace-py/tests/contrib/jinja2/test_jinja2.py
similarity index 100%
rename from tests/contrib/jinja2/test_jinja2.py
rename to dd-trace-py/tests/contrib/jinja2/test_jinja2.py
diff --git a/tests/contrib/jinja2/test_jinja2_patch.py b/dd-trace-py/tests/contrib/jinja2/test_jinja2_patch.py
similarity index 100%
rename from tests/contrib/jinja2/test_jinja2_patch.py
rename to dd-trace-py/tests/contrib/jinja2/test_jinja2_patch.py
diff --git a/tests/contrib/kafka/__init__.py b/dd-trace-py/tests/contrib/kafka/__init__.py
similarity index 100%
rename from tests/contrib/kafka/__init__.py
rename to dd-trace-py/tests/contrib/kafka/__init__.py
diff --git a/tests/contrib/kafka/conftest.py b/dd-trace-py/tests/contrib/kafka/conftest.py
similarity index 100%
rename from tests/contrib/kafka/conftest.py
rename to dd-trace-py/tests/contrib/kafka/conftest.py
diff --git a/tests/contrib/kafka/meta.properties b/dd-trace-py/tests/contrib/kafka/meta.properties
similarity index 100%
rename from tests/contrib/kafka/meta.properties
rename to dd-trace-py/tests/contrib/kafka/meta.properties
diff --git a/tests/contrib/kafka/test_kafka.py b/dd-trace-py/tests/contrib/kafka/test_kafka.py
similarity index 100%
rename from tests/contrib/kafka/test_kafka.py
rename to dd-trace-py/tests/contrib/kafka/test_kafka.py
diff --git a/tests/contrib/kafka/test_kafka_dsm.py b/dd-trace-py/tests/contrib/kafka/test_kafka_dsm.py
similarity index 100%
rename from tests/contrib/kafka/test_kafka_dsm.py
rename to dd-trace-py/tests/contrib/kafka/test_kafka_dsm.py
diff --git a/tests/contrib/kafka/test_kafka_patch.py b/dd-trace-py/tests/contrib/kafka/test_kafka_patch.py
similarity index 100%
rename from tests/contrib/kafka/test_kafka_patch.py
rename to dd-trace-py/tests/contrib/kafka/test_kafka_patch.py
diff --git a/tests/contrib/kombu/__init__.py b/dd-trace-py/tests/contrib/kombu/__init__.py
similarity index 100%
rename from tests/contrib/kombu/__init__.py
rename to dd-trace-py/tests/contrib/kombu/__init__.py
diff --git a/tests/contrib/kombu/test.py b/dd-trace-py/tests/contrib/kombu/test.py
similarity index 100%
rename from tests/contrib/kombu/test.py
rename to dd-trace-py/tests/contrib/kombu/test.py
diff --git a/tests/contrib/kombu/test_kombu_patch.py b/dd-trace-py/tests/contrib/kombu/test_kombu_patch.py
similarity index 100%
rename from tests/contrib/kombu/test_kombu_patch.py
rename to dd-trace-py/tests/contrib/kombu/test_kombu_patch.py
diff --git a/tests/contrib/langchain/__init__.py b/dd-trace-py/tests/contrib/langchain/__init__.py
similarity index 100%
rename from tests/contrib/langchain/__init__.py
rename to dd-trace-py/tests/contrib/langchain/__init__.py
diff --git a/tests/contrib/langchain/conftest.py b/dd-trace-py/tests/contrib/langchain/conftest.py
similarity index 100%
rename from tests/contrib/langchain/conftest.py
rename to dd-trace-py/tests/contrib/langchain/conftest.py
diff --git a/tests/contrib/langchain/test_langchain.py b/dd-trace-py/tests/contrib/langchain/test_langchain.py
similarity index 100%
rename from tests/contrib/langchain/test_langchain.py
rename to dd-trace-py/tests/contrib/langchain/test_langchain.py
diff --git a/tests/contrib/langchain/test_langchain_llmobs.py b/dd-trace-py/tests/contrib/langchain/test_langchain_llmobs.py
similarity index 100%
rename from tests/contrib/langchain/test_langchain_llmobs.py
rename to dd-trace-py/tests/contrib/langchain/test_langchain_llmobs.py
diff --git a/tests/contrib/langchain/test_langchain_patch.py b/dd-trace-py/tests/contrib/langchain/test_langchain_patch.py
similarity index 100%
rename from tests/contrib/langchain/test_langchain_patch.py
rename to dd-trace-py/tests/contrib/langchain/test_langchain_patch.py
diff --git a/tests/contrib/langchain/utils.py b/dd-trace-py/tests/contrib/langchain/utils.py
similarity index 100%
rename from tests/contrib/langchain/utils.py
rename to dd-trace-py/tests/contrib/langchain/utils.py
diff --git a/tests/contrib/langgraph/__init__.py b/dd-trace-py/tests/contrib/langgraph/__init__.py
similarity index 100%
rename from tests/contrib/langgraph/__init__.py
rename to dd-trace-py/tests/contrib/langgraph/__init__.py
diff --git a/tests/contrib/langgraph/conftest.py b/dd-trace-py/tests/contrib/langgraph/conftest.py
similarity index 100%
rename from tests/contrib/langgraph/conftest.py
rename to dd-trace-py/tests/contrib/langgraph/conftest.py
diff --git a/tests/contrib/langgraph/test_langgraph.py b/dd-trace-py/tests/contrib/langgraph/test_langgraph.py
similarity index 100%
rename from tests/contrib/langgraph/test_langgraph.py
rename to dd-trace-py/tests/contrib/langgraph/test_langgraph.py
diff --git a/tests/contrib/langgraph/test_langgraph_llmobs.py b/dd-trace-py/tests/contrib/langgraph/test_langgraph_llmobs.py
similarity index 100%
rename from tests/contrib/langgraph/test_langgraph_llmobs.py
rename to dd-trace-py/tests/contrib/langgraph/test_langgraph_llmobs.py
diff --git a/tests/contrib/langgraph/test_langgraph_patch.py b/dd-trace-py/tests/contrib/langgraph/test_langgraph_patch.py
similarity index 100%
rename from tests/contrib/langgraph/test_langgraph_patch.py
rename to dd-trace-py/tests/contrib/langgraph/test_langgraph_patch.py
diff --git a/tests/contrib/litellm/__init__.py b/dd-trace-py/tests/contrib/litellm/__init__.py
similarity index 100%
rename from tests/contrib/litellm/__init__.py
rename to dd-trace-py/tests/contrib/litellm/__init__.py
diff --git a/tests/contrib/litellm/cassettes/completion.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_anthropic.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_anthropic.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_anthropic.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_anthropic.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_anthropic_cache_write_1h_ttl.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_anthropic_cache_write_1h_ttl.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_anthropic_cache_write_1h_ttl.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_anthropic_cache_write_1h_ttl.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_anthropic_v1_74_15.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_anthropic_v1_74_15.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_anthropic_v1_74_15.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_anthropic_v1_74_15.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_command-r.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_command-r.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_command-r.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_command-r.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_multiple_choices.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_multiple_choices.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_multiple_choices.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_multiple_choices.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_multiple_choices_proxy.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_multiple_choices_proxy.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_multiple_choices_proxy.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_multiple_choices_proxy.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_multiple_choices_with_tools.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_multiple_choices_with_tools.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_multiple_choices_with_tools.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_multiple_choices_with_tools.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_proxy.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_proxy.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_proxy.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_proxy.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_reasoning.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_reasoning.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_reasoning.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_reasoning.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_stream.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_stream.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_stream.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_stream.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_stream_exclude_usage.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_exclude_usage.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_stream_exclude_usage.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_exclude_usage.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_stream_multiple_choices.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_multiple_choices.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_stream_multiple_choices.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_multiple_choices.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_exclude_usage.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_exclude_usage.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_stream_multiple_choices_exclude_usage.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_exclude_usage.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_proxy.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_proxy.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_stream_multiple_choices_proxy.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_proxy.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_with_tools.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_with_tools.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_stream_multiple_choices_with_tools.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_multiple_choices_with_tools.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_stream_proxy.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_proxy.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_stream_proxy.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_proxy.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_stream_with_tools.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_with_tools.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_stream_with_tools.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_stream_with_tools.yaml
diff --git a/tests/contrib/litellm/cassettes/completion_with_tools.yaml b/dd-trace-py/tests/contrib/litellm/cassettes/completion_with_tools.yaml
similarity index 100%
rename from tests/contrib/litellm/cassettes/completion_with_tools.yaml
rename to dd-trace-py/tests/contrib/litellm/cassettes/completion_with_tools.yaml
diff --git a/tests/contrib/litellm/conftest.py b/dd-trace-py/tests/contrib/litellm/conftest.py
similarity index 100%
rename from tests/contrib/litellm/conftest.py
rename to dd-trace-py/tests/contrib/litellm/conftest.py
diff --git a/tests/contrib/litellm/test_litellm.py b/dd-trace-py/tests/contrib/litellm/test_litellm.py
similarity index 100%
rename from tests/contrib/litellm/test_litellm.py
rename to dd-trace-py/tests/contrib/litellm/test_litellm.py
diff --git a/tests/contrib/litellm/test_litellm_llmobs.py b/dd-trace-py/tests/contrib/litellm/test_litellm_llmobs.py
similarity index 100%
rename from tests/contrib/litellm/test_litellm_llmobs.py
rename to dd-trace-py/tests/contrib/litellm/test_litellm_llmobs.py
diff --git a/tests/contrib/litellm/test_litellm_patch.py b/dd-trace-py/tests/contrib/litellm/test_litellm_patch.py
similarity index 100%
rename from tests/contrib/litellm/test_litellm_patch.py
rename to dd-trace-py/tests/contrib/litellm/test_litellm_patch.py
diff --git a/tests/contrib/litellm/utils.py b/dd-trace-py/tests/contrib/litellm/utils.py
similarity index 100%
rename from tests/contrib/litellm/utils.py
rename to dd-trace-py/tests/contrib/litellm/utils.py
diff --git a/tests/contrib/llama_index/__init__.py b/dd-trace-py/tests/contrib/llama_index/__init__.py
similarity index 100%
rename from tests/contrib/llama_index/__init__.py
rename to dd-trace-py/tests/contrib/llama_index/__init__.py
diff --git a/tests/contrib/llama_index/cassettes/llama_index_chat_error.yaml b/dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_chat_error.yaml
similarity index 100%
rename from tests/contrib/llama_index/cassettes/llama_index_chat_error.yaml
rename to dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_chat_error.yaml
diff --git a/tests/contrib/llama_index/cassettes/llama_index_chat_stream.yaml b/dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_chat_stream.yaml
similarity index 100%
rename from tests/contrib/llama_index/cassettes/llama_index_chat_stream.yaml
rename to dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_chat_stream.yaml
diff --git a/tests/contrib/llama_index/cassettes/llama_index_complete.yaml b/dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_complete.yaml
similarity index 100%
rename from tests/contrib/llama_index/cassettes/llama_index_complete.yaml
rename to dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_complete.yaml
diff --git a/tests/contrib/llama_index/cassettes/llama_index_complete_stream.yaml b/dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_complete_stream.yaml
similarity index 100%
rename from tests/contrib/llama_index/cassettes/llama_index_complete_stream.yaml
rename to dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_complete_stream.yaml
diff --git a/tests/contrib/llama_index/cassettes/llama_index_completion.yaml b/dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_completion.yaml
similarity index 100%
rename from tests/contrib/llama_index/cassettes/llama_index_completion.yaml
rename to dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_completion.yaml
diff --git a/tests/contrib/llama_index/cassettes/llama_index_multi_turn.yaml b/dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_multi_turn.yaml
similarity index 100%
rename from tests/contrib/llama_index/cassettes/llama_index_multi_turn.yaml
rename to dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_multi_turn.yaml
diff --git a/tests/contrib/llama_index/cassettes/llama_index_openai_embedding.yaml b/dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_openai_embedding.yaml
similarity index 100%
rename from tests/contrib/llama_index/cassettes/llama_index_openai_embedding.yaml
rename to dd-trace-py/tests/contrib/llama_index/cassettes/llama_index_openai_embedding.yaml
diff --git a/tests/contrib/llama_index/conftest.py b/dd-trace-py/tests/contrib/llama_index/conftest.py
similarity index 100%
rename from tests/contrib/llama_index/conftest.py
rename to dd-trace-py/tests/contrib/llama_index/conftest.py
diff --git a/tests/contrib/llama_index/test_llama_index.py b/dd-trace-py/tests/contrib/llama_index/test_llama_index.py
similarity index 100%
rename from tests/contrib/llama_index/test_llama_index.py
rename to dd-trace-py/tests/contrib/llama_index/test_llama_index.py
diff --git a/tests/contrib/llama_index/test_llama_index_llmobs.py b/dd-trace-py/tests/contrib/llama_index/test_llama_index_llmobs.py
similarity index 100%
rename from tests/contrib/llama_index/test_llama_index_llmobs.py
rename to dd-trace-py/tests/contrib/llama_index/test_llama_index_llmobs.py
diff --git a/tests/contrib/llama_index/test_llama_index_patch.py b/dd-trace-py/tests/contrib/llama_index/test_llama_index_patch.py
similarity index 100%
rename from tests/contrib/llama_index/test_llama_index_patch.py
rename to dd-trace-py/tests/contrib/llama_index/test_llama_index_patch.py
diff --git a/tests/contrib/llama_index/utils.py b/dd-trace-py/tests/contrib/llama_index/utils.py
similarity index 100%
rename from tests/contrib/llama_index/utils.py
rename to dd-trace-py/tests/contrib/llama_index/utils.py
diff --git a/tests/contrib/logbook/__init__.py b/dd-trace-py/tests/contrib/logbook/__init__.py
similarity index 100%
rename from tests/contrib/logbook/__init__.py
rename to dd-trace-py/tests/contrib/logbook/__init__.py
diff --git a/tests/contrib/logbook/test_logbook_logging.py b/dd-trace-py/tests/contrib/logbook/test_logbook_logging.py
similarity index 100%
rename from tests/contrib/logbook/test_logbook_logging.py
rename to dd-trace-py/tests/contrib/logbook/test_logbook_logging.py
diff --git a/tests/contrib/logbook/test_logbook_patch.py b/dd-trace-py/tests/contrib/logbook/test_logbook_patch.py
similarity index 100%
rename from tests/contrib/logbook/test_logbook_patch.py
rename to dd-trace-py/tests/contrib/logbook/test_logbook_patch.py
diff --git a/tests/contrib/logging/__init__.py b/dd-trace-py/tests/contrib/logging/__init__.py
similarity index 100%
rename from tests/contrib/logging/__init__.py
rename to dd-trace-py/tests/contrib/logging/__init__.py
diff --git a/tests/contrib/logging/test_logging.py b/dd-trace-py/tests/contrib/logging/test_logging.py
similarity index 100%
rename from tests/contrib/logging/test_logging.py
rename to dd-trace-py/tests/contrib/logging/test_logging.py
diff --git a/tests/contrib/logging/test_logging_patch.py b/dd-trace-py/tests/contrib/logging/test_logging_patch.py
similarity index 100%
rename from tests/contrib/logging/test_logging_patch.py
rename to dd-trace-py/tests/contrib/logging/test_logging_patch.py
diff --git a/tests/contrib/logging/test_tracer_logging.py b/dd-trace-py/tests/contrib/logging/test_tracer_logging.py
similarity index 100%
rename from tests/contrib/logging/test_tracer_logging.py
rename to dd-trace-py/tests/contrib/logging/test_tracer_logging.py
diff --git a/tests/contrib/loguru/__init__.py b/dd-trace-py/tests/contrib/loguru/__init__.py
similarity index 100%
rename from tests/contrib/loguru/__init__.py
rename to dd-trace-py/tests/contrib/loguru/__init__.py
diff --git a/tests/contrib/loguru/test_loguru_logging.py b/dd-trace-py/tests/contrib/loguru/test_loguru_logging.py
similarity index 100%
rename from tests/contrib/loguru/test_loguru_logging.py
rename to dd-trace-py/tests/contrib/loguru/test_loguru_logging.py
diff --git a/tests/contrib/loguru/test_loguru_patch.py b/dd-trace-py/tests/contrib/loguru/test_loguru_patch.py
similarity index 100%
rename from tests/contrib/loguru/test_loguru_patch.py
rename to dd-trace-py/tests/contrib/loguru/test_loguru_patch.py
diff --git a/tests/contrib/mako/__init__.py b/dd-trace-py/tests/contrib/mako/__init__.py
similarity index 100%
rename from tests/contrib/mako/__init__.py
rename to dd-trace-py/tests/contrib/mako/__init__.py
diff --git a/tests/contrib/mako/templates/template.html b/dd-trace-py/tests/contrib/mako/templates/template.html
similarity index 100%
rename from tests/contrib/mako/templates/template.html
rename to dd-trace-py/tests/contrib/mako/templates/template.html
diff --git a/tests/contrib/mako/test_mako.py b/dd-trace-py/tests/contrib/mako/test_mako.py
similarity index 100%
rename from tests/contrib/mako/test_mako.py
rename to dd-trace-py/tests/contrib/mako/test_mako.py
diff --git a/tests/contrib/mako/test_mako_patch.py b/dd-trace-py/tests/contrib/mako/test_mako_patch.py
similarity index 100%
rename from tests/contrib/mako/test_mako_patch.py
rename to dd-trace-py/tests/contrib/mako/test_mako_patch.py
diff --git a/tests/contrib/mariadb/__init__.py b/dd-trace-py/tests/contrib/mariadb/__init__.py
similarity index 100%
rename from tests/contrib/mariadb/__init__.py
rename to dd-trace-py/tests/contrib/mariadb/__init__.py
diff --git a/tests/contrib/mariadb/test_mariadb.py b/dd-trace-py/tests/contrib/mariadb/test_mariadb.py
similarity index 100%
rename from tests/contrib/mariadb/test_mariadb.py
rename to dd-trace-py/tests/contrib/mariadb/test_mariadb.py
diff --git a/tests/contrib/mariadb/test_mariadb_patch.py b/dd-trace-py/tests/contrib/mariadb/test_mariadb_patch.py
similarity index 100%
rename from tests/contrib/mariadb/test_mariadb_patch.py
rename to dd-trace-py/tests/contrib/mariadb/test_mariadb_patch.py
diff --git a/tests/contrib/mcp/__init__.py b/dd-trace-py/tests/contrib/mcp/__init__.py
similarity index 100%
rename from tests/contrib/mcp/__init__.py
rename to dd-trace-py/tests/contrib/mcp/__init__.py
diff --git a/tests/contrib/mcp/conftest.py b/dd-trace-py/tests/contrib/mcp/conftest.py
similarity index 100%
rename from tests/contrib/mcp/conftest.py
rename to dd-trace-py/tests/contrib/mcp/conftest.py
diff --git a/tests/contrib/mcp/test_mcp.py b/dd-trace-py/tests/contrib/mcp/test_mcp.py
similarity index 100%
rename from tests/contrib/mcp/test_mcp.py
rename to dd-trace-py/tests/contrib/mcp/test_mcp.py
diff --git a/tests/contrib/mcp/test_mcp_llmobs.py b/dd-trace-py/tests/contrib/mcp/test_mcp_llmobs.py
similarity index 100%
rename from tests/contrib/mcp/test_mcp_llmobs.py
rename to dd-trace-py/tests/contrib/mcp/test_mcp_llmobs.py
diff --git a/tests/contrib/mcp/test_mcp_patch.py b/dd-trace-py/tests/contrib/mcp/test_mcp_patch.py
similarity index 100%
rename from tests/contrib/mcp/test_mcp_patch.py
rename to dd-trace-py/tests/contrib/mcp/test_mcp_patch.py
diff --git a/tests/contrib/mlflow/__init__.py b/dd-trace-py/tests/contrib/mlflow/__init__.py
similarity index 100%
rename from tests/contrib/mlflow/__init__.py
rename to dd-trace-py/tests/contrib/mlflow/__init__.py
diff --git a/tests/contrib/mlflow/conftest.py b/dd-trace-py/tests/contrib/mlflow/conftest.py
similarity index 100%
rename from tests/contrib/mlflow/conftest.py
rename to dd-trace-py/tests/contrib/mlflow/conftest.py
diff --git a/tests/contrib/mlflow/test_auth_plugin.py b/dd-trace-py/tests/contrib/mlflow/test_auth_plugin.py
similarity index 100%
rename from tests/contrib/mlflow/test_auth_plugin.py
rename to dd-trace-py/tests/contrib/mlflow/test_auth_plugin.py
diff --git a/tests/contrib/mlflow/test_mlflow.py b/dd-trace-py/tests/contrib/mlflow/test_mlflow.py
similarity index 100%
rename from tests/contrib/mlflow/test_mlflow.py
rename to dd-trace-py/tests/contrib/mlflow/test_mlflow.py
diff --git a/tests/contrib/mlflow/test_mlflow_patch.py b/dd-trace-py/tests/contrib/mlflow/test_mlflow_patch.py
similarity index 100%
rename from tests/contrib/mlflow/test_mlflow_patch.py
rename to dd-trace-py/tests/contrib/mlflow/test_mlflow_patch.py
diff --git a/tests/contrib/mlflow/test_mlflow_thread.py b/dd-trace-py/tests/contrib/mlflow/test_mlflow_thread.py
similarity index 100%
rename from tests/contrib/mlflow/test_mlflow_thread.py
rename to dd-trace-py/tests/contrib/mlflow/test_mlflow_thread.py
diff --git a/tests/contrib/molten/__init__.py b/dd-trace-py/tests/contrib/molten/__init__.py
similarity index 100%
rename from tests/contrib/molten/__init__.py
rename to dd-trace-py/tests/contrib/molten/__init__.py
diff --git a/tests/contrib/molten/test_molten.py b/dd-trace-py/tests/contrib/molten/test_molten.py
similarity index 100%
rename from tests/contrib/molten/test_molten.py
rename to dd-trace-py/tests/contrib/molten/test_molten.py
diff --git a/tests/contrib/molten/test_molten_di.py b/dd-trace-py/tests/contrib/molten/test_molten_di.py
similarity index 100%
rename from tests/contrib/molten/test_molten_di.py
rename to dd-trace-py/tests/contrib/molten/test_molten_di.py
diff --git a/tests/contrib/molten/test_molten_patch.py b/dd-trace-py/tests/contrib/molten/test_molten_patch.py
similarity index 100%
rename from tests/contrib/molten/test_molten_patch.py
rename to dd-trace-py/tests/contrib/molten/test_molten_patch.py
diff --git a/tests/contrib/mysql/__init__.py b/dd-trace-py/tests/contrib/mysql/__init__.py
similarity index 100%
rename from tests/contrib/mysql/__init__.py
rename to dd-trace-py/tests/contrib/mysql/__init__.py
diff --git a/tests/contrib/mysql/test_mysql.py b/dd-trace-py/tests/contrib/mysql/test_mysql.py
similarity index 100%
rename from tests/contrib/mysql/test_mysql.py
rename to dd-trace-py/tests/contrib/mysql/test_mysql.py
diff --git a/tests/contrib/mysql/test_mysql_patch.py b/dd-trace-py/tests/contrib/mysql/test_mysql_patch.py
similarity index 100%
rename from tests/contrib/mysql/test_mysql_patch.py
rename to dd-trace-py/tests/contrib/mysql/test_mysql_patch.py
diff --git a/tests/contrib/mysqldb/__init__.py b/dd-trace-py/tests/contrib/mysqldb/__init__.py
similarity index 100%
rename from tests/contrib/mysqldb/__init__.py
rename to dd-trace-py/tests/contrib/mysqldb/__init__.py
diff --git a/tests/contrib/mysqldb/test_mysqldb.py b/dd-trace-py/tests/contrib/mysqldb/test_mysqldb.py
similarity index 100%
rename from tests/contrib/mysqldb/test_mysqldb.py
rename to dd-trace-py/tests/contrib/mysqldb/test_mysqldb.py
diff --git a/tests/contrib/mysqldb/test_mysqldb_patch.py b/dd-trace-py/tests/contrib/mysqldb/test_mysqldb_patch.py
similarity index 100%
rename from tests/contrib/mysqldb/test_mysqldb_patch.py
rename to dd-trace-py/tests/contrib/mysqldb/test_mysqldb_patch.py
diff --git a/tests/contrib/openai/__init__.py b/dd-trace-py/tests/contrib/openai/__init__.py
similarity index 100%
rename from tests/contrib/openai/__init__.py
rename to dd-trace-py/tests/contrib/openai/__init__.py
diff --git a/tests/contrib/openai/cassettes/v1/azure_chat_completion.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/azure_chat_completion.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/azure_chat_completion.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/azure_chat_completion.yaml
diff --git a/tests/contrib/openai/cassettes/v1/azure_chat_completion_streamed.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/azure_chat_completion_streamed.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/azure_chat_completion_streamed.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/azure_chat_completion_streamed.yaml
diff --git a/tests/contrib/openai/cassettes/v1/azure_completion.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/azure_completion.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/azure_completion.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/azure_completion.yaml
diff --git a/tests/contrib/openai/cassettes/v1/azure_embedding.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/azure_embedding.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/azure_embedding.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/azure_embedding.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_async.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_async.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_async.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_async.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_custom_tool_call.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_custom_tool_call.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_custom_tool_call.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_custom_tool_call.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_error.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_error.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_error.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_error.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_function_call.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_function_call.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_function_call.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_function_call.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_image_input.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_image_input.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_image_input.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_image_input.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_parse.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_parse.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_parse.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_parse.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_prompt_caching_cache_read.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_prompt_caching_cache_read.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_prompt_caching_cache_read.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_prompt_caching_cache_read.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_prompt_caching_cache_write.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_prompt_caching_cache_write.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_prompt_caching_cache_write.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_prompt_caching_cache_write.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_stream_prompt_caching_cache_read.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_stream_prompt_caching_cache_read.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_stream_prompt_caching_cache_read.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_stream_prompt_caching_cache_read.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_stream_prompt_caching_cache_write.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_stream_prompt_caching_cache_write.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_stream_prompt_caching_cache_write.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_stream_prompt_caching_cache_write.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_streamed.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_streamed.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_streamed.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_streamed.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_streamed_tokens.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_streamed_tokens.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_streamed_tokens.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_streamed_tokens.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_tool_call.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_tool_call.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_tool_call.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_tool_call.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_tool_call_follow_up.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_tool_call_follow_up.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_tool_call_follow_up.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_tool_call_follow_up.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_tool_call_streamed.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_tool_call_streamed.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_tool_call_streamed.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_tool_call_streamed.yaml
diff --git a/tests/contrib/openai/cassettes/v1/chat_completion_truncation.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_truncation.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/chat_completion_truncation.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/chat_completion_truncation.yaml
diff --git a/tests/contrib/openai/cassettes/v1/completion.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/completion.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/completion.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/completion.yaml
diff --git a/tests/contrib/openai/cassettes/v1/completion_async.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/completion_async.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/completion_async.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/completion_async.yaml
diff --git a/tests/contrib/openai/cassettes/v1/completion_error.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/completion_error.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/completion_error.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/completion_error.yaml
diff --git a/tests/contrib/openai/cassettes/v1/completion_stream_wrong_api_key.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/completion_stream_wrong_api_key.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/completion_stream_wrong_api_key.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/completion_stream_wrong_api_key.yaml
diff --git a/tests/contrib/openai/cassettes/v1/completion_streamed.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/completion_streamed.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/completion_streamed.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/completion_streamed.yaml
diff --git a/tests/contrib/openai/cassettes/v1/completion_truncation.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/completion_truncation.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/completion_truncation.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/completion_truncation.yaml
diff --git a/tests/contrib/openai/cassettes/v1/deepseek_completion.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/deepseek_completion.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/deepseek_completion.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/deepseek_completion.yaml
diff --git a/tests/contrib/openai/cassettes/v1/embedding.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/embedding.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/embedding.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/embedding.yaml
diff --git a/tests/contrib/openai/cassettes/v1/embedding_array_of_token_arrays.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/embedding_array_of_token_arrays.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/embedding_array_of_token_arrays.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/embedding_array_of_token_arrays.yaml
diff --git a/tests/contrib/openai/cassettes/v1/embedding_b64.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/embedding_b64.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/embedding_b64.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/embedding_b64.yaml
diff --git a/tests/contrib/openai/cassettes/v1/embedding_string_array.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/embedding_string_array.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/embedding_string_array.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/embedding_string_array.yaml
diff --git a/tests/contrib/openai/cassettes/v1/embedding_token_array.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/embedding_token_array.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/embedding_token_array.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/embedding_token_array.yaml
diff --git a/tests/contrib/openai/cassettes/v1/file_create.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/file_create.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/file_create.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/file_create.yaml
diff --git a/tests/contrib/openai/cassettes/v1/file_delete.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/file_delete.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/file_delete.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/file_delete.yaml
diff --git a/tests/contrib/openai/cassettes/v1/file_download.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/file_download.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/file_download.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/file_download.yaml
diff --git a/tests/contrib/openai/cassettes/v1/file_list.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/file_list.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/file_list.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/file_list.yaml
diff --git a/tests/contrib/openai/cassettes/v1/file_retrieve.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/file_retrieve.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/file_retrieve.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/file_retrieve.yaml
diff --git a/tests/contrib/openai/cassettes/v1/image_create.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/image_create.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/image_create.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/image_create.yaml
diff --git a/tests/contrib/openai/cassettes/v1/image_create_b64_json.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/image_create_b64_json.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/image_create_b64_json.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/image_create_b64_json.yaml
diff --git a/tests/contrib/openai/cassettes/v1/model_alist.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/model_alist.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/model_alist.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/model_alist.yaml
diff --git a/tests/contrib/openai/cassettes/v1/model_delete.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/model_delete.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/model_delete.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/model_delete.yaml
diff --git a/tests/contrib/openai/cassettes/v1/model_list.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/model_list.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/model_list.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/model_list.yaml
diff --git a/tests/contrib/openai/cassettes/v1/model_retrieve.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/model_retrieve.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/model_retrieve.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/model_retrieve.yaml
diff --git a/tests/contrib/openai/cassettes/v1/moderation.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/moderation.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/moderation.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/moderation.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_create_error.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_create_error.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_create_error.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_create_error.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_custom_tool_call.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_custom_tool_call.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_custom_tool_call.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_custom_tool_call.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_error.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_error.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_error.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_error.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_function_call.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_function_call.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_function_call.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_function_call.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_function_call_streamed.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_function_call_streamed.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_function_call_streamed.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_function_call_streamed.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_parse.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_parse.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_parse.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_parse.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_reasoning_tokens.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_reasoning_tokens.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_reasoning_tokens.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_reasoning_tokens.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_stream.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_stream.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_stream.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_stream.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_stream_incomplete.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_stream_incomplete.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_stream_incomplete.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_stream_incomplete.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_tools.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_tools.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_tools.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_tools.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_tools_stream.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_tools_stream.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_tools_stream.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_tools_stream.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_with_file_inputs.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_with_file_inputs.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_with_file_inputs.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_with_file_inputs.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_with_mixed_prompt_url_preserved.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_with_mixed_prompt_url_preserved.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_with_mixed_prompt_url_preserved.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_with_mixed_prompt_url_preserved.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_with_mixed_prompt_url_stripped.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_with_mixed_prompt_url_stripped.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_with_mixed_prompt_url_stripped.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_with_mixed_prompt_url_stripped.yaml
diff --git a/tests/contrib/openai/cassettes/v1/response_with_prompt.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/response_with_prompt.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/response_with_prompt.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/response_with_prompt.yaml
diff --git a/tests/contrib/openai/cassettes/v1/responses_prompt_caching_cache_read.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/responses_prompt_caching_cache_read.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/responses_prompt_caching_cache_read.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/responses_prompt_caching_cache_read.yaml
diff --git a/tests/contrib/openai/cassettes/v1/responses_prompt_caching_cache_write.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/responses_prompt_caching_cache_write.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/responses_prompt_caching_cache_write.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/responses_prompt_caching_cache_write.yaml
diff --git a/tests/contrib/openai/cassettes/v1/responses_stream_prompt_caching_cache_read.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/responses_stream_prompt_caching_cache_read.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/responses_stream_prompt_caching_cache_read.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/responses_stream_prompt_caching_cache_read.yaml
diff --git a/tests/contrib/openai/cassettes/v1/responses_stream_prompt_caching_cache_write.yaml b/dd-trace-py/tests/contrib/openai/cassettes/v1/responses_stream_prompt_caching_cache_write.yaml
similarity index 100%
rename from tests/contrib/openai/cassettes/v1/responses_stream_prompt_caching_cache_write.yaml
rename to dd-trace-py/tests/contrib/openai/cassettes/v1/responses_stream_prompt_caching_cache_write.yaml
diff --git a/tests/contrib/openai/conftest.py b/dd-trace-py/tests/contrib/openai/conftest.py
similarity index 100%
rename from tests/contrib/openai/conftest.py
rename to dd-trace-py/tests/contrib/openai/conftest.py
diff --git a/tests/contrib/openai/test_data/english_audio.mp3 b/dd-trace-py/tests/contrib/openai/test_data/english_audio.mp3
similarity index 100%
rename from tests/contrib/openai/test_data/english_audio.mp3
rename to dd-trace-py/tests/contrib/openai/test_data/english_audio.mp3
diff --git a/tests/contrib/openai/test_data/french_audio.mp3 b/dd-trace-py/tests/contrib/openai/test_data/french_audio.mp3
similarity index 100%
rename from tests/contrib/openai/test_data/french_audio.mp3
rename to dd-trace-py/tests/contrib/openai/test_data/french_audio.mp3
diff --git a/tests/contrib/openai/test_data/image.png b/dd-trace-py/tests/contrib/openai/test_data/image.png
similarity index 100%
rename from tests/contrib/openai/test_data/image.png
rename to dd-trace-py/tests/contrib/openai/test_data/image.png
diff --git a/tests/contrib/openai/test_data/mask.png b/dd-trace-py/tests/contrib/openai/test_data/mask.png
similarity index 100%
rename from tests/contrib/openai/test_data/mask.png
rename to dd-trace-py/tests/contrib/openai/test_data/mask.png
diff --git a/tests/contrib/openai/test_data/training_data.jsonl b/dd-trace-py/tests/contrib/openai/test_data/training_data.jsonl
similarity index 100%
rename from tests/contrib/openai/test_data/training_data.jsonl
rename to dd-trace-py/tests/contrib/openai/test_data/training_data.jsonl
diff --git a/tests/contrib/openai/test_openai_llmobs.py b/dd-trace-py/tests/contrib/openai/test_openai_llmobs.py
similarity index 100%
rename from tests/contrib/openai/test_openai_llmobs.py
rename to dd-trace-py/tests/contrib/openai/test_openai_llmobs.py
diff --git a/tests/contrib/openai/test_openai_patch.py b/dd-trace-py/tests/contrib/openai/test_openai_patch.py
similarity index 100%
rename from tests/contrib/openai/test_openai_patch.py
rename to dd-trace-py/tests/contrib/openai/test_openai_patch.py
diff --git a/tests/contrib/openai/test_openai_v1.py b/dd-trace-py/tests/contrib/openai/test_openai_v1.py
similarity index 100%
rename from tests/contrib/openai/test_openai_v1.py
rename to dd-trace-py/tests/contrib/openai/test_openai_v1.py
diff --git a/tests/contrib/openai/utils.py b/dd-trace-py/tests/contrib/openai/utils.py
similarity index 100%
rename from tests/contrib/openai/utils.py
rename to dd-trace-py/tests/contrib/openai/utils.py
diff --git a/tests/contrib/openai_agents/__init__.py b/dd-trace-py/tests/contrib/openai_agents/__init__.py
similarity index 100%
rename from tests/contrib/openai_agents/__init__.py
rename to dd-trace-py/tests/contrib/openai_agents/__init__.py
diff --git a/tests/contrib/openai_agents/cassettes/test_agent_with_tool_errors.yaml b/dd-trace-py/tests/contrib/openai_agents/cassettes/test_agent_with_tool_errors.yaml
similarity index 100%
rename from tests/contrib/openai_agents/cassettes/test_agent_with_tool_errors.yaml
rename to dd-trace-py/tests/contrib/openai_agents/cassettes/test_agent_with_tool_errors.yaml
diff --git a/tests/contrib/openai_agents/cassettes/test_multiple_agent_handoffs.yaml b/dd-trace-py/tests/contrib/openai_agents/cassettes/test_multiple_agent_handoffs.yaml
similarity index 100%
rename from tests/contrib/openai_agents/cassettes/test_multiple_agent_handoffs.yaml
rename to dd-trace-py/tests/contrib/openai_agents/cassettes/test_multiple_agent_handoffs.yaml
diff --git a/tests/contrib/openai_agents/cassettes/test_multiple_agent_handoffs_with_chat_completions.yaml b/dd-trace-py/tests/contrib/openai_agents/cassettes/test_multiple_agent_handoffs_with_chat_completions.yaml
similarity index 100%
rename from tests/contrib/openai_agents/cassettes/test_multiple_agent_handoffs_with_chat_completions.yaml
rename to dd-trace-py/tests/contrib/openai_agents/cassettes/test_multiple_agent_handoffs_with_chat_completions.yaml
diff --git a/tests/contrib/openai_agents/cassettes/test_oai_agents_with_guardrail_spans.yaml b/dd-trace-py/tests/contrib/openai_agents/cassettes/test_oai_agents_with_guardrail_spans.yaml
similarity index 100%
rename from tests/contrib/openai_agents/cassettes/test_oai_agents_with_guardrail_spans.yaml
rename to dd-trace-py/tests/contrib/openai_agents/cassettes/test_oai_agents_with_guardrail_spans.yaml
diff --git a/tests/contrib/openai_agents/cassettes/test_simple_agent.yaml b/dd-trace-py/tests/contrib/openai_agents/cassettes/test_simple_agent.yaml
similarity index 100%
rename from tests/contrib/openai_agents/cassettes/test_simple_agent.yaml
rename to dd-trace-py/tests/contrib/openai_agents/cassettes/test_simple_agent.yaml
diff --git a/tests/contrib/openai_agents/cassettes/test_simple_agent_streamed.yaml b/dd-trace-py/tests/contrib/openai_agents/cassettes/test_simple_agent_streamed.yaml
similarity index 100%
rename from tests/contrib/openai_agents/cassettes/test_simple_agent_streamed.yaml
rename to dd-trace-py/tests/contrib/openai_agents/cassettes/test_simple_agent_streamed.yaml
diff --git a/tests/contrib/openai_agents/cassettes/test_single_agent_with_ootb_tools.yaml b/dd-trace-py/tests/contrib/openai_agents/cassettes/test_single_agent_with_ootb_tools.yaml
similarity index 100%
rename from tests/contrib/openai_agents/cassettes/test_single_agent_with_ootb_tools.yaml
rename to dd-trace-py/tests/contrib/openai_agents/cassettes/test_single_agent_with_ootb_tools.yaml
diff --git a/tests/contrib/openai_agents/cassettes/test_single_agent_with_tool_calls.yaml b/dd-trace-py/tests/contrib/openai_agents/cassettes/test_single_agent_with_tool_calls.yaml
similarity index 100%
rename from tests/contrib/openai_agents/cassettes/test_single_agent_with_tool_calls.yaml
rename to dd-trace-py/tests/contrib/openai_agents/cassettes/test_single_agent_with_tool_calls.yaml
diff --git a/tests/contrib/openai_agents/conftest.py b/dd-trace-py/tests/contrib/openai_agents/conftest.py
similarity index 100%
rename from tests/contrib/openai_agents/conftest.py
rename to dd-trace-py/tests/contrib/openai_agents/conftest.py
diff --git a/tests/contrib/openai_agents/test_openai_agents.py b/dd-trace-py/tests/contrib/openai_agents/test_openai_agents.py
similarity index 100%
rename from tests/contrib/openai_agents/test_openai_agents.py
rename to dd-trace-py/tests/contrib/openai_agents/test_openai_agents.py
diff --git a/tests/contrib/openai_agents/test_openai_agents_llmobs.py b/dd-trace-py/tests/contrib/openai_agents/test_openai_agents_llmobs.py
similarity index 100%
rename from tests/contrib/openai_agents/test_openai_agents_llmobs.py
rename to dd-trace-py/tests/contrib/openai_agents/test_openai_agents_llmobs.py
diff --git a/tests/contrib/openai_agents/test_openai_agents_patch.py b/dd-trace-py/tests/contrib/openai_agents/test_openai_agents_patch.py
similarity index 100%
rename from tests/contrib/openai_agents/test_openai_agents_patch.py
rename to dd-trace-py/tests/contrib/openai_agents/test_openai_agents_patch.py
diff --git a/tests/contrib/patch.py b/dd-trace-py/tests/contrib/patch.py
similarity index 100%
rename from tests/contrib/patch.py
rename to dd-trace-py/tests/contrib/patch.py
diff --git a/tests/contrib/protobuf/__init__.py b/dd-trace-py/tests/contrib/protobuf/__init__.py
similarity index 100%
rename from tests/contrib/protobuf/__init__.py
rename to dd-trace-py/tests/contrib/protobuf/__init__.py
diff --git a/tests/contrib/protobuf/conftest.py b/dd-trace-py/tests/contrib/protobuf/conftest.py
similarity index 100%
rename from tests/contrib/protobuf/conftest.py
rename to dd-trace-py/tests/contrib/protobuf/conftest.py
diff --git a/tests/contrib/protobuf/schemas/__init__.py b/dd-trace-py/tests/contrib/protobuf/schemas/__init__.py
similarity index 100%
rename from tests/contrib/protobuf/schemas/__init__.py
rename to dd-trace-py/tests/contrib/protobuf/schemas/__init__.py
diff --git a/tests/contrib/protobuf/schemas/message.proto b/dd-trace-py/tests/contrib/protobuf/schemas/message.proto
similarity index 100%
rename from tests/contrib/protobuf/schemas/message.proto
rename to dd-trace-py/tests/contrib/protobuf/schemas/message.proto
diff --git a/tests/contrib/protobuf/schemas/message_pb2.py b/dd-trace-py/tests/contrib/protobuf/schemas/message_pb2.py
similarity index 100%
rename from tests/contrib/protobuf/schemas/message_pb2.py
rename to dd-trace-py/tests/contrib/protobuf/schemas/message_pb2.py
diff --git a/tests/contrib/protobuf/schemas/other_message.proto b/dd-trace-py/tests/contrib/protobuf/schemas/other_message.proto
similarity index 100%
rename from tests/contrib/protobuf/schemas/other_message.proto
rename to dd-trace-py/tests/contrib/protobuf/schemas/other_message.proto
diff --git a/tests/contrib/protobuf/schemas/other_message_pb2.py b/dd-trace-py/tests/contrib/protobuf/schemas/other_message_pb2.py
similarity index 100%
rename from tests/contrib/protobuf/schemas/other_message_pb2.py
rename to dd-trace-py/tests/contrib/protobuf/schemas/other_message_pb2.py
diff --git a/tests/contrib/protobuf/test_protobuf.py b/dd-trace-py/tests/contrib/protobuf/test_protobuf.py
similarity index 100%
rename from tests/contrib/protobuf/test_protobuf.py
rename to dd-trace-py/tests/contrib/protobuf/test_protobuf.py
diff --git a/tests/contrib/psycopg/__init__.py b/dd-trace-py/tests/contrib/psycopg/__init__.py
similarity index 100%
rename from tests/contrib/psycopg/__init__.py
rename to dd-trace-py/tests/contrib/psycopg/__init__.py
diff --git a/tests/contrib/psycopg/test_psycopg.py b/dd-trace-py/tests/contrib/psycopg/test_psycopg.py
similarity index 100%
rename from tests/contrib/psycopg/test_psycopg.py
rename to dd-trace-py/tests/contrib/psycopg/test_psycopg.py
diff --git a/tests/contrib/psycopg/test_psycopg_async.py b/dd-trace-py/tests/contrib/psycopg/test_psycopg_async.py
similarity index 100%
rename from tests/contrib/psycopg/test_psycopg_async.py
rename to dd-trace-py/tests/contrib/psycopg/test_psycopg_async.py
diff --git a/tests/contrib/psycopg/test_psycopg_patch.py b/dd-trace-py/tests/contrib/psycopg/test_psycopg_patch.py
similarity index 100%
rename from tests/contrib/psycopg/test_psycopg_patch.py
rename to dd-trace-py/tests/contrib/psycopg/test_psycopg_patch.py
diff --git a/tests/contrib/psycopg/test_psycopg_snapshot.py b/dd-trace-py/tests/contrib/psycopg/test_psycopg_snapshot.py
similarity index 100%
rename from tests/contrib/psycopg/test_psycopg_snapshot.py
rename to dd-trace-py/tests/contrib/psycopg/test_psycopg_snapshot.py
diff --git a/tests/contrib/psycopg2/__init__.py b/dd-trace-py/tests/contrib/psycopg2/__init__.py
similarity index 100%
rename from tests/contrib/psycopg2/__init__.py
rename to dd-trace-py/tests/contrib/psycopg2/__init__.py
diff --git a/tests/contrib/psycopg2/fixtures/__init__.py b/dd-trace-py/tests/contrib/psycopg2/fixtures/__init__.py
similarity index 100%
rename from tests/contrib/psycopg2/fixtures/__init__.py
rename to dd-trace-py/tests/contrib/psycopg2/fixtures/__init__.py
diff --git a/tests/contrib/psycopg2/fixtures/reproduce_psycopg_cyclic_import_error.py b/dd-trace-py/tests/contrib/psycopg2/fixtures/reproduce_psycopg_cyclic_import_error.py
similarity index 100%
rename from tests/contrib/psycopg2/fixtures/reproduce_psycopg_cyclic_import_error.py
rename to dd-trace-py/tests/contrib/psycopg2/fixtures/reproduce_psycopg_cyclic_import_error.py
diff --git a/tests/contrib/psycopg2/test_psycopg.py b/dd-trace-py/tests/contrib/psycopg2/test_psycopg.py
similarity index 100%
rename from tests/contrib/psycopg2/test_psycopg.py
rename to dd-trace-py/tests/contrib/psycopg2/test_psycopg.py
diff --git a/tests/contrib/psycopg2/test_psycopg_patch.py b/dd-trace-py/tests/contrib/psycopg2/test_psycopg_patch.py
similarity index 100%
rename from tests/contrib/psycopg2/test_psycopg_patch.py
rename to dd-trace-py/tests/contrib/psycopg2/test_psycopg_patch.py
diff --git a/tests/contrib/psycopg2/test_psycopg_snapshot.py b/dd-trace-py/tests/contrib/psycopg2/test_psycopg_snapshot.py
similarity index 100%
rename from tests/contrib/psycopg2/test_psycopg_snapshot.py
rename to dd-trace-py/tests/contrib/psycopg2/test_psycopg_snapshot.py
diff --git a/tests/contrib/pydantic_ai/__init__.py b/dd-trace-py/tests/contrib/pydantic_ai/__init__.py
similarity index 100%
rename from tests/contrib/pydantic_ai/__init__.py
rename to dd-trace-py/tests/contrib/pydantic_ai/__init__.py
diff --git a/tests/contrib/pydantic_ai/cassettes/agent_iter.yaml b/dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_iter.yaml
similarity index 100%
rename from tests/contrib/pydantic_ai/cassettes/agent_iter.yaml
rename to dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_iter.yaml
diff --git a/tests/contrib/pydantic_ai/cassettes/agent_run_stream.yaml b/dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_run_stream.yaml
similarity index 100%
rename from tests/contrib/pydantic_ai/cassettes/agent_run_stream.yaml
rename to dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_run_stream.yaml
diff --git a/tests/contrib/pydantic_ai/cassettes/agent_run_stream_structured_with_tool.yaml b/dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_run_stream_structured_with_tool.yaml
similarity index 100%
rename from tests/contrib/pydantic_ai/cassettes/agent_run_stream_structured_with_tool.yaml
rename to dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_run_stream_structured_with_tool.yaml
diff --git a/tests/contrib/pydantic_ai/cassettes/agent_run_stream_with_tools.yaml b/dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_run_stream_with_tools.yaml
similarity index 100%
rename from tests/contrib/pydantic_ai/cassettes/agent_run_stream_with_tools.yaml
rename to dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_run_stream_with_tools.yaml
diff --git a/tests/contrib/pydantic_ai/cassettes/agent_run_stream_with_toolset.yaml b/dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_run_stream_with_toolset.yaml
similarity index 100%
rename from tests/contrib/pydantic_ai/cassettes/agent_run_stream_with_toolset.yaml
rename to dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_run_stream_with_toolset.yaml
diff --git a/tests/contrib/pydantic_ai/cassettes/agent_with_tools.yaml b/dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_with_tools.yaml
similarity index 100%
rename from tests/contrib/pydantic_ai/cassettes/agent_with_tools.yaml
rename to dd-trace-py/tests/contrib/pydantic_ai/cassettes/agent_with_tools.yaml
diff --git a/tests/contrib/pydantic_ai/conftest.py b/dd-trace-py/tests/contrib/pydantic_ai/conftest.py
similarity index 100%
rename from tests/contrib/pydantic_ai/conftest.py
rename to dd-trace-py/tests/contrib/pydantic_ai/conftest.py
diff --git a/tests/contrib/pydantic_ai/test_pydantic_ai.py b/dd-trace-py/tests/contrib/pydantic_ai/test_pydantic_ai.py
similarity index 100%
rename from tests/contrib/pydantic_ai/test_pydantic_ai.py
rename to dd-trace-py/tests/contrib/pydantic_ai/test_pydantic_ai.py
diff --git a/tests/contrib/pydantic_ai/test_pydantic_ai_llmobs.py b/dd-trace-py/tests/contrib/pydantic_ai/test_pydantic_ai_llmobs.py
similarity index 100%
rename from tests/contrib/pydantic_ai/test_pydantic_ai_llmobs.py
rename to dd-trace-py/tests/contrib/pydantic_ai/test_pydantic_ai_llmobs.py
diff --git a/tests/contrib/pydantic_ai/test_pydantic_ai_patch.py b/dd-trace-py/tests/contrib/pydantic_ai/test_pydantic_ai_patch.py
similarity index 100%
rename from tests/contrib/pydantic_ai/test_pydantic_ai_patch.py
rename to dd-trace-py/tests/contrib/pydantic_ai/test_pydantic_ai_patch.py
diff --git a/tests/contrib/pydantic_ai/utils.py b/dd-trace-py/tests/contrib/pydantic_ai/utils.py
similarity index 100%
rename from tests/contrib/pydantic_ai/utils.py
rename to dd-trace-py/tests/contrib/pydantic_ai/utils.py
diff --git a/tests/contrib/pylibmc/__init__.py b/dd-trace-py/tests/contrib/pylibmc/__init__.py
similarity index 100%
rename from tests/contrib/pylibmc/__init__.py
rename to dd-trace-py/tests/contrib/pylibmc/__init__.py
diff --git a/tests/contrib/pylibmc/test.py b/dd-trace-py/tests/contrib/pylibmc/test.py
similarity index 100%
rename from tests/contrib/pylibmc/test.py
rename to dd-trace-py/tests/contrib/pylibmc/test.py
diff --git a/tests/contrib/pylibmc/test_pylibmc_patch.py b/dd-trace-py/tests/contrib/pylibmc/test_pylibmc_patch.py
similarity index 100%
rename from tests/contrib/pylibmc/test_pylibmc_patch.py
rename to dd-trace-py/tests/contrib/pylibmc/test_pylibmc_patch.py
diff --git a/tests/contrib/pymemcache/__init__.py b/dd-trace-py/tests/contrib/pymemcache/__init__.py
similarity index 100%
rename from tests/contrib/pymemcache/__init__.py
rename to dd-trace-py/tests/contrib/pymemcache/__init__.py
diff --git a/tests/contrib/pymemcache/autopatch/__init__.py b/dd-trace-py/tests/contrib/pymemcache/autopatch/__init__.py
similarity index 100%
rename from tests/contrib/pymemcache/autopatch/__init__.py
rename to dd-trace-py/tests/contrib/pymemcache/autopatch/__init__.py
diff --git a/tests/contrib/pymemcache/autopatch/test.py b/dd-trace-py/tests/contrib/pymemcache/autopatch/test.py
similarity index 100%
rename from tests/contrib/pymemcache/autopatch/test.py
rename to dd-trace-py/tests/contrib/pymemcache/autopatch/test.py
diff --git a/tests/contrib/pymemcache/test_client.py b/dd-trace-py/tests/contrib/pymemcache/test_client.py
similarity index 100%
rename from tests/contrib/pymemcache/test_client.py
rename to dd-trace-py/tests/contrib/pymemcache/test_client.py
diff --git a/tests/contrib/pymemcache/test_client_defaults.py b/dd-trace-py/tests/contrib/pymemcache/test_client_defaults.py
similarity index 100%
rename from tests/contrib/pymemcache/test_client_defaults.py
rename to dd-trace-py/tests/contrib/pymemcache/test_client_defaults.py
diff --git a/tests/contrib/pymemcache/test_client_mixin.py b/dd-trace-py/tests/contrib/pymemcache/test_client_mixin.py
similarity index 100%
rename from tests/contrib/pymemcache/test_client_mixin.py
rename to dd-trace-py/tests/contrib/pymemcache/test_client_mixin.py
diff --git a/tests/contrib/pymemcache/test_pymemcache_patch.py b/dd-trace-py/tests/contrib/pymemcache/test_pymemcache_patch.py
similarity index 100%
rename from tests/contrib/pymemcache/test_pymemcache_patch.py
rename to dd-trace-py/tests/contrib/pymemcache/test_pymemcache_patch.py
diff --git a/tests/contrib/pymemcache/utils.py b/dd-trace-py/tests/contrib/pymemcache/utils.py
similarity index 100%
rename from tests/contrib/pymemcache/utils.py
rename to dd-trace-py/tests/contrib/pymemcache/utils.py
diff --git a/tests/contrib/pymongo/__init__.py b/dd-trace-py/tests/contrib/pymongo/__init__.py
similarity index 100%
rename from tests/contrib/pymongo/__init__.py
rename to dd-trace-py/tests/contrib/pymongo/__init__.py
diff --git a/tests/contrib/pymongo/test.py b/dd-trace-py/tests/contrib/pymongo/test.py
similarity index 100%
rename from tests/contrib/pymongo/test.py
rename to dd-trace-py/tests/contrib/pymongo/test.py
diff --git a/tests/contrib/pymongo/test_async.py b/dd-trace-py/tests/contrib/pymongo/test_async.py
similarity index 100%
rename from tests/contrib/pymongo/test_async.py
rename to dd-trace-py/tests/contrib/pymongo/test_async.py
diff --git a/tests/contrib/pymongo/test_pymongo_patch.py b/dd-trace-py/tests/contrib/pymongo/test_pymongo_patch.py
similarity index 100%
rename from tests/contrib/pymongo/test_pymongo_patch.py
rename to dd-trace-py/tests/contrib/pymongo/test_pymongo_patch.py
diff --git a/tests/contrib/pymongo/test_spec.py b/dd-trace-py/tests/contrib/pymongo/test_spec.py
similarity index 100%
rename from tests/contrib/pymongo/test_spec.py
rename to dd-trace-py/tests/contrib/pymongo/test_spec.py
diff --git a/tests/contrib/pymysql/__init__.py b/dd-trace-py/tests/contrib/pymysql/__init__.py
similarity index 100%
rename from tests/contrib/pymysql/__init__.py
rename to dd-trace-py/tests/contrib/pymysql/__init__.py
diff --git a/tests/contrib/pymysql/test_pymysql.py b/dd-trace-py/tests/contrib/pymysql/test_pymysql.py
similarity index 100%
rename from tests/contrib/pymysql/test_pymysql.py
rename to dd-trace-py/tests/contrib/pymysql/test_pymysql.py
diff --git a/tests/contrib/pymysql/test_pymysql_patch.py b/dd-trace-py/tests/contrib/pymysql/test_pymysql_patch.py
similarity index 100%
rename from tests/contrib/pymysql/test_pymysql_patch.py
rename to dd-trace-py/tests/contrib/pymysql/test_pymysql_patch.py
diff --git a/tests/contrib/pynamodb/__init__.py b/dd-trace-py/tests/contrib/pynamodb/__init__.py
similarity index 100%
rename from tests/contrib/pynamodb/__init__.py
rename to dd-trace-py/tests/contrib/pynamodb/__init__.py
diff --git a/tests/contrib/pynamodb/test_pynamodb.py b/dd-trace-py/tests/contrib/pynamodb/test_pynamodb.py
similarity index 100%
rename from tests/contrib/pynamodb/test_pynamodb.py
rename to dd-trace-py/tests/contrib/pynamodb/test_pynamodb.py
diff --git a/tests/contrib/pynamodb/test_pynamodb_patch.py b/dd-trace-py/tests/contrib/pynamodb/test_pynamodb_patch.py
similarity index 100%
rename from tests/contrib/pynamodb/test_pynamodb_patch.py
rename to dd-trace-py/tests/contrib/pynamodb/test_pynamodb_patch.py
diff --git a/tests/contrib/pyodbc/__init__.py b/dd-trace-py/tests/contrib/pyodbc/__init__.py
similarity index 100%
rename from tests/contrib/pyodbc/__init__.py
rename to dd-trace-py/tests/contrib/pyodbc/__init__.py
diff --git a/tests/contrib/pyodbc/test_pyodbc.py b/dd-trace-py/tests/contrib/pyodbc/test_pyodbc.py
similarity index 100%
rename from tests/contrib/pyodbc/test_pyodbc.py
rename to dd-trace-py/tests/contrib/pyodbc/test_pyodbc.py
diff --git a/tests/contrib/pyodbc/test_pyodbc_patch.py b/dd-trace-py/tests/contrib/pyodbc/test_pyodbc_patch.py
similarity index 100%
rename from tests/contrib/pyodbc/test_pyodbc_patch.py
rename to dd-trace-py/tests/contrib/pyodbc/test_pyodbc_patch.py
diff --git a/tests/contrib/pyramid/__init__.py b/dd-trace-py/tests/contrib/pyramid/__init__.py
similarity index 100%
rename from tests/contrib/pyramid/__init__.py
rename to dd-trace-py/tests/contrib/pyramid/__init__.py
diff --git a/tests/contrib/pyramid/app/__init__.py b/dd-trace-py/tests/contrib/pyramid/app/__init__.py
similarity index 100%
rename from tests/contrib/pyramid/app/__init__.py
rename to dd-trace-py/tests/contrib/pyramid/app/__init__.py
diff --git a/tests/contrib/pyramid/app/app.py b/dd-trace-py/tests/contrib/pyramid/app/app.py
similarity index 100%
rename from tests/contrib/pyramid/app/app.py
rename to dd-trace-py/tests/contrib/pyramid/app/app.py
diff --git a/tests/contrib/pyramid/app/web.py b/dd-trace-py/tests/contrib/pyramid/app/web.py
similarity index 100%
rename from tests/contrib/pyramid/app/web.py
rename to dd-trace-py/tests/contrib/pyramid/app/web.py
diff --git a/tests/contrib/pyramid/pserve_app/app/__init__.py b/dd-trace-py/tests/contrib/pyramid/pserve_app/app/__init__.py
similarity index 100%
rename from tests/contrib/pyramid/pserve_app/app/__init__.py
rename to dd-trace-py/tests/contrib/pyramid/pserve_app/app/__init__.py
diff --git a/tests/contrib/pyramid/pserve_app/app/routes.py b/dd-trace-py/tests/contrib/pyramid/pserve_app/app/routes.py
similarity index 100%
rename from tests/contrib/pyramid/pserve_app/app/routes.py
rename to dd-trace-py/tests/contrib/pyramid/pserve_app/app/routes.py
diff --git a/tests/contrib/pyramid/pserve_app/development.ini b/dd-trace-py/tests/contrib/pyramid/pserve_app/development.ini
similarity index 100%
rename from tests/contrib/pyramid/pserve_app/development.ini
rename to dd-trace-py/tests/contrib/pyramid/pserve_app/development.ini
diff --git a/tests/contrib/pyramid/pserve_app/setup.py b/dd-trace-py/tests/contrib/pyramid/pserve_app/setup.py
similarity index 100%
rename from tests/contrib/pyramid/pserve_app/setup.py
rename to dd-trace-py/tests/contrib/pyramid/pserve_app/setup.py
diff --git a/tests/contrib/pyramid/test_pyramid.py b/dd-trace-py/tests/contrib/pyramid/test_pyramid.py
similarity index 100%
rename from tests/contrib/pyramid/test_pyramid.py
rename to dd-trace-py/tests/contrib/pyramid/test_pyramid.py
diff --git a/tests/contrib/pyramid/test_pyramid_patch.py b/dd-trace-py/tests/contrib/pyramid/test_pyramid_patch.py
similarity index 100%
rename from tests/contrib/pyramid/test_pyramid_patch.py
rename to dd-trace-py/tests/contrib/pyramid/test_pyramid_patch.py
diff --git a/tests/contrib/pyramid/utils.py b/dd-trace-py/tests/contrib/pyramid/utils.py
similarity index 100%
rename from tests/contrib/pyramid/utils.py
rename to dd-trace-py/tests/contrib/pyramid/utils.py
diff --git a/tests/contrib/pytest/__init__.py b/dd-trace-py/tests/contrib/pytest/__init__.py
similarity index 100%
rename from tests/contrib/pytest/__init__.py
rename to dd-trace-py/tests/contrib/pytest/__init__.py
diff --git a/tests/contrib/pytest/snapshot/__init__.py b/dd-trace-py/tests/contrib/pytest/snapshot/__init__.py
similarity index 100%
rename from tests/contrib/pytest/snapshot/__init__.py
rename to dd-trace-py/tests/contrib/pytest/snapshot/__init__.py
diff --git a/tests/contrib/pytest/snapshot/test_pytest_snapshot.py b/dd-trace-py/tests/contrib/pytest/snapshot/test_pytest_snapshot.py
similarity index 100%
rename from tests/contrib/pytest/snapshot/test_pytest_snapshot.py
rename to dd-trace-py/tests/contrib/pytest/snapshot/test_pytest_snapshot.py
diff --git a/tests/contrib/pytest/snapshot/test_pytest_snapshot_v2.py b/dd-trace-py/tests/contrib/pytest/snapshot/test_pytest_snapshot_v2.py
similarity index 100%
rename from tests/contrib/pytest/snapshot/test_pytest_snapshot_v2.py
rename to dd-trace-py/tests/contrib/pytest/snapshot/test_pytest_snapshot_v2.py
diff --git a/tests/contrib/pytest/snapshot/test_pytest_xdist_snapshot.py b/dd-trace-py/tests/contrib/pytest/snapshot/test_pytest_xdist_snapshot.py
similarity index 100%
rename from tests/contrib/pytest/snapshot/test_pytest_xdist_snapshot.py
rename to dd-trace-py/tests/contrib/pytest/snapshot/test_pytest_xdist_snapshot.py
diff --git a/tests/contrib/pytest/test_coverage_per_suite.py b/dd-trace-py/tests/contrib/pytest/test_coverage_per_suite.py
similarity index 100%
rename from tests/contrib/pytest/test_coverage_per_suite.py
rename to dd-trace-py/tests/contrib/pytest/test_coverage_per_suite.py
diff --git a/tests/contrib/pytest/test_pytest.py b/dd-trace-py/tests/contrib/pytest/test_pytest.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest.py
diff --git a/tests/contrib/pytest/test_pytest_atr.py b/dd-trace-py/tests/contrib/pytest/test_pytest_atr.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_atr.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_atr.py
diff --git a/tests/contrib/pytest/test_pytest_attempt_to_fix.py b/dd-trace-py/tests/contrib/pytest/test_pytest_attempt_to_fix.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_attempt_to_fix.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_attempt_to_fix.py
diff --git a/tests/contrib/pytest/test_pytest_configure_plugin_selection.py b/dd-trace-py/tests/contrib/pytest/test_pytest_configure_plugin_selection.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_configure_plugin_selection.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_configure_plugin_selection.py
diff --git a/tests/contrib/pytest/test_pytest_coverage_edge_cases.py b/dd-trace-py/tests/contrib/pytest/test_pytest_coverage_edge_cases.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_coverage_edge_cases.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_coverage_edge_cases.py
diff --git a/tests/contrib/pytest/test_pytest_coverage_upload_v2.py b/dd-trace-py/tests/contrib/pytest/test_pytest_coverage_upload_v2.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_coverage_upload_v2.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_coverage_upload_v2.py
diff --git a/tests/contrib/pytest/test_pytest_disabling.py b/dd-trace-py/tests/contrib/pytest/test_pytest_disabling.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_disabling.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_disabling.py
diff --git a/tests/contrib/pytest/test_pytest_early_config.py b/dd-trace-py/tests/contrib/pytest/test_pytest_early_config.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_early_config.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_early_config.py
diff --git a/tests/contrib/pytest/test_pytest_efd.py b/dd-trace-py/tests/contrib/pytest/test_pytest_efd.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_efd.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_efd.py
diff --git a/tests/contrib/pytest/test_pytest_final_status.py b/dd-trace-py/tests/contrib/pytest/test_pytest_final_status.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_final_status.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_final_status.py
diff --git a/tests/contrib/pytest/test_pytest_killswitch_integration.py b/dd-trace-py/tests/contrib/pytest/test_pytest_killswitch_integration.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_killswitch_integration.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_killswitch_integration.py
diff --git a/tests/contrib/pytest/test_pytest_quarantine.py b/dd-trace-py/tests/contrib/pytest/test_pytest_quarantine.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_quarantine.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_quarantine.py
diff --git a/tests/contrib/pytest/test_pytest_xdist_atr.py b/dd-trace-py/tests/contrib/pytest/test_pytest_xdist_atr.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_xdist_atr.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_xdist_atr.py
diff --git a/tests/contrib/pytest/test_pytest_xdist_itr.py b/dd-trace-py/tests/contrib/pytest/test_pytest_xdist_itr.py
similarity index 100%
rename from tests/contrib/pytest/test_pytest_xdist_itr.py
rename to dd-trace-py/tests/contrib/pytest/test_pytest_xdist_itr.py
diff --git a/tests/contrib/pytest/test_report_links.py b/dd-trace-py/tests/contrib/pytest/test_report_links.py
similarity index 100%
rename from tests/contrib/pytest/test_report_links.py
rename to dd-trace-py/tests/contrib/pytest/test_report_links.py
diff --git a/tests/contrib/pytest/test_xdist_context_propagation.py b/dd-trace-py/tests/contrib/pytest/test_xdist_context_propagation.py
similarity index 100%
rename from tests/contrib/pytest/test_xdist_context_propagation.py
rename to dd-trace-py/tests/contrib/pytest/test_xdist_context_propagation.py
diff --git a/tests/contrib/pytest/utils.py b/dd-trace-py/tests/contrib/pytest/utils.py
similarity index 100%
rename from tests/contrib/pytest/utils.py
rename to dd-trace-py/tests/contrib/pytest/utils.py
diff --git a/tests/contrib/pytest_bdd/__init__.py b/dd-trace-py/tests/contrib/pytest_bdd/__init__.py
similarity index 100%
rename from tests/contrib/pytest_bdd/__init__.py
rename to dd-trace-py/tests/contrib/pytest_bdd/__init__.py
diff --git a/tests/contrib/pytest_bdd/test_pytest_bdd.py b/dd-trace-py/tests/contrib/pytest_bdd/test_pytest_bdd.py
similarity index 100%
rename from tests/contrib/pytest_bdd/test_pytest_bdd.py
rename to dd-trace-py/tests/contrib/pytest_bdd/test_pytest_bdd.py
diff --git a/tests/contrib/pytest_benchmark/__init__.py b/dd-trace-py/tests/contrib/pytest_benchmark/__init__.py
similarity index 100%
rename from tests/contrib/pytest_benchmark/__init__.py
rename to dd-trace-py/tests/contrib/pytest_benchmark/__init__.py
diff --git a/tests/contrib/pytest_benchmark/test_pytest_benchmark.py b/dd-trace-py/tests/contrib/pytest_benchmark/test_pytest_benchmark.py
similarity index 100%
rename from tests/contrib/pytest_benchmark/test_pytest_benchmark.py
rename to dd-trace-py/tests/contrib/pytest_benchmark/test_pytest_benchmark.py
diff --git a/tests/contrib/pytest_flaky/__init__.py b/dd-trace-py/tests/contrib/pytest_flaky/__init__.py
similarity index 100%
rename from tests/contrib/pytest_flaky/__init__.py
rename to dd-trace-py/tests/contrib/pytest_flaky/__init__.py
diff --git a/tests/contrib/pytest_flaky/test_pytest_flaky.py b/dd-trace-py/tests/contrib/pytest_flaky/test_pytest_flaky.py
similarity index 100%
rename from tests/contrib/pytest_flaky/test_pytest_flaky.py
rename to dd-trace-py/tests/contrib/pytest_flaky/test_pytest_flaky.py
diff --git a/tests/contrib/ray/__init__.py b/dd-trace-py/tests/contrib/ray/__init__.py
similarity index 100%
rename from tests/contrib/ray/__init__.py
rename to dd-trace-py/tests/contrib/ray/__init__.py
diff --git a/tests/contrib/ray/jobs/actor_without_init.py b/dd-trace-py/tests/contrib/ray/jobs/actor_without_init.py
similarity index 100%
rename from tests/contrib/ray/jobs/actor_without_init.py
rename to dd-trace-py/tests/contrib/ray/jobs/actor_without_init.py
diff --git a/tests/contrib/ray/jobs/service.py b/dd-trace-py/tests/contrib/ray/jobs/service.py
similarity index 100%
rename from tests/contrib/ray/jobs/service.py
rename to dd-trace-py/tests/contrib/ray/jobs/service.py
diff --git a/tests/contrib/ray/jobs/task_without_init.py b/dd-trace-py/tests/contrib/ray/jobs/task_without_init.py
similarity index 100%
rename from tests/contrib/ray/jobs/task_without_init.py
rename to dd-trace-py/tests/contrib/ray/jobs/task_without_init.py
diff --git a/tests/contrib/ray/test_long_running_span.py b/dd-trace-py/tests/contrib/ray/test_long_running_span.py
similarity index 100%
rename from tests/contrib/ray/test_long_running_span.py
rename to dd-trace-py/tests/contrib/ray/test_long_running_span.py
diff --git a/tests/contrib/ray/test_ray.py b/dd-trace-py/tests/contrib/ray/test_ray.py
similarity index 100%
rename from tests/contrib/ray/test_ray.py
rename to dd-trace-py/tests/contrib/ray/test_ray.py
diff --git a/tests/contrib/ray/test_ray_patch.py b/dd-trace-py/tests/contrib/ray/test_ray_patch.py
similarity index 100%
rename from tests/contrib/ray/test_ray_patch.py
rename to dd-trace-py/tests/contrib/ray/test_ray_patch.py
diff --git a/tests/contrib/ray/test_ray_utils.py b/dd-trace-py/tests/contrib/ray/test_ray_utils.py
similarity index 100%
rename from tests/contrib/ray/test_ray_utils.py
rename to dd-trace-py/tests/contrib/ray/test_ray_utils.py
diff --git a/tests/contrib/redis/__init__.py b/dd-trace-py/tests/contrib/redis/__init__.py
similarity index 100%
rename from tests/contrib/redis/__init__.py
rename to dd-trace-py/tests/contrib/redis/__init__.py
diff --git a/tests/contrib/redis/test_redis.py b/dd-trace-py/tests/contrib/redis/test_redis.py
similarity index 100%
rename from tests/contrib/redis/test_redis.py
rename to dd-trace-py/tests/contrib/redis/test_redis.py
diff --git a/tests/contrib/redis/test_redis_asyncio.py b/dd-trace-py/tests/contrib/redis/test_redis_asyncio.py
similarity index 100%
rename from tests/contrib/redis/test_redis_asyncio.py
rename to dd-trace-py/tests/contrib/redis/test_redis_asyncio.py
diff --git a/tests/contrib/redis/test_redis_cluster.py b/dd-trace-py/tests/contrib/redis/test_redis_cluster.py
similarity index 100%
rename from tests/contrib/redis/test_redis_cluster.py
rename to dd-trace-py/tests/contrib/redis/test_redis_cluster.py
diff --git a/tests/contrib/redis/test_redis_cluster_asyncio.py b/dd-trace-py/tests/contrib/redis/test_redis_cluster_asyncio.py
similarity index 100%
rename from tests/contrib/redis/test_redis_cluster_asyncio.py
rename to dd-trace-py/tests/contrib/redis/test_redis_cluster_asyncio.py
diff --git a/tests/contrib/redis/test_redis_patch.py b/dd-trace-py/tests/contrib/redis/test_redis_patch.py
similarity index 100%
rename from tests/contrib/redis/test_redis_patch.py
rename to dd-trace-py/tests/contrib/redis/test_redis_patch.py
diff --git a/tests/contrib/redis/utils.py b/dd-trace-py/tests/contrib/redis/utils.py
similarity index 100%
rename from tests/contrib/redis/utils.py
rename to dd-trace-py/tests/contrib/redis/utils.py
diff --git a/tests/contrib/rediscluster/__init__.py b/dd-trace-py/tests/contrib/rediscluster/__init__.py
similarity index 100%
rename from tests/contrib/rediscluster/__init__.py
rename to dd-trace-py/tests/contrib/rediscluster/__init__.py
diff --git a/tests/contrib/rediscluster/test.py b/dd-trace-py/tests/contrib/rediscluster/test.py
similarity index 100%
rename from tests/contrib/rediscluster/test.py
rename to dd-trace-py/tests/contrib/rediscluster/test.py
diff --git a/tests/contrib/rediscluster/test_rediscluster_patch.py b/dd-trace-py/tests/contrib/rediscluster/test_rediscluster_patch.py
similarity index 100%
rename from tests/contrib/rediscluster/test_rediscluster_patch.py
rename to dd-trace-py/tests/contrib/rediscluster/test_rediscluster_patch.py
diff --git a/tests/contrib/requests/__init__.py b/dd-trace-py/tests/contrib/requests/__init__.py
similarity index 100%
rename from tests/contrib/requests/__init__.py
rename to dd-trace-py/tests/contrib/requests/__init__.py
diff --git a/tests/contrib/requests/test_requests.py b/dd-trace-py/tests/contrib/requests/test_requests.py
similarity index 100%
rename from tests/contrib/requests/test_requests.py
rename to dd-trace-py/tests/contrib/requests/test_requests.py
diff --git a/tests/contrib/requests/test_requests_distributed.py b/dd-trace-py/tests/contrib/requests/test_requests_distributed.py
similarity index 100%
rename from tests/contrib/requests/test_requests_distributed.py
rename to dd-trace-py/tests/contrib/requests/test_requests_distributed.py
diff --git a/tests/contrib/requests/test_requests_patch.py b/dd-trace-py/tests/contrib/requests/test_requests_patch.py
similarity index 100%
rename from tests/contrib/requests/test_requests_patch.py
rename to dd-trace-py/tests/contrib/requests/test_requests_patch.py
diff --git a/tests/contrib/rq/__init__.py b/dd-trace-py/tests/contrib/rq/__init__.py
similarity index 100%
rename from tests/contrib/rq/__init__.py
rename to dd-trace-py/tests/contrib/rq/__init__.py
diff --git a/tests/contrib/rq/jobs.py b/dd-trace-py/tests/contrib/rq/jobs.py
similarity index 100%
rename from tests/contrib/rq/jobs.py
rename to dd-trace-py/tests/contrib/rq/jobs.py
diff --git a/tests/contrib/rq/test_rq.py b/dd-trace-py/tests/contrib/rq/test_rq.py
similarity index 100%
rename from tests/contrib/rq/test_rq.py
rename to dd-trace-py/tests/contrib/rq/test_rq.py
diff --git a/tests/contrib/sanic/__init__.py b/dd-trace-py/tests/contrib/sanic/__init__.py
similarity index 100%
rename from tests/contrib/sanic/__init__.py
rename to dd-trace-py/tests/contrib/sanic/__init__.py
diff --git a/tests/contrib/sanic/run_server.py b/dd-trace-py/tests/contrib/sanic/run_server.py
similarity index 100%
rename from tests/contrib/sanic/run_server.py
rename to dd-trace-py/tests/contrib/sanic/run_server.py
diff --git a/tests/contrib/sanic/test_sanic.py b/dd-trace-py/tests/contrib/sanic/test_sanic.py
similarity index 100%
rename from tests/contrib/sanic/test_sanic.py
rename to dd-trace-py/tests/contrib/sanic/test_sanic.py
diff --git a/tests/contrib/sanic/test_sanic_patch.py b/dd-trace-py/tests/contrib/sanic/test_sanic_patch.py
similarity index 100%
rename from tests/contrib/sanic/test_sanic_patch.py
rename to dd-trace-py/tests/contrib/sanic/test_sanic_patch.py
diff --git a/tests/contrib/sanic/test_sanic_server.py b/dd-trace-py/tests/contrib/sanic/test_sanic_server.py
similarity index 100%
rename from tests/contrib/sanic/test_sanic_server.py
rename to dd-trace-py/tests/contrib/sanic/test_sanic_server.py
diff --git a/tests/contrib/selenium/static_test_pages/rum_disabled/page_1.html b/dd-trace-py/tests/contrib/selenium/static_test_pages/rum_disabled/page_1.html
similarity index 100%
rename from tests/contrib/selenium/static_test_pages/rum_disabled/page_1.html
rename to dd-trace-py/tests/contrib/selenium/static_test_pages/rum_disabled/page_1.html
diff --git a/tests/contrib/selenium/static_test_pages/rum_disabled/page_2.html b/dd-trace-py/tests/contrib/selenium/static_test_pages/rum_disabled/page_2.html
similarity index 100%
rename from tests/contrib/selenium/static_test_pages/rum_disabled/page_2.html
rename to dd-trace-py/tests/contrib/selenium/static_test_pages/rum_disabled/page_2.html
diff --git a/tests/contrib/selenium/static_test_pages/rum_enabled/page_1.html b/dd-trace-py/tests/contrib/selenium/static_test_pages/rum_enabled/page_1.html
similarity index 100%
rename from tests/contrib/selenium/static_test_pages/rum_enabled/page_1.html
rename to dd-trace-py/tests/contrib/selenium/static_test_pages/rum_enabled/page_1.html
diff --git a/tests/contrib/selenium/static_test_pages/rum_enabled/page_2.html b/dd-trace-py/tests/contrib/selenium/static_test_pages/rum_enabled/page_2.html
similarity index 100%
rename from tests/contrib/selenium/static_test_pages/rum_enabled/page_2.html
rename to dd-trace-py/tests/contrib/selenium/static_test_pages/rum_enabled/page_2.html
diff --git a/tests/contrib/selenium/test_selenium_chrome.py b/dd-trace-py/tests/contrib/selenium/test_selenium_chrome.py
similarity index 100%
rename from tests/contrib/selenium/test_selenium_chrome.py
rename to dd-trace-py/tests/contrib/selenium/test_selenium_chrome.py
diff --git a/tests/contrib/shared_tests.py b/dd-trace-py/tests/contrib/shared_tests.py
similarity index 100%
rename from tests/contrib/shared_tests.py
rename to dd-trace-py/tests/contrib/shared_tests.py
diff --git a/tests/contrib/shared_tests_async.py b/dd-trace-py/tests/contrib/shared_tests_async.py
similarity index 100%
rename from tests/contrib/shared_tests_async.py
rename to dd-trace-py/tests/contrib/shared_tests_async.py
diff --git a/tests/contrib/snowflake/__init__.py b/dd-trace-py/tests/contrib/snowflake/__init__.py
similarity index 100%
rename from tests/contrib/snowflake/__init__.py
rename to dd-trace-py/tests/contrib/snowflake/__init__.py
diff --git a/tests/contrib/snowflake/test_snowflake.py b/dd-trace-py/tests/contrib/snowflake/test_snowflake.py
similarity index 100%
rename from tests/contrib/snowflake/test_snowflake.py
rename to dd-trace-py/tests/contrib/snowflake/test_snowflake.py
diff --git a/tests/contrib/snowflake/test_snowflake_patch.py b/dd-trace-py/tests/contrib/snowflake/test_snowflake_patch.py
similarity index 100%
rename from tests/contrib/snowflake/test_snowflake_patch.py
rename to dd-trace-py/tests/contrib/snowflake/test_snowflake_patch.py
diff --git a/tests/contrib/sqlalchemy/__init__.py b/dd-trace-py/tests/contrib/sqlalchemy/__init__.py
similarity index 100%
rename from tests/contrib/sqlalchemy/__init__.py
rename to dd-trace-py/tests/contrib/sqlalchemy/__init__.py
diff --git a/tests/contrib/sqlalchemy/mixins.py b/dd-trace-py/tests/contrib/sqlalchemy/mixins.py
similarity index 100%
rename from tests/contrib/sqlalchemy/mixins.py
rename to dd-trace-py/tests/contrib/sqlalchemy/mixins.py
diff --git a/tests/contrib/sqlalchemy/test_mysql.py b/dd-trace-py/tests/contrib/sqlalchemy/test_mysql.py
similarity index 100%
rename from tests/contrib/sqlalchemy/test_mysql.py
rename to dd-trace-py/tests/contrib/sqlalchemy/test_mysql.py
diff --git a/tests/contrib/sqlalchemy/test_patch.py b/dd-trace-py/tests/contrib/sqlalchemy/test_patch.py
similarity index 100%
rename from tests/contrib/sqlalchemy/test_patch.py
rename to dd-trace-py/tests/contrib/sqlalchemy/test_patch.py
diff --git a/tests/contrib/sqlalchemy/test_postgres.py b/dd-trace-py/tests/contrib/sqlalchemy/test_postgres.py
similarity index 100%
rename from tests/contrib/sqlalchemy/test_postgres.py
rename to dd-trace-py/tests/contrib/sqlalchemy/test_postgres.py
diff --git a/tests/contrib/sqlalchemy/test_sqlite.py b/dd-trace-py/tests/contrib/sqlalchemy/test_sqlite.py
similarity index 100%
rename from tests/contrib/sqlalchemy/test_sqlite.py
rename to dd-trace-py/tests/contrib/sqlalchemy/test_sqlite.py
diff --git a/tests/contrib/sqlite3/__init__.py b/dd-trace-py/tests/contrib/sqlite3/__init__.py
similarity index 100%
rename from tests/contrib/sqlite3/__init__.py
rename to dd-trace-py/tests/contrib/sqlite3/__init__.py
diff --git a/tests/contrib/sqlite3/test_sqlite3.py b/dd-trace-py/tests/contrib/sqlite3/test_sqlite3.py
similarity index 100%
rename from tests/contrib/sqlite3/test_sqlite3.py
rename to dd-trace-py/tests/contrib/sqlite3/test_sqlite3.py
diff --git a/tests/contrib/sqlite3/test_sqlite3_patch.py b/dd-trace-py/tests/contrib/sqlite3/test_sqlite3_patch.py
similarity index 100%
rename from tests/contrib/sqlite3/test_sqlite3_patch.py
rename to dd-trace-py/tests/contrib/sqlite3/test_sqlite3_patch.py
diff --git a/tests/contrib/starlette/__init__.py b/dd-trace-py/tests/contrib/starlette/__init__.py
similarity index 100%
rename from tests/contrib/starlette/__init__.py
rename to dd-trace-py/tests/contrib/starlette/__init__.py
diff --git a/tests/contrib/starlette/app.py b/dd-trace-py/tests/contrib/starlette/app.py
similarity index 100%
rename from tests/contrib/starlette/app.py
rename to dd-trace-py/tests/contrib/starlette/app.py
diff --git a/tests/contrib/starlette/test_starlette.py b/dd-trace-py/tests/contrib/starlette/test_starlette.py
similarity index 100%
rename from tests/contrib/starlette/test_starlette.py
rename to dd-trace-py/tests/contrib/starlette/test_starlette.py
diff --git a/tests/contrib/starlette/test_starlette_patch.py b/dd-trace-py/tests/contrib/starlette/test_starlette_patch.py
similarity index 100%
rename from tests/contrib/starlette/test_starlette_patch.py
rename to dd-trace-py/tests/contrib/starlette/test_starlette_patch.py
diff --git a/tests/contrib/structlog/__init__.py b/dd-trace-py/tests/contrib/structlog/__init__.py
similarity index 100%
rename from tests/contrib/structlog/__init__.py
rename to dd-trace-py/tests/contrib/structlog/__init__.py
diff --git a/tests/contrib/structlog/test_structlog_logging.py b/dd-trace-py/tests/contrib/structlog/test_structlog_logging.py
similarity index 100%
rename from tests/contrib/structlog/test_structlog_logging.py
rename to dd-trace-py/tests/contrib/structlog/test_structlog_logging.py
diff --git a/tests/contrib/structlog/test_structlog_patch.py b/dd-trace-py/tests/contrib/structlog/test_structlog_patch.py
similarity index 100%
rename from tests/contrib/structlog/test_structlog_patch.py
rename to dd-trace-py/tests/contrib/structlog/test_structlog_patch.py
diff --git a/tests/contrib/subprocess/__init__.py b/dd-trace-py/tests/contrib/subprocess/__init__.py
similarity index 100%
rename from tests/contrib/subprocess/__init__.py
rename to dd-trace-py/tests/contrib/subprocess/__init__.py
diff --git a/tests/contrib/subprocess/test_subprocess.py b/dd-trace-py/tests/contrib/subprocess/test_subprocess.py
similarity index 100%
rename from tests/contrib/subprocess/test_subprocess.py
rename to dd-trace-py/tests/contrib/subprocess/test_subprocess.py
diff --git a/tests/contrib/subprocess/test_subprocess_patch.py b/dd-trace-py/tests/contrib/subprocess/test_subprocess_patch.py
similarity index 100%
rename from tests/contrib/subprocess/test_subprocess_patch.py
rename to dd-trace-py/tests/contrib/subprocess/test_subprocess_patch.py
diff --git a/tests/contrib/suitespec.yml b/dd-trace-py/tests/contrib/suitespec.yml
similarity index 100%
rename from tests/contrib/suitespec.yml
rename to dd-trace-py/tests/contrib/suitespec.yml
diff --git a/tests/contrib/tornado/__init__.py b/dd-trace-py/tests/contrib/tornado/__init__.py
similarity index 100%
rename from tests/contrib/tornado/__init__.py
rename to dd-trace-py/tests/contrib/tornado/__init__.py
diff --git a/tests/contrib/tornado/test_config.py b/dd-trace-py/tests/contrib/tornado/test_config.py
similarity index 100%
rename from tests/contrib/tornado/test_config.py
rename to dd-trace-py/tests/contrib/tornado/test_config.py
diff --git a/tests/contrib/tornado/test_executor_decorator.py b/dd-trace-py/tests/contrib/tornado/test_executor_decorator.py
similarity index 100%
rename from tests/contrib/tornado/test_executor_decorator.py
rename to dd-trace-py/tests/contrib/tornado/test_executor_decorator.py
diff --git a/tests/contrib/tornado/test_regex_to_route.py b/dd-trace-py/tests/contrib/tornado/test_regex_to_route.py
similarity index 100%
rename from tests/contrib/tornado/test_regex_to_route.py
rename to dd-trace-py/tests/contrib/tornado/test_regex_to_route.py
diff --git a/tests/contrib/tornado/test_safety.py b/dd-trace-py/tests/contrib/tornado/test_safety.py
similarity index 100%
rename from tests/contrib/tornado/test_safety.py
rename to dd-trace-py/tests/contrib/tornado/test_safety.py
diff --git a/tests/contrib/tornado/test_stack_context.py b/dd-trace-py/tests/contrib/tornado/test_stack_context.py
similarity index 100%
rename from tests/contrib/tornado/test_stack_context.py
rename to dd-trace-py/tests/contrib/tornado/test_stack_context.py
diff --git a/tests/contrib/tornado/test_tornado_patch.py b/dd-trace-py/tests/contrib/tornado/test_tornado_patch.py
similarity index 100%
rename from tests/contrib/tornado/test_tornado_patch.py
rename to dd-trace-py/tests/contrib/tornado/test_tornado_patch.py
diff --git a/tests/contrib/tornado/test_tornado_template.py b/dd-trace-py/tests/contrib/tornado/test_tornado_template.py
similarity index 100%
rename from tests/contrib/tornado/test_tornado_template.py
rename to dd-trace-py/tests/contrib/tornado/test_tornado_template.py
diff --git a/tests/contrib/tornado/test_tornado_web.py b/dd-trace-py/tests/contrib/tornado/test_tornado_web.py
similarity index 100%
rename from tests/contrib/tornado/test_tornado_web.py
rename to dd-trace-py/tests/contrib/tornado/test_tornado_web.py
diff --git a/tests/contrib/tornado/test_wrap_decorator.py b/dd-trace-py/tests/contrib/tornado/test_wrap_decorator.py
similarity index 100%
rename from tests/contrib/tornado/test_wrap_decorator.py
rename to dd-trace-py/tests/contrib/tornado/test_wrap_decorator.py
diff --git a/tests/contrib/tornado/utils.py b/dd-trace-py/tests/contrib/tornado/utils.py
similarity index 100%
rename from tests/contrib/tornado/utils.py
rename to dd-trace-py/tests/contrib/tornado/utils.py
diff --git a/tests/contrib/tornado/web/__init__.py b/dd-trace-py/tests/contrib/tornado/web/__init__.py
similarity index 100%
rename from tests/contrib/tornado/web/__init__.py
rename to dd-trace-py/tests/contrib/tornado/web/__init__.py
diff --git a/tests/contrib/tornado/web/app.py b/dd-trace-py/tests/contrib/tornado/web/app.py
similarity index 100%
rename from tests/contrib/tornado/web/app.py
rename to dd-trace-py/tests/contrib/tornado/web/app.py
diff --git a/tests/contrib/tornado/web/compat.py b/dd-trace-py/tests/contrib/tornado/web/compat.py
similarity index 100%
rename from tests/contrib/tornado/web/compat.py
rename to dd-trace-py/tests/contrib/tornado/web/compat.py
diff --git a/tests/contrib/tornado/web/statics/empty.txt b/dd-trace-py/tests/contrib/tornado/web/statics/empty.txt
similarity index 100%
rename from tests/contrib/tornado/web/statics/empty.txt
rename to dd-trace-py/tests/contrib/tornado/web/statics/empty.txt
diff --git a/tests/contrib/tornado/web/templates/exception.html b/dd-trace-py/tests/contrib/tornado/web/templates/exception.html
similarity index 100%
rename from tests/contrib/tornado/web/templates/exception.html
rename to dd-trace-py/tests/contrib/tornado/web/templates/exception.html
diff --git a/tests/contrib/tornado/web/templates/item.html b/dd-trace-py/tests/contrib/tornado/web/templates/item.html
similarity index 100%
rename from tests/contrib/tornado/web/templates/item.html
rename to dd-trace-py/tests/contrib/tornado/web/templates/item.html
diff --git a/tests/contrib/tornado/web/templates/list.html b/dd-trace-py/tests/contrib/tornado/web/templates/list.html
similarity index 100%
rename from tests/contrib/tornado/web/templates/list.html
rename to dd-trace-py/tests/contrib/tornado/web/templates/list.html
diff --git a/tests/contrib/tornado/web/templates/page.html b/dd-trace-py/tests/contrib/tornado/web/templates/page.html
similarity index 100%
rename from tests/contrib/tornado/web/templates/page.html
rename to dd-trace-py/tests/contrib/tornado/web/templates/page.html
diff --git a/tests/contrib/tornado/web/uimodules.py b/dd-trace-py/tests/contrib/tornado/web/uimodules.py
similarity index 100%
rename from tests/contrib/tornado/web/uimodules.py
rename to dd-trace-py/tests/contrib/tornado/web/uimodules.py
diff --git a/tests/contrib/unittest/__init__.py b/dd-trace-py/tests/contrib/unittest/__init__.py
similarity index 100%
rename from tests/contrib/unittest/__init__.py
rename to dd-trace-py/tests/contrib/unittest/__init__.py
diff --git a/tests/contrib/unittest/test_unittest.py b/dd-trace-py/tests/contrib/unittest/test_unittest.py
similarity index 100%
rename from tests/contrib/unittest/test_unittest.py
rename to dd-trace-py/tests/contrib/unittest/test_unittest.py
diff --git a/tests/contrib/unittest/test_unittest_patch.py b/dd-trace-py/tests/contrib/unittest/test_unittest_patch.py
similarity index 100%
rename from tests/contrib/unittest/test_unittest_patch.py
rename to dd-trace-py/tests/contrib/unittest/test_unittest_patch.py
diff --git a/tests/contrib/unittest/test_unittest_snapshot.py b/dd-trace-py/tests/contrib/unittest/test_unittest_snapshot.py
similarity index 100%
rename from tests/contrib/unittest/test_unittest_snapshot.py
rename to dd-trace-py/tests/contrib/unittest/test_unittest_snapshot.py
diff --git a/tests/contrib/urllib3/__init__.py b/dd-trace-py/tests/contrib/urllib3/__init__.py
similarity index 100%
rename from tests/contrib/urllib3/__init__.py
rename to dd-trace-py/tests/contrib/urllib3/__init__.py
diff --git a/tests/contrib/urllib3/test_urllib3.py b/dd-trace-py/tests/contrib/urllib3/test_urllib3.py
similarity index 100%
rename from tests/contrib/urllib3/test_urllib3.py
rename to dd-trace-py/tests/contrib/urllib3/test_urllib3.py
diff --git a/tests/contrib/urllib3/test_urllib3_appsec.py b/dd-trace-py/tests/contrib/urllib3/test_urllib3_appsec.py
similarity index 100%
rename from tests/contrib/urllib3/test_urllib3_appsec.py
rename to dd-trace-py/tests/contrib/urllib3/test_urllib3_appsec.py
diff --git a/tests/contrib/urllib3/test_urllib3_patch.py b/dd-trace-py/tests/contrib/urllib3/test_urllib3_patch.py
similarity index 100%
rename from tests/contrib/urllib3/test_urllib3_patch.py
rename to dd-trace-py/tests/contrib/urllib3/test_urllib3_patch.py
diff --git a/tests/contrib/uwsgi/__init__.py b/dd-trace-py/tests/contrib/uwsgi/__init__.py
similarity index 100%
rename from tests/contrib/uwsgi/__init__.py
rename to dd-trace-py/tests/contrib/uwsgi/__init__.py
diff --git a/tests/contrib/valkey/__init__.py b/dd-trace-py/tests/contrib/valkey/__init__.py
similarity index 100%
rename from tests/contrib/valkey/__init__.py
rename to dd-trace-py/tests/contrib/valkey/__init__.py
diff --git a/tests/contrib/valkey/conftest.py b/dd-trace-py/tests/contrib/valkey/conftest.py
similarity index 100%
rename from tests/contrib/valkey/conftest.py
rename to dd-trace-py/tests/contrib/valkey/conftest.py
diff --git a/tests/contrib/valkey/test_valkey.py b/dd-trace-py/tests/contrib/valkey/test_valkey.py
similarity index 100%
rename from tests/contrib/valkey/test_valkey.py
rename to dd-trace-py/tests/contrib/valkey/test_valkey.py
diff --git a/tests/contrib/valkey/test_valkey_asyncio.py b/dd-trace-py/tests/contrib/valkey/test_valkey_asyncio.py
similarity index 100%
rename from tests/contrib/valkey/test_valkey_asyncio.py
rename to dd-trace-py/tests/contrib/valkey/test_valkey_asyncio.py
diff --git a/tests/contrib/valkey/test_valkey_cluster.py b/dd-trace-py/tests/contrib/valkey/test_valkey_cluster.py
similarity index 100%
rename from tests/contrib/valkey/test_valkey_cluster.py
rename to dd-trace-py/tests/contrib/valkey/test_valkey_cluster.py
diff --git a/tests/contrib/valkey/test_valkey_cluster_asyncio.py b/dd-trace-py/tests/contrib/valkey/test_valkey_cluster_asyncio.py
similarity index 100%
rename from tests/contrib/valkey/test_valkey_cluster_asyncio.py
rename to dd-trace-py/tests/contrib/valkey/test_valkey_cluster_asyncio.py
diff --git a/tests/contrib/valkey/test_valkey_patch.py b/dd-trace-py/tests/contrib/valkey/test_valkey_patch.py
similarity index 100%
rename from tests/contrib/valkey/test_valkey_patch.py
rename to dd-trace-py/tests/contrib/valkey/test_valkey_patch.py
diff --git a/tests/contrib/vertexai/__init__.py b/dd-trace-py/tests/contrib/vertexai/__init__.py
similarity index 100%
rename from tests/contrib/vertexai/__init__.py
rename to dd-trace-py/tests/contrib/vertexai/__init__.py
diff --git a/tests/contrib/vertexai/conftest.py b/dd-trace-py/tests/contrib/vertexai/conftest.py
similarity index 100%
rename from tests/contrib/vertexai/conftest.py
rename to dd-trace-py/tests/contrib/vertexai/conftest.py
diff --git a/tests/contrib/vertexai/test_vertexai.py b/dd-trace-py/tests/contrib/vertexai/test_vertexai.py
similarity index 100%
rename from tests/contrib/vertexai/test_vertexai.py
rename to dd-trace-py/tests/contrib/vertexai/test_vertexai.py
diff --git a/tests/contrib/vertexai/test_vertexai_llmobs.py b/dd-trace-py/tests/contrib/vertexai/test_vertexai_llmobs.py
similarity index 100%
rename from tests/contrib/vertexai/test_vertexai_llmobs.py
rename to dd-trace-py/tests/contrib/vertexai/test_vertexai_llmobs.py
diff --git a/tests/contrib/vertexai/test_vertexai_patch.py b/dd-trace-py/tests/contrib/vertexai/test_vertexai_patch.py
similarity index 100%
rename from tests/contrib/vertexai/test_vertexai_patch.py
rename to dd-trace-py/tests/contrib/vertexai/test_vertexai_patch.py
diff --git a/tests/contrib/vertexai/utils.py b/dd-trace-py/tests/contrib/vertexai/utils.py
similarity index 100%
rename from tests/contrib/vertexai/utils.py
rename to dd-trace-py/tests/contrib/vertexai/utils.py
diff --git a/tests/contrib/vertica/__init__.py b/dd-trace-py/tests/contrib/vertica/__init__.py
similarity index 100%
rename from tests/contrib/vertica/__init__.py
rename to dd-trace-py/tests/contrib/vertica/__init__.py
diff --git a/tests/contrib/vertica/test_vertica.py b/dd-trace-py/tests/contrib/vertica/test_vertica.py
similarity index 100%
rename from tests/contrib/vertica/test_vertica.py
rename to dd-trace-py/tests/contrib/vertica/test_vertica.py
diff --git a/tests/contrib/vertica/test_vertica_patch.py b/dd-trace-py/tests/contrib/vertica/test_vertica_patch.py
similarity index 100%
rename from tests/contrib/vertica/test_vertica_patch.py
rename to dd-trace-py/tests/contrib/vertica/test_vertica_patch.py
diff --git a/tests/contrib/vllm/__init__.py b/dd-trace-py/tests/contrib/vllm/__init__.py
similarity index 100%
rename from tests/contrib/vllm/__init__.py
rename to dd-trace-py/tests/contrib/vllm/__init__.py
diff --git a/tests/contrib/vllm/_utils.py b/dd-trace-py/tests/contrib/vllm/_utils.py
similarity index 100%
rename from tests/contrib/vllm/_utils.py
rename to dd-trace-py/tests/contrib/vllm/_utils.py
diff --git a/tests/contrib/vllm/api_app.py b/dd-trace-py/tests/contrib/vllm/api_app.py
similarity index 100%
rename from tests/contrib/vllm/api_app.py
rename to dd-trace-py/tests/contrib/vllm/api_app.py
diff --git a/tests/contrib/vllm/conftest.py b/dd-trace-py/tests/contrib/vllm/conftest.py
similarity index 100%
rename from tests/contrib/vllm/conftest.py
rename to dd-trace-py/tests/contrib/vllm/conftest.py
diff --git a/tests/contrib/vllm/test_api_app.py b/dd-trace-py/tests/contrib/vllm/test_api_app.py
similarity index 100%
rename from tests/contrib/vllm/test_api_app.py
rename to dd-trace-py/tests/contrib/vllm/test_api_app.py
diff --git a/tests/contrib/vllm/test_extractors.py b/dd-trace-py/tests/contrib/vllm/test_extractors.py
similarity index 100%
rename from tests/contrib/vllm/test_extractors.py
rename to dd-trace-py/tests/contrib/vllm/test_extractors.py
diff --git a/tests/contrib/vllm/test_vllm_llmobs.py b/dd-trace-py/tests/contrib/vllm/test_vllm_llmobs.py
similarity index 100%
rename from tests/contrib/vllm/test_vllm_llmobs.py
rename to dd-trace-py/tests/contrib/vllm/test_vllm_llmobs.py
diff --git a/tests/contrib/wsgi/__init__.py b/dd-trace-py/tests/contrib/wsgi/__init__.py
similarity index 100%
rename from tests/contrib/wsgi/__init__.py
rename to dd-trace-py/tests/contrib/wsgi/__init__.py
diff --git a/tests/contrib/wsgi/test_wsgi.py b/dd-trace-py/tests/contrib/wsgi/test_wsgi.py
similarity index 100%
rename from tests/contrib/wsgi/test_wsgi.py
rename to dd-trace-py/tests/contrib/wsgi/test_wsgi.py
diff --git a/tests/contrib/yaaredis/__init__.py b/dd-trace-py/tests/contrib/yaaredis/__init__.py
similarity index 100%
rename from tests/contrib/yaaredis/__init__.py
rename to dd-trace-py/tests/contrib/yaaredis/__init__.py
diff --git a/tests/contrib/yaaredis/test_yaaredis.py b/dd-trace-py/tests/contrib/yaaredis/test_yaaredis.py
similarity index 100%
rename from tests/contrib/yaaredis/test_yaaredis.py
rename to dd-trace-py/tests/contrib/yaaredis/test_yaaredis.py
diff --git a/tests/contrib/yaaredis/test_yaaredis_patch.py b/dd-trace-py/tests/contrib/yaaredis/test_yaaredis_patch.py
similarity index 100%
rename from tests/contrib/yaaredis/test_yaaredis_patch.py
rename to dd-trace-py/tests/contrib/yaaredis/test_yaaredis_patch.py
diff --git a/tests/coverage/__init__.py b/dd-trace-py/tests/coverage/__init__.py
similarity index 100%
rename from tests/coverage/__init__.py
rename to dd-trace-py/tests/coverage/__init__.py
diff --git a/tests/coverage/excluded_path/excluded.py b/dd-trace-py/tests/coverage/excluded_path/excluded.py
similarity index 100%
rename from tests/coverage/excluded_path/excluded.py
rename to dd-trace-py/tests/coverage/excluded_path/excluded.py
diff --git a/tests/coverage/included_path/async_code.py b/dd-trace-py/tests/coverage/included_path/async_code.py
similarity index 100%
rename from tests/coverage/included_path/async_code.py
rename to dd-trace-py/tests/coverage/included_path/async_code.py
diff --git a/tests/coverage/included_path/callee.py b/dd-trace-py/tests/coverage/included_path/callee.py
similarity index 100%
rename from tests/coverage/included_path/callee.py
rename to dd-trace-py/tests/coverage/included_path/callee.py
diff --git a/tests/coverage/included_path/constants_dynamic.py b/dd-trace-py/tests/coverage/included_path/constants_dynamic.py
similarity index 100%
rename from tests/coverage/included_path/constants_dynamic.py
rename to dd-trace-py/tests/coverage/included_path/constants_dynamic.py
diff --git a/tests/coverage/included_path/constants_toplevel.py b/dd-trace-py/tests/coverage/included_path/constants_toplevel.py
similarity index 100%
rename from tests/coverage/included_path/constants_toplevel.py
rename to dd-trace-py/tests/coverage/included_path/constants_toplevel.py
diff --git a/tests/coverage/included_path/import_time_callee.py b/dd-trace-py/tests/coverage/included_path/import_time_callee.py
similarity index 100%
rename from tests/coverage/included_path/import_time_callee.py
rename to dd-trace-py/tests/coverage/included_path/import_time_callee.py
diff --git a/tests/coverage/included_path/import_time_lib.py b/dd-trace-py/tests/coverage/included_path/import_time_lib.py
similarity index 100%
rename from tests/coverage/included_path/import_time_lib.py
rename to dd-trace-py/tests/coverage/included_path/import_time_lib.py
diff --git a/tests/coverage/included_path/imported_in_function_lib.py b/dd-trace-py/tests/coverage/included_path/imported_in_function_lib.py
similarity index 100%
rename from tests/coverage/included_path/imported_in_function_lib.py
rename to dd-trace-py/tests/coverage/included_path/imported_in_function_lib.py
diff --git a/tests/coverage/included_path/imports_ns_dot.py b/dd-trace-py/tests/coverage/included_path/imports_ns_dot.py
similarity index 100%
rename from tests/coverage/included_path/imports_ns_dot.py
rename to dd-trace-py/tests/coverage/included_path/imports_ns_dot.py
diff --git a/tests/coverage/included_path/imports_rp_dot.py b/dd-trace-py/tests/coverage/included_path/imports_rp_dot.py
similarity index 100%
rename from tests/coverage/included_path/imports_rp_dot.py
rename to dd-trace-py/tests/coverage/included_path/imports_rp_dot.py
diff --git a/tests/coverage/included_path/in_context_lib.py b/dd-trace-py/tests/coverage/included_path/in_context_lib.py
similarity index 100%
rename from tests/coverage/included_path/in_context_lib.py
rename to dd-trace-py/tests/coverage/included_path/in_context_lib.py
diff --git a/tests/coverage/included_path/late_import_const.py b/dd-trace-py/tests/coverage/included_path/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/late_import_const.py
diff --git a/tests/coverage/included_path/layer2_dynamic.py b/dd-trace-py/tests/coverage/included_path/layer2_dynamic.py
similarity index 100%
rename from tests/coverage/included_path/layer2_dynamic.py
rename to dd-trace-py/tests/coverage/included_path/layer2_dynamic.py
diff --git a/tests/coverage/included_path/layer2_toplevel.py b/dd-trace-py/tests/coverage/included_path/layer2_toplevel.py
similarity index 100%
rename from tests/coverage/included_path/layer2_toplevel.py
rename to dd-trace-py/tests/coverage/included_path/layer2_toplevel.py
diff --git a/tests/coverage/included_path/layer3_dynamic.py b/dd-trace-py/tests/coverage/included_path/layer3_dynamic.py
similarity index 100%
rename from tests/coverage/included_path/layer3_dynamic.py
rename to dd-trace-py/tests/coverage/included_path/layer3_dynamic.py
diff --git a/tests/coverage/included_path/layer3_toplevel.py b/dd-trace-py/tests/coverage/included_path/layer3_toplevel.py
similarity index 100%
rename from tests/coverage/included_path/layer3_toplevel.py
rename to dd-trace-py/tests/coverage/included_path/layer3_toplevel.py
diff --git a/tests/coverage/included_path/lib.py b/dd-trace-py/tests/coverage/included_path/lib.py
similarity index 100%
rename from tests/coverage/included_path/lib.py
rename to dd-trace-py/tests/coverage/included_path/lib.py
diff --git a/tests/coverage/included_path/nested_fixture.py b/dd-trace-py/tests/coverage/included_path/nested_fixture.py
similarity index 100%
rename from tests/coverage/included_path/nested_fixture.py
rename to dd-trace-py/tests/coverage/included_path/nested_fixture.py
diff --git a/tests/coverage/included_path/nested_import_time_lib.py b/dd-trace-py/tests/coverage/included_path/nested_import_time_lib.py
similarity index 100%
rename from tests/coverage/included_path/nested_import_time_lib.py
rename to dd-trace-py/tests/coverage/included_path/nested_import_time_lib.py
diff --git a/tests/coverage/included_path/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/normal_import_const.py
diff --git a/tests/coverage/included_path/nsa/imports_dotdot_nsa.py b/dd-trace-py/tests/coverage/included_path/nsa/imports_dotdot_nsa.py
similarity index 100%
rename from tests/coverage/included_path/nsa/imports_dotdot_nsa.py
rename to dd-trace-py/tests/coverage/included_path/nsa/imports_dotdot_nsa.py
diff --git a/tests/coverage/included_path/nsa/imports_dotdot_nsb.py b/dd-trace-py/tests/coverage/included_path/nsa/imports_dotdot_nsb.py
similarity index 100%
rename from tests/coverage/included_path/nsa/imports_dotdot_nsb.py
rename to dd-trace-py/tests/coverage/included_path/nsa/imports_dotdot_nsb.py
diff --git a/tests/coverage/included_path/nsa/late_import_const.py b/dd-trace-py/tests/coverage/included_path/nsa/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/nsa/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/nsa/late_import_const.py
diff --git a/tests/coverage/included_path/nsa/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/nsa/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/nsa/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/nsa/normal_import_const.py
diff --git a/tests/coverage/included_path/nsa/nsa/late_import_const.py b/dd-trace-py/tests/coverage/included_path/nsa/nsa/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/nsa/nsa/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/nsa/nsa/late_import_const.py
diff --git a/tests/coverage/included_path/nsa/nsa/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/nsa/nsa/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/nsa/nsa/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/nsa/nsa/normal_import_const.py
diff --git a/tests/coverage/included_path/nsa/nsa_imports_dot.py b/dd-trace-py/tests/coverage/included_path/nsa/nsa_imports_dot.py
similarity index 100%
rename from tests/coverage/included_path/nsa/nsa_imports_dot.py
rename to dd-trace-py/tests/coverage/included_path/nsa/nsa_imports_dot.py
diff --git a/tests/coverage/included_path/nsa/nsa_imports_parent.py b/dd-trace-py/tests/coverage/included_path/nsa/nsa_imports_parent.py
similarity index 100%
rename from tests/coverage/included_path/nsa/nsa_imports_parent.py
rename to dd-trace-py/tests/coverage/included_path/nsa/nsa_imports_parent.py
diff --git a/tests/coverage/included_path/nsa/nsb/late_import_const.py b/dd-trace-py/tests/coverage/included_path/nsa/nsb/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/nsa/nsb/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/nsa/nsb/late_import_const.py
diff --git a/tests/coverage/included_path/nsa/nsb/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/nsa/nsb/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/nsa/nsb/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/nsa/nsb/normal_import_const.py
diff --git a/tests/coverage/included_path/nsb/late_import_const.py b/dd-trace-py/tests/coverage/included_path/nsb/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/nsb/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/nsb/late_import_const.py
diff --git a/tests/coverage/included_path/nsb/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/nsb/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/nsb/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/nsb/normal_import_const.py
diff --git a/tests/coverage/included_path/py39_line_numbers.py b/dd-trace-py/tests/coverage/included_path/py39_line_numbers.py
similarity index 100%
rename from tests/coverage/included_path/py39_line_numbers.py
rename to dd-trace-py/tests/coverage/included_path/py39_line_numbers.py
diff --git a/tests/coverage/included_path/reinstrumentation_test_module.py b/dd-trace-py/tests/coverage/included_path/reinstrumentation_test_module.py
similarity index 100%
rename from tests/coverage/included_path/reinstrumentation_test_module.py
rename to dd-trace-py/tests/coverage/included_path/reinstrumentation_test_module.py
diff --git a/tests/coverage/included_path/rpa/__init__.py b/dd-trace-py/tests/coverage/included_path/rpa/__init__.py
similarity index 100%
rename from tests/coverage/included_path/rpa/__init__.py
rename to dd-trace-py/tests/coverage/included_path/rpa/__init__.py
diff --git a/tests/coverage/included_path/rpa/imports_dotdot_nsa.py b/dd-trace-py/tests/coverage/included_path/rpa/imports_dotdot_nsa.py
similarity index 100%
rename from tests/coverage/included_path/rpa/imports_dotdot_nsa.py
rename to dd-trace-py/tests/coverage/included_path/rpa/imports_dotdot_nsa.py
diff --git a/tests/coverage/included_path/rpa/imports_dotdot_nsb.py b/dd-trace-py/tests/coverage/included_path/rpa/imports_dotdot_nsb.py
similarity index 100%
rename from tests/coverage/included_path/rpa/imports_dotdot_nsb.py
rename to dd-trace-py/tests/coverage/included_path/rpa/imports_dotdot_nsb.py
diff --git a/tests/coverage/included_path/rpa/late_import_const.py b/dd-trace-py/tests/coverage/included_path/rpa/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/rpa/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/rpa/late_import_const.py
diff --git a/tests/coverage/included_path/rpa/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/rpa/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/rpa/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/rpa/normal_import_const.py
diff --git a/tests/coverage/included_path/rpa/rpa/__init__.py b/dd-trace-py/tests/coverage/included_path/rpa/rpa/__init__.py
similarity index 100%
rename from tests/coverage/included_path/rpa/rpa/__init__.py
rename to dd-trace-py/tests/coverage/included_path/rpa/rpa/__init__.py
diff --git a/tests/coverage/included_path/rpa/rpa/late_import_const.py b/dd-trace-py/tests/coverage/included_path/rpa/rpa/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/rpa/rpa/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/rpa/rpa/late_import_const.py
diff --git a/tests/coverage/included_path/rpa/rpa/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/rpa/rpa/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/rpa/rpa/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/rpa/rpa/normal_import_const.py
diff --git a/tests/coverage/included_path/rpa/rpa_imports_dot.py b/dd-trace-py/tests/coverage/included_path/rpa/rpa_imports_dot.py
similarity index 100%
rename from tests/coverage/included_path/rpa/rpa_imports_dot.py
rename to dd-trace-py/tests/coverage/included_path/rpa/rpa_imports_dot.py
diff --git a/tests/coverage/included_path/rpa/rpa_imports_parent.py b/dd-trace-py/tests/coverage/included_path/rpa/rpa_imports_parent.py
similarity index 100%
rename from tests/coverage/included_path/rpa/rpa_imports_parent.py
rename to dd-trace-py/tests/coverage/included_path/rpa/rpa_imports_parent.py
diff --git a/tests/coverage/included_path/rpa/rpb/__init__.py b/dd-trace-py/tests/coverage/included_path/rpa/rpb/__init__.py
similarity index 100%
rename from tests/coverage/included_path/rpa/rpb/__init__.py
rename to dd-trace-py/tests/coverage/included_path/rpa/rpb/__init__.py
diff --git a/tests/coverage/included_path/rpa/rpb/late_import_const.py b/dd-trace-py/tests/coverage/included_path/rpa/rpb/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/rpa/rpb/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/rpa/rpb/late_import_const.py
diff --git a/tests/coverage/included_path/rpa/rpb/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/rpa/rpb/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/rpa/rpb/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/rpa/rpb/normal_import_const.py
diff --git a/tests/coverage/included_path/rpb/__init__.py b/dd-trace-py/tests/coverage/included_path/rpb/__init__.py
similarity index 100%
rename from tests/coverage/included_path/rpb/__init__.py
rename to dd-trace-py/tests/coverage/included_path/rpb/__init__.py
diff --git a/tests/coverage/included_path/rpb/late_import_const.py b/dd-trace-py/tests/coverage/included_path/rpb/late_import_const.py
similarity index 100%
rename from tests/coverage/included_path/rpb/late_import_const.py
rename to dd-trace-py/tests/coverage/included_path/rpb/late_import_const.py
diff --git a/tests/coverage/included_path/rpb/normal_import_const.py b/dd-trace-py/tests/coverage/included_path/rpb/normal_import_const.py
similarity index 100%
rename from tests/coverage/included_path/rpb/normal_import_const.py
rename to dd-trace-py/tests/coverage/included_path/rpb/normal_import_const.py
diff --git a/tests/coverage/included_path/synthetic_opcodes_module.py b/dd-trace-py/tests/coverage/included_path/synthetic_opcodes_module.py
similarity index 100%
rename from tests/coverage/included_path/synthetic_opcodes_module.py
rename to dd-trace-py/tests/coverage/included_path/synthetic_opcodes_module.py
diff --git a/tests/coverage/test_constants_import_tracking.py b/dd-trace-py/tests/coverage/test_constants_import_tracking.py
similarity index 100%
rename from tests/coverage/test_constants_import_tracking.py
rename to dd-trace-py/tests/coverage/test_constants_import_tracking.py
diff --git a/tests/coverage/test_coverage.py b/dd-trace-py/tests/coverage/test_coverage.py
similarity index 100%
rename from tests/coverage/test_coverage.py
rename to dd-trace-py/tests/coverage/test_coverage.py
diff --git a/tests/coverage/test_coverage_async.py b/dd-trace-py/tests/coverage/test_coverage_async.py
similarity index 100%
rename from tests/coverage/test_coverage_async.py
rename to dd-trace-py/tests/coverage/test_coverage_async.py
diff --git a/tests/coverage/test_coverage_context_reinstrumentation.py b/dd-trace-py/tests/coverage/test_coverage_context_reinstrumentation.py
similarity index 100%
rename from tests/coverage/test_coverage_context_reinstrumentation.py
rename to dd-trace-py/tests/coverage/test_coverage_context_reinstrumentation.py
diff --git a/tests/coverage/test_coverage_multiprocessing.py b/dd-trace-py/tests/coverage/test_coverage_multiprocessing.py
similarity index 100%
rename from tests/coverage/test_coverage_multiprocessing.py
rename to dd-trace-py/tests/coverage/test_coverage_multiprocessing.py
diff --git a/tests/coverage/test_coverage_py312_synthetic_opcodes.py b/dd-trace-py/tests/coverage/test_coverage_py312_synthetic_opcodes.py
similarity index 100%
rename from tests/coverage/test_coverage_py312_synthetic_opcodes.py
rename to dd-trace-py/tests/coverage/test_coverage_py312_synthetic_opcodes.py
diff --git a/tests/coverage/test_coverage_py39_line_numebers.py b/dd-trace-py/tests/coverage/test_coverage_py39_line_numebers.py
similarity index 100%
rename from tests/coverage/test_coverage_py39_line_numebers.py
rename to dd-trace-py/tests/coverage/test_coverage_py39_line_numebers.py
diff --git a/tests/coverage/test_coverage_relative_namespace_packages.py b/dd-trace-py/tests/coverage/test_coverage_relative_namespace_packages.py
similarity index 100%
rename from tests/coverage/test_coverage_relative_namespace_packages.py
rename to dd-trace-py/tests/coverage/test_coverage_relative_namespace_packages.py
diff --git a/tests/coverage/test_coverage_relative_regular_packages.py b/dd-trace-py/tests/coverage/test_coverage_relative_regular_packages.py
similarity index 100%
rename from tests/coverage/test_coverage_relative_regular_packages.py
rename to dd-trace-py/tests/coverage/test_coverage_relative_regular_packages.py
diff --git a/tests/coverage/test_coverage_threading.py b/dd-trace-py/tests/coverage/test_coverage_threading.py
similarity index 100%
rename from tests/coverage/test_coverage_threading.py
rename to dd-trace-py/tests/coverage/test_coverage_threading.py
diff --git a/tests/coverage/test_coverage_tool_clash.py b/dd-trace-py/tests/coverage/test_coverage_tool_clash.py
similarity index 100%
rename from tests/coverage/test_coverage_tool_clash.py
rename to dd-trace-py/tests/coverage/test_coverage_tool_clash.py
diff --git a/tests/coverage/test_import_dependency_tracking.py b/dd-trace-py/tests/coverage/test_import_dependency_tracking.py
similarity index 100%
rename from tests/coverage/test_import_dependency_tracking.py
rename to dd-trace-py/tests/coverage/test_import_dependency_tracking.py
diff --git a/tests/coverage/test_instrumentation_py312_disable.py b/dd-trace-py/tests/coverage/test_instrumentation_py312_disable.py
similarity index 100%
rename from tests/coverage/test_instrumentation_py312_disable.py
rename to dd-trace-py/tests/coverage/test_instrumentation_py312_disable.py
diff --git a/tests/coverage/test_nested_dynamic_imports.py b/dd-trace-py/tests/coverage/test_nested_dynamic_imports.py
similarity index 100%
rename from tests/coverage/test_nested_dynamic_imports.py
rename to dd-trace-py/tests/coverage/test_nested_dynamic_imports.py
diff --git a/tests/coverage/utils.py b/dd-trace-py/tests/coverage/utils.py
similarity index 100%
rename from tests/coverage/utils.py
rename to dd-trace-py/tests/coverage/utils.py
diff --git a/tests/crashtracker/__init__.py b/dd-trace-py/tests/crashtracker/__init__.py
similarity index 100%
rename from tests/crashtracker/__init__.py
rename to dd-trace-py/tests/crashtracker/__init__.py
diff --git a/tests/crashtracker/test_crashtracker.py b/dd-trace-py/tests/crashtracker/test_crashtracker.py
similarity index 100%
rename from tests/crashtracker/test_crashtracker.py
rename to dd-trace-py/tests/crashtracker/test_crashtracker.py
diff --git a/tests/crashtracker/utils.py b/dd-trace-py/tests/crashtracker/utils.py
similarity index 100%
rename from tests/crashtracker/utils.py
rename to dd-trace-py/tests/crashtracker/utils.py
diff --git a/tests/datastreams/__init__.py b/dd-trace-py/tests/datastreams/__init__.py
similarity index 100%
rename from tests/datastreams/__init__.py
rename to dd-trace-py/tests/datastreams/__init__.py
diff --git a/tests/datastreams/schemas/__init__.py b/dd-trace-py/tests/datastreams/schemas/__init__.py
similarity index 100%
rename from tests/datastreams/schemas/__init__.py
rename to dd-trace-py/tests/datastreams/schemas/__init__.py
diff --git a/tests/datastreams/schemas/test_schema_builder.py b/dd-trace-py/tests/datastreams/schemas/test_schema_builder.py
similarity index 100%
rename from tests/datastreams/schemas/test_schema_builder.py
rename to dd-trace-py/tests/datastreams/schemas/test_schema_builder.py
diff --git a/tests/datastreams/schemas/test_schema_sampler.py b/dd-trace-py/tests/datastreams/schemas/test_schema_sampler.py
similarity index 100%
rename from tests/datastreams/schemas/test_schema_sampler.py
rename to dd-trace-py/tests/datastreams/schemas/test_schema_sampler.py
diff --git a/tests/datastreams/test_botocore.py b/dd-trace-py/tests/datastreams/test_botocore.py
similarity index 100%
rename from tests/datastreams/test_botocore.py
rename to dd-trace-py/tests/datastreams/test_botocore.py
diff --git a/tests/datastreams/test_encoding.py b/dd-trace-py/tests/datastreams/test_encoding.py
similarity index 100%
rename from tests/datastreams/test_encoding.py
rename to dd-trace-py/tests/datastreams/test_encoding.py
diff --git a/tests/datastreams/test_processor.py b/dd-trace-py/tests/datastreams/test_processor.py
similarity index 100%
rename from tests/datastreams/test_processor.py
rename to dd-trace-py/tests/datastreams/test_processor.py
diff --git a/tests/datastreams/test_public_api.py b/dd-trace-py/tests/datastreams/test_public_api.py
similarity index 100%
rename from tests/datastreams/test_public_api.py
rename to dd-trace-py/tests/datastreams/test_public_api.py
diff --git a/tests/ddtrace_run.py b/dd-trace-py/tests/ddtrace_run.py
similarity index 100%
rename from tests/ddtrace_run.py
rename to dd-trace-py/tests/ddtrace_run.py
diff --git a/tests/debugging/.coveragerc b/dd-trace-py/tests/debugging/.coveragerc
similarity index 100%
rename from tests/debugging/.coveragerc
rename to dd-trace-py/tests/debugging/.coveragerc
diff --git a/tests/debugging/__init__.py b/dd-trace-py/tests/debugging/__init__.py
similarity index 100%
rename from tests/debugging/__init__.py
rename to dd-trace-py/tests/debugging/__init__.py
diff --git a/tests/debugging/conftest.py b/dd-trace-py/tests/debugging/conftest.py
similarity index 100%
rename from tests/debugging/conftest.py
rename to dd-trace-py/tests/debugging/conftest.py
diff --git a/tests/debugging/exception/__init__.py b/dd-trace-py/tests/debugging/exception/__init__.py
similarity index 100%
rename from tests/debugging/exception/__init__.py
rename to dd-trace-py/tests/debugging/exception/__init__.py
diff --git a/tests/debugging/exception/test_replay.py b/dd-trace-py/tests/debugging/exception/test_replay.py
similarity index 100%
rename from tests/debugging/exception/test_replay.py
rename to dd-trace-py/tests/debugging/exception/test_replay.py
diff --git a/tests/debugging/exploration/__init__.py b/dd-trace-py/tests/debugging/exploration/__init__.py
similarity index 100%
rename from tests/debugging/exploration/__init__.py
rename to dd-trace-py/tests/debugging/exploration/__init__.py
diff --git a/tests/debugging/exploration/_config.py b/dd-trace-py/tests/debugging/exploration/_config.py
similarity index 100%
rename from tests/debugging/exploration/_config.py
rename to dd-trace-py/tests/debugging/exploration/_config.py
diff --git a/tests/debugging/exploration/_coverage.py b/dd-trace-py/tests/debugging/exploration/_coverage.py
similarity index 100%
rename from tests/debugging/exploration/_coverage.py
rename to dd-trace-py/tests/debugging/exploration/_coverage.py
diff --git a/tests/debugging/exploration/_profiler.py b/dd-trace-py/tests/debugging/exploration/_profiler.py
similarity index 100%
rename from tests/debugging/exploration/_profiler.py
rename to dd-trace-py/tests/debugging/exploration/_profiler.py
diff --git a/tests/debugging/exploration/debugger.py b/dd-trace-py/tests/debugging/exploration/debugger.py
similarity index 100%
rename from tests/debugging/exploration/debugger.py
rename to dd-trace-py/tests/debugging/exploration/debugger.py
diff --git a/tests/debugging/exploration/output.py b/dd-trace-py/tests/debugging/exploration/output.py
similarity index 100%
rename from tests/debugging/exploration/output.py
rename to dd-trace-py/tests/debugging/exploration/output.py
diff --git a/tests/debugging/exploration/preload.py b/dd-trace-py/tests/debugging/exploration/preload.py
similarity index 100%
rename from tests/debugging/exploration/preload.py
rename to dd-trace-py/tests/debugging/exploration/preload.py
diff --git a/tests/debugging/exploration/pytest/exploration.py b/dd-trace-py/tests/debugging/exploration/pytest/exploration.py
similarity index 100%
rename from tests/debugging/exploration/pytest/exploration.py
rename to dd-trace-py/tests/debugging/exploration/pytest/exploration.py
diff --git a/tests/debugging/exploration/sitecustomize.py b/dd-trace-py/tests/debugging/exploration/sitecustomize.py
similarity index 100%
rename from tests/debugging/exploration/sitecustomize.py
rename to dd-trace-py/tests/debugging/exploration/sitecustomize.py
diff --git a/tests/debugging/exploration/test_bootstrap.py b/dd-trace-py/tests/debugging/exploration/test_bootstrap.py
similarity index 100%
rename from tests/debugging/exploration/test_bootstrap.py
rename to dd-trace-py/tests/debugging/exploration/test_bootstrap.py
diff --git a/tests/debugging/exploration/utils.py b/dd-trace-py/tests/debugging/exploration/utils.py
similarity index 100%
rename from tests/debugging/exploration/utils.py
rename to dd-trace-py/tests/debugging/exploration/utils.py
diff --git a/tests/debugging/function/__init__.py b/dd-trace-py/tests/debugging/function/__init__.py
similarity index 100%
rename from tests/debugging/function/__init__.py
rename to dd-trace-py/tests/debugging/function/__init__.py
diff --git a/tests/debugging/function/test_discovery.py b/dd-trace-py/tests/debugging/function/test_discovery.py
similarity index 100%
rename from tests/debugging/function/test_discovery.py
rename to dd-trace-py/tests/debugging/function/test_discovery.py
diff --git a/tests/debugging/function/test_store.py b/dd-trace-py/tests/debugging/function/test_store.py
similarity index 100%
rename from tests/debugging/function/test_store.py
rename to dd-trace-py/tests/debugging/function/test_store.py
diff --git a/tests/debugging/live/__init__.py b/dd-trace-py/tests/debugging/live/__init__.py
similarity index 100%
rename from tests/debugging/live/__init__.py
rename to dd-trace-py/tests/debugging/live/__init__.py
diff --git a/tests/debugging/live/test_live_debugger.py b/dd-trace-py/tests/debugging/live/test_live_debugger.py
similarity index 100%
rename from tests/debugging/live/test_live_debugger.py
rename to dd-trace-py/tests/debugging/live/test_live_debugger.py
diff --git a/tests/debugging/mocking.py b/dd-trace-py/tests/debugging/mocking.py
similarity index 100%
rename from tests/debugging/mocking.py
rename to dd-trace-py/tests/debugging/mocking.py
diff --git a/tests/debugging/origin/test_span.py b/dd-trace-py/tests/debugging/origin/test_span.py
similarity index 100%
rename from tests/debugging/origin/test_span.py
rename to dd-trace-py/tests/debugging/origin/test_span.py
diff --git a/tests/debugging/probe/__init__.py b/dd-trace-py/tests/debugging/probe/__init__.py
similarity index 100%
rename from tests/debugging/probe/__init__.py
rename to dd-trace-py/tests/debugging/probe/__init__.py
diff --git a/tests/debugging/probe/test_model.py b/dd-trace-py/tests/debugging/probe/test_model.py
similarity index 100%
rename from tests/debugging/probe/test_model.py
rename to dd-trace-py/tests/debugging/probe/test_model.py
diff --git a/tests/debugging/probe/test_registry.py b/dd-trace-py/tests/debugging/probe/test_registry.py
similarity index 100%
rename from tests/debugging/probe/test_registry.py
rename to dd-trace-py/tests/debugging/probe/test_registry.py
diff --git a/tests/debugging/probe/test_remoteconfig.py b/dd-trace-py/tests/debugging/probe/test_remoteconfig.py
similarity index 100%
rename from tests/debugging/probe/test_remoteconfig.py
rename to dd-trace-py/tests/debugging/probe/test_remoteconfig.py
diff --git a/tests/debugging/probe/test_status.py b/dd-trace-py/tests/debugging/probe/test_status.py
similarity index 100%
rename from tests/debugging/probe/test_status.py
rename to dd-trace-py/tests/debugging/probe/test_status.py
diff --git a/tests/debugging/run_module/__init__.py b/dd-trace-py/tests/debugging/run_module/__init__.py
similarity index 100%
rename from tests/debugging/run_module/__init__.py
rename to dd-trace-py/tests/debugging/run_module/__init__.py
diff --git a/tests/debugging/run_module/preload.py b/dd-trace-py/tests/debugging/run_module/preload.py
similarity index 100%
rename from tests/debugging/run_module/preload.py
rename to dd-trace-py/tests/debugging/run_module/preload.py
diff --git a/tests/debugging/run_module/sitecustomize.py b/dd-trace-py/tests/debugging/run_module/sitecustomize.py
similarity index 100%
rename from tests/debugging/run_module/sitecustomize.py
rename to dd-trace-py/tests/debugging/run_module/sitecustomize.py
diff --git a/tests/debugging/run_module/target.py b/dd-trace-py/tests/debugging/run_module/target.py
similarity index 100%
rename from tests/debugging/run_module/target.py
rename to dd-trace-py/tests/debugging/run_module/target.py
diff --git a/tests/debugging/signal/__init__.py b/dd-trace-py/tests/debugging/signal/__init__.py
similarity index 100%
rename from tests/debugging/signal/__init__.py
rename to dd-trace-py/tests/debugging/signal/__init__.py
diff --git a/tests/debugging/signal/test_collector.py b/dd-trace-py/tests/debugging/signal/test_collector.py
similarity index 100%
rename from tests/debugging/signal/test_collector.py
rename to dd-trace-py/tests/debugging/signal/test_collector.py
diff --git a/tests/debugging/signal/test_model.py b/dd-trace-py/tests/debugging/signal/test_model.py
similarity index 100%
rename from tests/debugging/signal/test_model.py
rename to dd-trace-py/tests/debugging/signal/test_model.py
diff --git a/tests/debugging/suitespec.yml b/dd-trace-py/tests/debugging/suitespec.yml
similarity index 100%
rename from tests/debugging/suitespec.yml
rename to dd-trace-py/tests/debugging/suitespec.yml
diff --git a/tests/debugging/test_api.py b/dd-trace-py/tests/debugging/test_api.py
similarity index 100%
rename from tests/debugging/test_api.py
rename to dd-trace-py/tests/debugging/test_api.py
diff --git a/tests/debugging/test_config.py b/dd-trace-py/tests/debugging/test_config.py
similarity index 100%
rename from tests/debugging/test_config.py
rename to dd-trace-py/tests/debugging/test_config.py
diff --git a/tests/debugging/test_debugger.py b/dd-trace-py/tests/debugging/test_debugger.py
similarity index 100%
rename from tests/debugging/test_debugger.py
rename to dd-trace-py/tests/debugging/test_debugger.py
diff --git a/tests/debugging/test_debugger_span_decoration.py b/dd-trace-py/tests/debugging/test_debugger_span_decoration.py
similarity index 100%
rename from tests/debugging/test_debugger_span_decoration.py
rename to dd-trace-py/tests/debugging/test_debugger_span_decoration.py
diff --git a/tests/debugging/test_encoding.py b/dd-trace-py/tests/debugging/test_encoding.py
similarity index 100%
rename from tests/debugging/test_encoding.py
rename to dd-trace-py/tests/debugging/test_encoding.py
diff --git a/tests/debugging/test_expressions.py b/dd-trace-py/tests/debugging/test_expressions.py
similarity index 100%
rename from tests/debugging/test_expressions.py
rename to dd-trace-py/tests/debugging/test_expressions.py
diff --git a/tests/debugging/test_safety.py b/dd-trace-py/tests/debugging/test_safety.py
similarity index 100%
rename from tests/debugging/test_safety.py
rename to dd-trace-py/tests/debugging/test_safety.py
diff --git a/tests/debugging/test_session.py b/dd-trace-py/tests/debugging/test_session.py
similarity index 100%
rename from tests/debugging/test_session.py
rename to dd-trace-py/tests/debugging/test_session.py
diff --git a/tests/debugging/test_uploader.py b/dd-trace-py/tests/debugging/test_uploader.py
similarity index 100%
rename from tests/debugging/test_uploader.py
rename to dd-trace-py/tests/debugging/test_uploader.py
diff --git a/tests/debugging/utils.py b/dd-trace-py/tests/debugging/utils.py
similarity index 100%
rename from tests/debugging/utils.py
rename to dd-trace-py/tests/debugging/utils.py
diff --git a/tests/errortracking/__init__.py b/dd-trace-py/tests/errortracking/__init__.py
similarity index 100%
rename from tests/errortracking/__init__.py
rename to dd-trace-py/tests/errortracking/__init__.py
diff --git a/tests/errortracking/_test_functions.py b/dd-trace-py/tests/errortracking/_test_functions.py
similarity index 100%
rename from tests/errortracking/_test_functions.py
rename to dd-trace-py/tests/errortracking/_test_functions.py
diff --git a/tests/errortracking/module/sample_module.py b/dd-trace-py/tests/errortracking/module/sample_module.py
similarity index 100%
rename from tests/errortracking/module/sample_module.py
rename to dd-trace-py/tests/errortracking/module/sample_module.py
diff --git a/tests/errortracking/module/submodule/__init__.py b/dd-trace-py/tests/errortracking/module/submodule/__init__.py
similarity index 100%
rename from tests/errortracking/module/submodule/__init__.py
rename to dd-trace-py/tests/errortracking/module/submodule/__init__.py
diff --git a/tests/errortracking/module/submodule/sample_submodule_1.py b/dd-trace-py/tests/errortracking/module/submodule/sample_submodule_1.py
similarity index 100%
rename from tests/errortracking/module/submodule/sample_submodule_1.py
rename to dd-trace-py/tests/errortracking/module/submodule/sample_submodule_1.py
diff --git a/tests/errortracking/module/submodule/sample_submodule_2.py b/dd-trace-py/tests/errortracking/module/submodule/sample_submodule_2.py
similarity index 100%
rename from tests/errortracking/module/submodule/sample_submodule_2.py
rename to dd-trace-py/tests/errortracking/module/submodule/sample_submodule_2.py
diff --git a/tests/errortracking/suitespec.yml b/dd-trace-py/tests/errortracking/suitespec.yml
similarity index 100%
rename from tests/errortracking/suitespec.yml
rename to dd-trace-py/tests/errortracking/suitespec.yml
diff --git a/tests/errortracking/test_handled_exceptions.py b/dd-trace-py/tests/errortracking/test_handled_exceptions.py
similarity index 100%
rename from tests/errortracking/test_handled_exceptions.py
rename to dd-trace-py/tests/errortracking/test_handled_exceptions.py
diff --git a/tests/errortracking/test_handled_exceptions_by_bytecode.py b/dd-trace-py/tests/errortracking/test_handled_exceptions_by_bytecode.py
similarity index 100%
rename from tests/errortracking/test_handled_exceptions_by_bytecode.py
rename to dd-trace-py/tests/errortracking/test_handled_exceptions_by_bytecode.py
diff --git a/tests/errortracking/third_party/numpy.py b/dd-trace-py/tests/errortracking/third_party/numpy.py
similarity index 100%
rename from tests/errortracking/third_party/numpy.py
rename to dd-trace-py/tests/errortracking/third_party/numpy.py
diff --git a/tests/errortracking/third_party/pyproject.toml b/dd-trace-py/tests/errortracking/third_party/pyproject.toml
similarity index 100%
rename from tests/errortracking/third_party/pyproject.toml
rename to dd-trace-py/tests/errortracking/third_party/pyproject.toml
diff --git a/tests/errortracking/third_party/setup.py b/dd-trace-py/tests/errortracking/third_party/setup.py
similarity index 100%
rename from tests/errortracking/third_party/setup.py
rename to dd-trace-py/tests/errortracking/third_party/setup.py
diff --git a/tests/integration/__init__.py b/dd-trace-py/tests/integration/__init__.py
similarity index 100%
rename from tests/integration/__init__.py
rename to dd-trace-py/tests/integration/__init__.py
diff --git a/tests/integration/hello.py b/dd-trace-py/tests/integration/hello.py
similarity index 100%
rename from tests/integration/hello.py
rename to dd-trace-py/tests/integration/hello.py
diff --git a/tests/integration/test_context_snapshots.py b/dd-trace-py/tests/integration/test_context_snapshots.py
similarity index 100%
rename from tests/integration/test_context_snapshots.py
rename to dd-trace-py/tests/integration/test_context_snapshots.py
diff --git a/tests/integration/test_debug.py b/dd-trace-py/tests/integration/test_debug.py
similarity index 100%
rename from tests/integration/test_debug.py
rename to dd-trace-py/tests/integration/test_debug.py
diff --git a/tests/integration/test_encoding.py b/dd-trace-py/tests/integration/test_encoding.py
similarity index 100%
rename from tests/integration/test_encoding.py
rename to dd-trace-py/tests/integration/test_encoding.py
diff --git a/tests/integration/test_integration.py b/dd-trace-py/tests/integration/test_integration.py
similarity index 100%
rename from tests/integration/test_integration.py
rename to dd-trace-py/tests/integration/test_integration.py
diff --git a/tests/integration/test_integration_civisibility.py b/dd-trace-py/tests/integration/test_integration_civisibility.py
similarity index 100%
rename from tests/integration/test_integration_civisibility.py
rename to dd-trace-py/tests/integration/test_integration_civisibility.py
diff --git a/tests/integration/test_integration_snapshots.py b/dd-trace-py/tests/integration/test_integration_snapshots.py
similarity index 100%
rename from tests/integration/test_integration_snapshots.py
rename to dd-trace-py/tests/integration/test_integration_snapshots.py
diff --git a/tests/integration/test_priority_sampling.py b/dd-trace-py/tests/integration/test_priority_sampling.py
similarity index 100%
rename from tests/integration/test_priority_sampling.py
rename to dd-trace-py/tests/integration/test_priority_sampling.py
diff --git a/tests/integration/test_propagation.py b/dd-trace-py/tests/integration/test_propagation.py
similarity index 100%
rename from tests/integration/test_propagation.py
rename to dd-trace-py/tests/integration/test_propagation.py
diff --git a/tests/integration/test_sampling.py b/dd-trace-py/tests/integration/test_sampling.py
similarity index 100%
rename from tests/integration/test_sampling.py
rename to dd-trace-py/tests/integration/test_sampling.py
diff --git a/tests/integration/test_settings.py b/dd-trace-py/tests/integration/test_settings.py
similarity index 100%
rename from tests/integration/test_settings.py
rename to dd-trace-py/tests/integration/test_settings.py
diff --git a/tests/integration/test_trace_stats.py b/dd-trace-py/tests/integration/test_trace_stats.py
similarity index 100%
rename from tests/integration/test_trace_stats.py
rename to dd-trace-py/tests/integration/test_trace_stats.py
diff --git a/tests/integration/test_tracemethods.py b/dd-trace-py/tests/integration/test_tracemethods.py
similarity index 100%
rename from tests/integration/test_tracemethods.py
rename to dd-trace-py/tests/integration/test_tracemethods.py
diff --git a/tests/integration/utils.py b/dd-trace-py/tests/integration/utils.py
similarity index 100%
rename from tests/integration/utils.py
rename to dd-trace-py/tests/integration/utils.py
diff --git a/tests/internal/__init__.py b/dd-trace-py/tests/internal/__init__.py
similarity index 100%
rename from tests/internal/__init__.py
rename to dd-trace-py/tests/internal/__init__.py
diff --git a/tests/internal/bytecode_injection/framework_injection/__init__.py b/dd-trace-py/tests/internal/bytecode_injection/framework_injection/__init__.py
similarity index 100%
rename from tests/internal/bytecode_injection/framework_injection/__init__.py
rename to dd-trace-py/tests/internal/bytecode_injection/framework_injection/__init__.py
diff --git a/tests/internal/bytecode_injection/framework_injection/_bytecode_injection.py b/dd-trace-py/tests/internal/bytecode_injection/framework_injection/_bytecode_injection.py
similarity index 100%
rename from tests/internal/bytecode_injection/framework_injection/_bytecode_injection.py
rename to dd-trace-py/tests/internal/bytecode_injection/framework_injection/_bytecode_injection.py
diff --git a/tests/internal/bytecode_injection/framework_injection/_config.py b/dd-trace-py/tests/internal/bytecode_injection/framework_injection/_config.py
similarity index 100%
rename from tests/internal/bytecode_injection/framework_injection/_config.py
rename to dd-trace-py/tests/internal/bytecode_injection/framework_injection/_config.py
diff --git a/tests/internal/bytecode_injection/framework_injection/output.py b/dd-trace-py/tests/internal/bytecode_injection/framework_injection/output.py
similarity index 100%
rename from tests/internal/bytecode_injection/framework_injection/output.py
rename to dd-trace-py/tests/internal/bytecode_injection/framework_injection/output.py
diff --git a/tests/internal/bytecode_injection/framework_injection/preload.py b/dd-trace-py/tests/internal/bytecode_injection/framework_injection/preload.py
similarity index 100%
rename from tests/internal/bytecode_injection/framework_injection/preload.py
rename to dd-trace-py/tests/internal/bytecode_injection/framework_injection/preload.py
diff --git a/tests/internal/bytecode_injection/framework_injection/sitecustomize.py b/dd-trace-py/tests/internal/bytecode_injection/framework_injection/sitecustomize.py
similarity index 100%
rename from tests/internal/bytecode_injection/framework_injection/sitecustomize.py
rename to dd-trace-py/tests/internal/bytecode_injection/framework_injection/sitecustomize.py
diff --git a/tests/internal/bytecode_injection/framework_injection/test_bootstrap.py b/dd-trace-py/tests/internal/bytecode_injection/framework_injection/test_bootstrap.py
similarity index 100%
rename from tests/internal/bytecode_injection/framework_injection/test_bootstrap.py
rename to dd-trace-py/tests/internal/bytecode_injection/framework_injection/test_bootstrap.py
diff --git a/tests/internal/bytecode_injection/framework_injection/utils.py b/dd-trace-py/tests/internal/bytecode_injection/framework_injection/utils.py
similarity index 100%
rename from tests/internal/bytecode_injection/framework_injection/utils.py
rename to dd-trace-py/tests/internal/bytecode_injection/framework_injection/utils.py
diff --git a/tests/internal/bytecode_injection/test_core.py b/dd-trace-py/tests/internal/bytecode_injection/test_core.py
similarity index 100%
rename from tests/internal/bytecode_injection/test_core.py
rename to dd-trace-py/tests/internal/bytecode_injection/test_core.py
diff --git a/tests/internal/bytecode_injection/test_injection.py b/dd-trace-py/tests/internal/bytecode_injection/test_injection.py
similarity index 100%
rename from tests/internal/bytecode_injection/test_injection.py
rename to dd-trace-py/tests/internal/bytecode_injection/test_injection.py
diff --git a/tests/internal/events/test_base_events.py b/dd-trace-py/tests/internal/events/test_base_events.py
similarity index 100%
rename from tests/internal/events/test_base_events.py
rename to dd-trace-py/tests/internal/events/test_base_events.py
diff --git a/tests/internal/events/test_context_events.py b/dd-trace-py/tests/internal/events/test_context_events.py
similarity index 100%
rename from tests/internal/events/test_context_events.py
rename to dd-trace-py/tests/internal/events/test_context_events.py
diff --git a/tests/internal/lazy.py b/dd-trace-py/tests/internal/lazy.py
similarity index 100%
rename from tests/internal/lazy.py
rename to dd-trace-py/tests/internal/lazy.py
diff --git a/tests/internal/lazy.pyi b/dd-trace-py/tests/internal/lazy.pyi
similarity index 100%
rename from tests/internal/lazy.pyi
rename to dd-trace-py/tests/internal/lazy.pyi
diff --git a/tests/internal/namespace_test/ns_module.py b/dd-trace-py/tests/internal/namespace_test/ns_module.py
similarity index 100%
rename from tests/internal/namespace_test/ns_module.py
rename to dd-trace-py/tests/internal/namespace_test/ns_module.py
diff --git a/tests/internal/peer_service/__init__.py b/dd-trace-py/tests/internal/peer_service/__init__.py
similarity index 100%
rename from tests/internal/peer_service/__init__.py
rename to dd-trace-py/tests/internal/peer_service/__init__.py
diff --git a/tests/internal/peer_service/test_processor.py b/dd-trace-py/tests/internal/peer_service/test_processor.py
similarity index 100%
rename from tests/internal/peer_service/test_processor.py
rename to dd-trace-py/tests/internal/peer_service/test_processor.py
diff --git a/tests/internal/remoteconfig/__init__.py b/dd-trace-py/tests/internal/remoteconfig/__init__.py
similarity index 100%
rename from tests/internal/remoteconfig/__init__.py
rename to dd-trace-py/tests/internal/remoteconfig/__init__.py
diff --git a/tests/internal/remoteconfig/rc_mocked_responses_asm_features.json b/dd-trace-py/tests/internal/remoteconfig/rc_mocked_responses_asm_features.json
similarity index 100%
rename from tests/internal/remoteconfig/rc_mocked_responses_asm_features.json
rename to dd-trace-py/tests/internal/remoteconfig/rc_mocked_responses_asm_features.json
diff --git a/tests/internal/remoteconfig/test_remoteconfig.py b/dd-trace-py/tests/internal/remoteconfig/test_remoteconfig.py
similarity index 100%
rename from tests/internal/remoteconfig/test_remoteconfig.py
rename to dd-trace-py/tests/internal/remoteconfig/test_remoteconfig.py
diff --git a/tests/internal/remoteconfig/test_remoteconfig_appsec_client.py b/dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_appsec_client.py
similarity index 100%
rename from tests/internal/remoteconfig/test_remoteconfig_appsec_client.py
rename to dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_appsec_client.py
diff --git a/tests/internal/remoteconfig/test_remoteconfig_appsec_client_e2e.py b/dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_appsec_client_e2e.py
similarity index 100%
rename from tests/internal/remoteconfig/test_remoteconfig_appsec_client_e2e.py
rename to dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_appsec_client_e2e.py
diff --git a/tests/internal/remoteconfig/test_remoteconfig_connector.py b/dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_connector.py
similarity index 100%
rename from tests/internal/remoteconfig/test_remoteconfig_connector.py
rename to dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_connector.py
diff --git a/tests/internal/remoteconfig/test_remoteconfig_publisher.py b/dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_publisher.py
similarity index 100%
rename from tests/internal/remoteconfig/test_remoteconfig_publisher.py
rename to dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_publisher.py
diff --git a/tests/internal/remoteconfig/test_remoteconfig_subscriber.py b/dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_subscriber.py
similarity index 100%
rename from tests/internal/remoteconfig/test_remoteconfig_subscriber.py
rename to dd-trace-py/tests/internal/remoteconfig/test_remoteconfig_subscriber.py
diff --git a/tests/internal/remoteconfig/utils.py b/dd-trace-py/tests/internal/remoteconfig/utils.py
similarity index 100%
rename from tests/internal/remoteconfig/utils.py
rename to dd-trace-py/tests/internal/remoteconfig/utils.py
diff --git a/tests/internal/service_name/__init__.py b/dd-trace-py/tests/internal/service_name/__init__.py
similarity index 100%
rename from tests/internal/service_name/__init__.py
rename to dd-trace-py/tests/internal/service_name/__init__.py
diff --git a/tests/internal/service_name/test_extra_services_names.py b/dd-trace-py/tests/internal/service_name/test_extra_services_names.py
similarity index 100%
rename from tests/internal/service_name/test_extra_services_names.py
rename to dd-trace-py/tests/internal/service_name/test_extra_services_names.py
diff --git a/tests/internal/service_name/test_imports.py b/dd-trace-py/tests/internal/service_name/test_imports.py
similarity index 100%
rename from tests/internal/service_name/test_imports.py
rename to dd-trace-py/tests/internal/service_name/test_imports.py
diff --git a/tests/internal/service_name/test_inferred_base_service.py b/dd-trace-py/tests/internal/service_name/test_inferred_base_service.py
similarity index 100%
rename from tests/internal/service_name/test_inferred_base_service.py
rename to dd-trace-py/tests/internal/service_name/test_inferred_base_service.py
diff --git a/tests/internal/service_name/test_processor.py b/dd-trace-py/tests/internal/service_name/test_processor.py
similarity index 100%
rename from tests/internal/service_name/test_processor.py
rename to dd-trace-py/tests/internal/service_name/test_processor.py
diff --git a/tests/internal/side_effect_module.py b/dd-trace-py/tests/internal/side_effect_module.py
similarity index 100%
rename from tests/internal/side_effect_module.py
rename to dd-trace-py/tests/internal/side_effect_module.py
diff --git a/tests/internal/sitecustomize.py b/dd-trace-py/tests/internal/sitecustomize.py
similarity index 100%
rename from tests/internal/sitecustomize.py
rename to dd-trace-py/tests/internal/sitecustomize.py
diff --git a/tests/internal/symbol_db/__init__.py b/dd-trace-py/tests/internal/symbol_db/__init__.py
similarity index 100%
rename from tests/internal/symbol_db/__init__.py
rename to dd-trace-py/tests/internal/symbol_db/__init__.py
diff --git a/tests/internal/symbol_db/test_config.py b/dd-trace-py/tests/internal/symbol_db/test_config.py
similarity index 100%
rename from tests/internal/symbol_db/test_config.py
rename to dd-trace-py/tests/internal/symbol_db/test_config.py
diff --git a/tests/internal/symbol_db/test_symbols.py b/dd-trace-py/tests/internal/symbol_db/test_symbols.py
similarity index 100%
rename from tests/internal/symbol_db/test_symbols.py
rename to dd-trace-py/tests/internal/symbol_db/test_symbols.py
diff --git a/tests/internal/test_assembly.py b/dd-trace-py/tests/internal/test_assembly.py
similarity index 100%
rename from tests/internal/test_assembly.py
rename to dd-trace-py/tests/internal/test_assembly.py
diff --git a/tests/internal/test_auto.py b/dd-trace-py/tests/internal/test_auto.py
similarity index 100%
rename from tests/internal/test_auto.py
rename to dd-trace-py/tests/internal/test_auto.py
diff --git a/tests/internal/test_codeowners.py b/dd-trace-py/tests/internal/test_codeowners.py
similarity index 100%
rename from tests/internal/test_codeowners.py
rename to dd-trace-py/tests/internal/test_codeowners.py
diff --git a/tests/internal/test_context_events_api.py b/dd-trace-py/tests/internal/test_context_events_api.py
similarity index 100%
rename from tests/internal/test_context_events_api.py
rename to dd-trace-py/tests/internal/test_context_events_api.py
diff --git a/tests/internal/test_database_monitoring.py b/dd-trace-py/tests/internal/test_database_monitoring.py
similarity index 100%
rename from tests/internal/test_database_monitoring.py
rename to dd-trace-py/tests/internal/test_database_monitoring.py
diff --git a/tests/internal/test_endpoints.py b/dd-trace-py/tests/internal/test_endpoints.py
similarity index 100%
rename from tests/internal/test_endpoints.py
rename to dd-trace-py/tests/internal/test_endpoints.py
diff --git a/tests/internal/test_env.py b/dd-trace-py/tests/internal/test_env.py
similarity index 100%
rename from tests/internal/test_env.py
rename to dd-trace-py/tests/internal/test_env.py
diff --git a/tests/internal/test_forksafe.py b/dd-trace-py/tests/internal/test_forksafe.py
similarity index 100%
rename from tests/internal/test_forksafe.py
rename to dd-trace-py/tests/internal/test_forksafe.py
diff --git a/tests/internal/test_glob_matcher.py b/dd-trace-py/tests/internal/test_glob_matcher.py
similarity index 100%
rename from tests/internal/test_glob_matcher.py
rename to dd-trace-py/tests/internal/test_glob_matcher.py
diff --git a/tests/internal/test_manual_context_events_api.py b/dd-trace-py/tests/internal/test_manual_context_events_api.py
similarity index 100%
rename from tests/internal/test_manual_context_events_api.py
rename to dd-trace-py/tests/internal/test_manual_context_events_api.py
diff --git a/tests/internal/test_metrics.py b/dd-trace-py/tests/internal/test_metrics.py
similarity index 100%
rename from tests/internal/test_metrics.py
rename to dd-trace-py/tests/internal/test_metrics.py
diff --git a/tests/internal/test_module.py b/dd-trace-py/tests/internal/test_module.py
similarity index 100%
rename from tests/internal/test_module.py
rename to dd-trace-py/tests/internal/test_module.py
diff --git a/tests/internal/test_native.py b/dd-trace-py/tests/internal/test_native.py
similarity index 100%
rename from tests/internal/test_native.py
rename to dd-trace-py/tests/internal/test_native.py
diff --git a/tests/internal/test_packages.py b/dd-trace-py/tests/internal/test_packages.py
similarity index 100%
rename from tests/internal/test_packages.py
rename to dd-trace-py/tests/internal/test_packages.py
diff --git a/tests/internal/test_periodic.py b/dd-trace-py/tests/internal/test_periodic.py
similarity index 100%
rename from tests/internal/test_periodic.py
rename to dd-trace-py/tests/internal/test_periodic.py
diff --git a/tests/internal/test_process_tags.py b/dd-trace-py/tests/internal/test_process_tags.py
similarity index 100%
rename from tests/internal/test_process_tags.py
rename to dd-trace-py/tests/internal/test_process_tags.py
diff --git a/tests/internal/test_products.py b/dd-trace-py/tests/internal/test_products.py
similarity index 100%
rename from tests/internal/test_products.py
rename to dd-trace-py/tests/internal/test_products.py
diff --git a/tests/internal/test_safety.py b/dd-trace-py/tests/internal/test_safety.py
similarity index 100%
rename from tests/internal/test_safety.py
rename to dd-trace-py/tests/internal/test_safety.py
diff --git a/tests/internal/test_serverless.py b/dd-trace-py/tests/internal/test_serverless.py
similarity index 100%
rename from tests/internal/test_serverless.py
rename to dd-trace-py/tests/internal/test_serverless.py
diff --git a/tests/internal/test_settings.py b/dd-trace-py/tests/internal/test_settings.py
similarity index 100%
rename from tests/internal/test_settings.py
rename to dd-trace-py/tests/internal/test_settings.py
diff --git a/tests/internal/test_subscribers.py b/dd-trace-py/tests/internal/test_subscribers.py
similarity index 100%
rename from tests/internal/test_subscribers.py
rename to dd-trace-py/tests/internal/test_subscribers.py
diff --git a/tests/internal/test_tracer_flare.py b/dd-trace-py/tests/internal/test_tracer_flare.py
similarity index 100%
rename from tests/internal/test_tracer_flare.py
rename to dd-trace-py/tests/internal/test_tracer_flare.py
diff --git a/tests/internal/test_tracer_flare_native.py b/dd-trace-py/tests/internal/test_tracer_flare_native.py
similarity index 100%
rename from tests/internal/test_tracer_flare_native.py
rename to dd-trace-py/tests/internal/test_tracer_flare_native.py
diff --git a/tests/internal/test_utils_http.py b/dd-trace-py/tests/internal/test_utils_http.py
similarity index 100%
rename from tests/internal/test_utils_http.py
rename to dd-trace-py/tests/internal/test_utils_http.py
diff --git a/tests/internal/test_utils_inspection.py b/dd-trace-py/tests/internal/test_utils_inspection.py
similarity index 100%
rename from tests/internal/test_utils_inspection.py
rename to dd-trace-py/tests/internal/test_utils_inspection.py
diff --git a/tests/internal/test_utils_retry.py b/dd-trace-py/tests/internal/test_utils_retry.py
similarity index 100%
rename from tests/internal/test_utils_retry.py
rename to dd-trace-py/tests/internal/test_utils_retry.py
diff --git a/tests/internal/test_utils_version.py b/dd-trace-py/tests/internal/test_utils_version.py
similarity index 100%
rename from tests/internal/test_utils_version.py
rename to dd-trace-py/tests/internal/test_utils_version.py
diff --git a/tests/internal/test_wrapping.py b/dd-trace-py/tests/internal/test_wrapping.py
similarity index 100%
rename from tests/internal/test_wrapping.py
rename to dd-trace-py/tests/internal/test_wrapping.py
diff --git a/tests/lib_injection/conftest.py b/dd-trace-py/tests/lib_injection/conftest.py
similarity index 100%
rename from tests/lib_injection/conftest.py
rename to dd-trace-py/tests/lib_injection/conftest.py
diff --git a/tests/lib_injection/test_denylist.py b/dd-trace-py/tests/lib_injection/test_denylist.py
similarity index 100%
rename from tests/lib_injection/test_denylist.py
rename to dd-trace-py/tests/lib_injection/test_denylist.py
diff --git a/tests/lib_injection/test_guardrails.py b/dd-trace-py/tests/lib_injection/test_guardrails.py
similarity index 100%
rename from tests/lib_injection/test_guardrails.py
rename to dd-trace-py/tests/lib_injection/test_guardrails.py
diff --git a/tests/llmobs/__init__.py b/dd-trace-py/tests/llmobs/__init__.py
similarity index 100%
rename from tests/llmobs/__init__.py
rename to dd-trace-py/tests/llmobs/__init__.py
diff --git a/tests/llmobs/_utils.py b/dd-trace-py/tests/llmobs/_utils.py
similarity index 100%
rename from tests/llmobs/_utils.py
rename to dd-trace-py/tests/llmobs/_utils.py
diff --git a/tests/llmobs/conftest.py b/dd-trace-py/tests/llmobs/conftest.py
similarity index 100%
rename from tests/llmobs/conftest.py
rename to dd-trace-py/tests/llmobs/conftest.py
diff --git a/tests/llmobs/static_files/empty.csv b/dd-trace-py/tests/llmobs/static_files/empty.csv
similarity index 100%
rename from tests/llmobs/static_files/empty.csv
rename to dd-trace-py/tests/llmobs/static_files/empty.csv
diff --git a/tests/llmobs/static_files/good_dataset.csv b/dd-trace-py/tests/llmobs/static_files/good_dataset.csv
similarity index 100%
rename from tests/llmobs/static_files/good_dataset.csv
rename to dd-trace-py/tests/llmobs/static_files/good_dataset.csv
diff --git a/tests/llmobs/static_files/good_dataset_pipe_separated.csv b/dd-trace-py/tests/llmobs/static_files/good_dataset_pipe_separated.csv
similarity index 100%
rename from tests/llmobs/static_files/good_dataset_pipe_separated.csv
rename to dd-trace-py/tests/llmobs/static_files/good_dataset_pipe_separated.csv
diff --git a/tests/llmobs/suitespec.yml b/dd-trace-py/tests/llmobs/suitespec.yml
similarity index 100%
rename from tests/llmobs/suitespec.yml
rename to dd-trace-py/tests/llmobs/suitespec.yml
diff --git a/tests/llmobs/test_builtin_evaluators.py b/dd-trace-py/tests/llmobs/test_builtin_evaluators.py
similarity index 100%
rename from tests/llmobs/test_builtin_evaluators.py
rename to dd-trace-py/tests/llmobs/test_builtin_evaluators.py
diff --git a/tests/llmobs/test_deep_eval_evaluators.py b/dd-trace-py/tests/llmobs/test_deep_eval_evaluators.py
similarity index 100%
rename from tests/llmobs/test_deep_eval_evaluators.py
rename to dd-trace-py/tests/llmobs/test_deep_eval_evaluators.py
diff --git a/tests/llmobs/test_evaluators.py b/dd-trace-py/tests/llmobs/test_evaluators.py
similarity index 100%
rename from tests/llmobs/test_evaluators.py
rename to dd-trace-py/tests/llmobs/test_evaluators.py
diff --git a/tests/llmobs/test_experiments.py b/dd-trace-py/tests/llmobs/test_experiments.py
similarity index 100%
rename from tests/llmobs/test_experiments.py
rename to dd-trace-py/tests/llmobs/test_experiments.py
diff --git a/tests/llmobs/test_integrations_utils.py b/dd-trace-py/tests/llmobs/test_integrations_utils.py
similarity index 100%
rename from tests/llmobs/test_integrations_utils.py
rename to dd-trace-py/tests/llmobs/test_integrations_utils.py
diff --git a/tests/llmobs/test_llm_judge.py b/dd-trace-py/tests/llmobs/test_llm_judge.py
similarity index 100%
rename from tests/llmobs/test_llm_judge.py
rename to dd-trace-py/tests/llmobs/test_llm_judge.py
diff --git a/tests/llmobs/test_llmobs.py b/dd-trace-py/tests/llmobs/test_llmobs.py
similarity index 100%
rename from tests/llmobs/test_llmobs.py
rename to dd-trace-py/tests/llmobs/test_llmobs.py
diff --git a/tests/llmobs/test_llmobs_decorators.py b/dd-trace-py/tests/llmobs/test_llmobs_decorators.py
similarity index 100%
rename from tests/llmobs/test_llmobs_decorators.py
rename to dd-trace-py/tests/llmobs/test_llmobs_decorators.py
diff --git a/tests/llmobs/test_llmobs_eval_metric_agent_writer.py b/dd-trace-py/tests/llmobs/test_llmobs_eval_metric_agent_writer.py
similarity index 100%
rename from tests/llmobs/test_llmobs_eval_metric_agent_writer.py
rename to dd-trace-py/tests/llmobs/test_llmobs_eval_metric_agent_writer.py
diff --git a/tests/llmobs/test_llmobs_eval_metric_agentless_writer.py b/dd-trace-py/tests/llmobs/test_llmobs_eval_metric_agentless_writer.py
similarity index 100%
rename from tests/llmobs/test_llmobs_eval_metric_agentless_writer.py
rename to dd-trace-py/tests/llmobs/test_llmobs_eval_metric_agentless_writer.py
diff --git a/tests/llmobs/test_llmobs_evaluator_runner.py b/dd-trace-py/tests/llmobs/test_llmobs_evaluator_runner.py
similarity index 100%
rename from tests/llmobs/test_llmobs_evaluator_runner.py
rename to dd-trace-py/tests/llmobs/test_llmobs_evaluator_runner.py
diff --git a/tests/llmobs/test_llmobs_integrations.py b/dd-trace-py/tests/llmobs/test_llmobs_integrations.py
similarity index 100%
rename from tests/llmobs/test_llmobs_integrations.py
rename to dd-trace-py/tests/llmobs/test_llmobs_integrations.py
diff --git a/tests/llmobs/test_llmobs_otel_evaluation.py b/dd-trace-py/tests/llmobs/test_llmobs_otel_evaluation.py
similarity index 100%
rename from tests/llmobs/test_llmobs_otel_evaluation.py
rename to dd-trace-py/tests/llmobs/test_llmobs_otel_evaluation.py
diff --git a/tests/llmobs/test_llmobs_rc.py b/dd-trace-py/tests/llmobs/test_llmobs_rc.py
similarity index 100%
rename from tests/llmobs/test_llmobs_rc.py
rename to dd-trace-py/tests/llmobs/test_llmobs_rc.py
diff --git a/tests/llmobs/test_llmobs_service.py b/dd-trace-py/tests/llmobs/test_llmobs_service.py
similarity index 100%
rename from tests/llmobs/test_llmobs_service.py
rename to dd-trace-py/tests/llmobs/test_llmobs_service.py
diff --git a/tests/llmobs/test_llmobs_span_agent_writer.py b/dd-trace-py/tests/llmobs/test_llmobs_span_agent_writer.py
similarity index 100%
rename from tests/llmobs/test_llmobs_span_agent_writer.py
rename to dd-trace-py/tests/llmobs/test_llmobs_span_agent_writer.py
diff --git a/tests/llmobs/test_llmobs_span_agentless_writer.py b/dd-trace-py/tests/llmobs/test_llmobs_span_agentless_writer.py
similarity index 100%
rename from tests/llmobs/test_llmobs_span_agentless_writer.py
rename to dd-trace-py/tests/llmobs/test_llmobs_span_agentless_writer.py
diff --git a/tests/llmobs/test_llmobs_span_encoder.py b/dd-trace-py/tests/llmobs/test_llmobs_span_encoder.py
similarity index 100%
rename from tests/llmobs/test_llmobs_span_encoder.py
rename to dd-trace-py/tests/llmobs/test_llmobs_span_encoder.py
diff --git a/tests/llmobs/test_llmobs_span_truncation.py b/dd-trace-py/tests/llmobs/test_llmobs_span_truncation.py
similarity index 100%
rename from tests/llmobs/test_llmobs_span_truncation.py
rename to dd-trace-py/tests/llmobs/test_llmobs_span_truncation.py
diff --git a/tests/llmobs/test_logger.py b/dd-trace-py/tests/llmobs/test_logger.py
similarity index 100%
rename from tests/llmobs/test_logger.py
rename to dd-trace-py/tests/llmobs/test_logger.py
diff --git a/tests/llmobs/test_prompts.py b/dd-trace-py/tests/llmobs/test_prompts.py
similarity index 100%
rename from tests/llmobs/test_prompts.py
rename to dd-trace-py/tests/llmobs/test_prompts.py
diff --git a/tests/llmobs/test_propagation.py b/dd-trace-py/tests/llmobs/test_propagation.py
similarity index 100%
rename from tests/llmobs/test_propagation.py
rename to dd-trace-py/tests/llmobs/test_propagation.py
diff --git a/tests/llmobs/test_pydantic_evaluators.py b/dd-trace-py/tests/llmobs/test_pydantic_evaluators.py
similarity index 100%
rename from tests/llmobs/test_pydantic_evaluators.py
rename to dd-trace-py/tests/llmobs/test_pydantic_evaluators.py
diff --git a/tests/llmobs/test_utils.py b/dd-trace-py/tests/llmobs/test_utils.py
similarity index 100%
rename from tests/llmobs/test_utils.py
rename to dd-trace-py/tests/llmobs/test_utils.py
diff --git a/tests/meta/__init__.py b/dd-trace-py/tests/meta/__init__.py
similarity index 100%
rename from tests/meta/__init__.py
rename to dd-trace-py/tests/meta/__init__.py
diff --git a/tests/meta/test_conftest.py b/dd-trace-py/tests/meta/test_conftest.py
similarity index 100%
rename from tests/meta/test_conftest.py
rename to dd-trace-py/tests/meta/test_conftest.py
diff --git a/tests/openfeature/__init__.py b/dd-trace-py/tests/openfeature/__init__.py
similarity index 100%
rename from tests/openfeature/__init__.py
rename to dd-trace-py/tests/openfeature/__init__.py
diff --git a/tests/openfeature/config_helpers.py b/dd-trace-py/tests/openfeature/config_helpers.py
similarity index 100%
rename from tests/openfeature/config_helpers.py
rename to dd-trace-py/tests/openfeature/config_helpers.py
diff --git a/tests/openfeature/fixtures/test-case-boolean-one-of-matches.json b/dd-trace-py/tests/openfeature/fixtures/test-case-boolean-one-of-matches.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-boolean-one-of-matches.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-boolean-one-of-matches.json
diff --git a/tests/openfeature/fixtures/test-case-comparator-operator-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-comparator-operator-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-comparator-operator-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-comparator-operator-flag.json
diff --git a/tests/openfeature/fixtures/test-case-disabled-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-disabled-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-disabled-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-disabled-flag.json
diff --git a/tests/openfeature/fixtures/test-case-kill-switch-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-kill-switch-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-kill-switch-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-kill-switch-flag.json
diff --git a/tests/openfeature/fixtures/test-case-new-user-onboarding-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-new-user-onboarding-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-new-user-onboarding-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-new-user-onboarding-flag.json
diff --git a/tests/openfeature/fixtures/test-case-no-allocations-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-no-allocations-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-no-allocations-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-no-allocations-flag.json
diff --git a/tests/openfeature/fixtures/test-case-null-operator-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-null-operator-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-null-operator-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-null-operator-flag.json
diff --git a/tests/openfeature/fixtures/test-case-numeric-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-numeric-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-numeric-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-numeric-flag.json
diff --git a/tests/openfeature/fixtures/test-case-numeric-one-of.json b/dd-trace-py/tests/openfeature/fixtures/test-case-numeric-one-of.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-numeric-one-of.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-numeric-one-of.json
diff --git a/tests/openfeature/fixtures/test-case-regex-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-regex-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-regex-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-regex-flag.json
diff --git a/tests/openfeature/fixtures/test-case-start-and-end-date-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-case-start-and-end-date-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-case-start-and-end-date-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-case-start-and-end-date-flag.json
diff --git a/tests/openfeature/fixtures/test-flag-that-does-not-exist.json b/dd-trace-py/tests/openfeature/fixtures/test-flag-that-does-not-exist.json
similarity index 100%
rename from tests/openfeature/fixtures/test-flag-that-does-not-exist.json
rename to dd-trace-py/tests/openfeature/fixtures/test-flag-that-does-not-exist.json
diff --git a/tests/openfeature/fixtures/test-json-config-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-json-config-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-json-config-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-json-config-flag.json
diff --git a/tests/openfeature/fixtures/test-no-allocations-flag.json b/dd-trace-py/tests/openfeature/fixtures/test-no-allocations-flag.json
similarity index 100%
rename from tests/openfeature/fixtures/test-no-allocations-flag.json
rename to dd-trace-py/tests/openfeature/fixtures/test-no-allocations-flag.json
diff --git a/tests/openfeature/fixtures/test-special-characters.json b/dd-trace-py/tests/openfeature/fixtures/test-special-characters.json
similarity index 100%
rename from tests/openfeature/fixtures/test-special-characters.json
rename to dd-trace-py/tests/openfeature/fixtures/test-special-characters.json
diff --git a/tests/openfeature/fixtures/test-string-with-special-characters.json b/dd-trace-py/tests/openfeature/fixtures/test-string-with-special-characters.json
similarity index 100%
rename from tests/openfeature/fixtures/test-string-with-special-characters.json
rename to dd-trace-py/tests/openfeature/fixtures/test-string-with-special-characters.json
diff --git a/tests/openfeature/flags-v1.json b/dd-trace-py/tests/openfeature/flags-v1.json
similarity index 100%
rename from tests/openfeature/flags-v1.json
rename to dd-trace-py/tests/openfeature/flags-v1.json
diff --git a/tests/openfeature/test_client_api.py b/dd-trace-py/tests/openfeature/test_client_api.py
similarity index 100%
rename from tests/openfeature/test_client_api.py
rename to dd-trace-py/tests/openfeature/test_client_api.py
diff --git a/tests/openfeature/test_exposure.py b/dd-trace-py/tests/openfeature/test_exposure.py
similarity index 100%
rename from tests/openfeature/test_exposure.py
rename to dd-trace-py/tests/openfeature/test_exposure.py
diff --git a/tests/openfeature/test_exposure_writer.py b/dd-trace-py/tests/openfeature/test_exposure_writer.py
similarity index 100%
rename from tests/openfeature/test_exposure_writer.py
rename to dd-trace-py/tests/openfeature/test_exposure_writer.py
diff --git a/tests/openfeature/test_flag_eval_metrics.py b/dd-trace-py/tests/openfeature/test_flag_eval_metrics.py
similarity index 100%
rename from tests/openfeature/test_flag_eval_metrics.py
rename to dd-trace-py/tests/openfeature/test_flag_eval_metrics.py
diff --git a/tests/openfeature/test_provider.py b/dd-trace-py/tests/openfeature/test_provider.py
similarity index 100%
rename from tests/openfeature/test_provider.py
rename to dd-trace-py/tests/openfeature/test_provider.py
diff --git a/tests/openfeature/test_provider_e2e.py b/dd-trace-py/tests/openfeature/test_provider_e2e.py
similarity index 100%
rename from tests/openfeature/test_provider_e2e.py
rename to dd-trace-py/tests/openfeature/test_provider_e2e.py
diff --git a/tests/openfeature/test_provider_env_var.py b/dd-trace-py/tests/openfeature/test_provider_env_var.py
similarity index 100%
rename from tests/openfeature/test_provider_env_var.py
rename to dd-trace-py/tests/openfeature/test_provider_env_var.py
diff --git a/tests/openfeature/test_provider_exposure.py b/dd-trace-py/tests/openfeature/test_provider_exposure.py
similarity index 100%
rename from tests/openfeature/test_provider_exposure.py
rename to dd-trace-py/tests/openfeature/test_provider_exposure.py
diff --git a/tests/openfeature/test_provider_fixtures.py b/dd-trace-py/tests/openfeature/test_provider_fixtures.py
similarity index 100%
rename from tests/openfeature/test_provider_fixtures.py
rename to dd-trace-py/tests/openfeature/test_provider_fixtures.py
diff --git a/tests/openfeature/test_provider_import.py b/dd-trace-py/tests/openfeature/test_provider_import.py
similarity index 100%
rename from tests/openfeature/test_provider_import.py
rename to dd-trace-py/tests/openfeature/test_provider_import.py
diff --git a/tests/openfeature/test_provider_status.py b/dd-trace-py/tests/openfeature/test_provider_status.py
similarity index 100%
rename from tests/openfeature/test_provider_status.py
rename to dd-trace-py/tests/openfeature/test_provider_status.py
diff --git a/tests/openfeature/test_remoteconfig.py b/dd-trace-py/tests/openfeature/test_remoteconfig.py
similarity index 100%
rename from tests/openfeature/test_remoteconfig.py
rename to dd-trace-py/tests/openfeature/test_remoteconfig.py
diff --git a/tests/opentelemetry/__init__.py b/dd-trace-py/tests/opentelemetry/__init__.py
similarity index 100%
rename from tests/opentelemetry/__init__.py
rename to dd-trace-py/tests/opentelemetry/__init__.py
diff --git a/tests/opentelemetry/conftest.py b/dd-trace-py/tests/opentelemetry/conftest.py
similarity index 100%
rename from tests/opentelemetry/conftest.py
rename to dd-trace-py/tests/opentelemetry/conftest.py
diff --git a/tests/opentelemetry/flask_app.py b/dd-trace-py/tests/opentelemetry/flask_app.py
similarity index 100%
rename from tests/opentelemetry/flask_app.py
rename to dd-trace-py/tests/opentelemetry/flask_app.py
diff --git a/tests/opentelemetry/test_config.py b/dd-trace-py/tests/opentelemetry/test_config.py
similarity index 100%
rename from tests/opentelemetry/test_config.py
rename to dd-trace-py/tests/opentelemetry/test_config.py
diff --git a/tests/opentelemetry/test_context.py b/dd-trace-py/tests/opentelemetry/test_context.py
similarity index 100%
rename from tests/opentelemetry/test_context.py
rename to dd-trace-py/tests/opentelemetry/test_context.py
diff --git a/tests/opentelemetry/test_logs.py b/dd-trace-py/tests/opentelemetry/test_logs.py
similarity index 100%
rename from tests/opentelemetry/test_logs.py
rename to dd-trace-py/tests/opentelemetry/test_logs.py
diff --git a/tests/opentelemetry/test_metrics.py b/dd-trace-py/tests/opentelemetry/test_metrics.py
similarity index 100%
rename from tests/opentelemetry/test_metrics.py
rename to dd-trace-py/tests/opentelemetry/test_metrics.py
diff --git a/tests/opentelemetry/test_otlp_trace.py b/dd-trace-py/tests/opentelemetry/test_otlp_trace.py
similarity index 100%
rename from tests/opentelemetry/test_otlp_trace.py
rename to dd-trace-py/tests/opentelemetry/test_otlp_trace.py
diff --git a/tests/opentelemetry/test_span.py b/dd-trace-py/tests/opentelemetry/test_span.py
similarity index 100%
rename from tests/opentelemetry/test_span.py
rename to dd-trace-py/tests/opentelemetry/test_span.py
diff --git a/tests/opentelemetry/test_trace.py b/dd-trace-py/tests/opentelemetry/test_trace.py
similarity index 100%
rename from tests/opentelemetry/test_trace.py
rename to dd-trace-py/tests/opentelemetry/test_trace.py
diff --git a/tests/profiling/__init__.py b/dd-trace-py/tests/profiling/__init__.py
similarity index 100%
rename from tests/profiling/__init__.py
rename to dd-trace-py/tests/profiling/__init__.py
diff --git a/tests/profiling/_test_multiprocessing.py b/dd-trace-py/tests/profiling/_test_multiprocessing.py
similarity index 100%
rename from tests/profiling/_test_multiprocessing.py
rename to dd-trace-py/tests/profiling/_test_multiprocessing.py
diff --git a/tests/profiling/collector/conftest.py b/dd-trace-py/tests/profiling/collector/conftest.py
similarity index 100%
rename from tests/profiling/collector/conftest.py
rename to dd-trace-py/tests/profiling/collector/conftest.py
diff --git a/tests/profiling/collector/lock_test_common.py b/dd-trace-py/tests/profiling/collector/lock_test_common.py
similarity index 100%
rename from tests/profiling/collector/lock_test_common.py
rename to dd-trace-py/tests/profiling/collector/lock_test_common.py
diff --git a/tests/profiling/collector/lock_utils.py b/dd-trace-py/tests/profiling/collector/lock_utils.py
similarity index 100%
rename from tests/profiling/collector/lock_utils.py
rename to dd-trace-py/tests/profiling/collector/lock_utils.py
diff --git a/tests/profiling/collector/pprof.proto b/dd-trace-py/tests/profiling/collector/pprof.proto
similarity index 100%
rename from tests/profiling/collector/pprof.proto
rename to dd-trace-py/tests/profiling/collector/pprof.proto
diff --git a/tests/profiling/collector/pprof_312_pb2.py b/dd-trace-py/tests/profiling/collector/pprof_312_pb2.py
similarity index 100%
rename from tests/profiling/collector/pprof_312_pb2.py
rename to dd-trace-py/tests/profiling/collector/pprof_312_pb2.py
diff --git a/tests/profiling/collector/pprof_319_pb2.py b/dd-trace-py/tests/profiling/collector/pprof_319_pb2.py
similarity index 100%
rename from tests/profiling/collector/pprof_319_pb2.py
rename to dd-trace-py/tests/profiling/collector/pprof_319_pb2.py
diff --git a/tests/profiling/collector/pprof_3_pb2.py b/dd-trace-py/tests/profiling/collector/pprof_3_pb2.py
similarity index 100%
rename from tests/profiling/collector/pprof_3_pb2.py
rename to dd-trace-py/tests/profiling/collector/pprof_3_pb2.py
diff --git a/tests/profiling/collector/pprof_421_pb2.py b/dd-trace-py/tests/profiling/collector/pprof_421_pb2.py
similarity index 100%
rename from tests/profiling/collector/pprof_421_pb2.py
rename to dd-trace-py/tests/profiling/collector/pprof_421_pb2.py
diff --git a/tests/profiling/collector/pprof_pb2.pyi b/dd-trace-py/tests/profiling/collector/pprof_pb2.pyi
similarity index 100%
rename from tests/profiling/collector/pprof_pb2.pyi
rename to dd-trace-py/tests/profiling/collector/pprof_pb2.pyi
diff --git a/tests/profiling/collector/pprof_utils.py b/dd-trace-py/tests/profiling/collector/pprof_utils.py
similarity index 100%
rename from tests/profiling/collector/pprof_utils.py
rename to dd-trace-py/tests/profiling/collector/pprof_utils.py
diff --git a/tests/profiling/collector/test_asyncio.py b/dd-trace-py/tests/profiling/collector/test_asyncio.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio.py
diff --git a/tests/profiling/collector/test_asyncio_as_completed.py b/dd-trace-py/tests/profiling/collector/test_asyncio_as_completed.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_as_completed.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_as_completed.py
diff --git a/tests/profiling/collector/test_asyncio_async_generator.py b/dd-trace-py/tests/profiling/collector/test_asyncio_async_generator.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_async_generator.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_async_generator.py
diff --git a/tests/profiling/collector/test_asyncio_context_manager.py b/dd-trace-py/tests/profiling/collector/test_asyncio_context_manager.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_context_manager.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_context_manager.py
diff --git a/tests/profiling/collector/test_asyncio_coroutines.py b/dd-trace-py/tests/profiling/collector/test_asyncio_coroutines.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_coroutines.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_coroutines.py
diff --git a/tests/profiling/collector/test_asyncio_deadlock.py b/dd-trace-py/tests/profiling/collector/test_asyncio_deadlock.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_deadlock.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_deadlock.py
diff --git a/tests/profiling/collector/test_asyncio_executor.py b/dd-trace-py/tests/profiling/collector/test_asyncio_executor.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_executor.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_executor.py
diff --git a/tests/profiling/collector/test_asyncio_fork.py b/dd-trace-py/tests/profiling/collector/test_asyncio_fork.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_fork.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_fork.py
diff --git a/tests/profiling/collector/test_asyncio_gather.py b/dd-trace-py/tests/profiling/collector/test_asyncio_gather.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_gather.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_gather.py
diff --git a/tests/profiling/collector/test_asyncio_gather_coroutines.py b/dd-trace-py/tests/profiling/collector/test_asyncio_gather_coroutines.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_gather_coroutines.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_gather_coroutines.py
diff --git a/tests/profiling/collector/test_asyncio_gather_deep_coroutines.py b/dd-trace-py/tests/profiling/collector/test_asyncio_gather_deep_coroutines.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_gather_deep_coroutines.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_gather_deep_coroutines.py
diff --git a/tests/profiling/collector/test_asyncio_gather_tasks.py b/dd-trace-py/tests/profiling/collector/test_asyncio_gather_tasks.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_gather_tasks.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_gather_tasks.py
diff --git a/tests/profiling/collector/test_asyncio_idle.py b/dd-trace-py/tests/profiling/collector/test_asyncio_idle.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_idle.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_idle.py
diff --git a/tests/profiling/collector/test_asyncio_import_order.py b/dd-trace-py/tests/profiling/collector/test_asyncio_import_order.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_import_order.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_import_order.py
diff --git a/tests/profiling/collector/test_asyncio_mixed_workload.py b/dd-trace-py/tests/profiling/collector/test_asyncio_mixed_workload.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_mixed_workload.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_mixed_workload.py
diff --git a/tests/profiling/collector/test_asyncio_param_forwarding.py b/dd-trace-py/tests/profiling/collector/test_asyncio_param_forwarding.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_param_forwarding.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_param_forwarding.py
diff --git a/tests/profiling/collector/test_asyncio_recursive_on_cpu_coros.py b/dd-trace-py/tests/profiling/collector/test_asyncio_recursive_on_cpu_coros.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_recursive_on_cpu_coros.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_recursive_on_cpu_coros.py
diff --git a/tests/profiling/collector/test_asyncio_recursive_on_cpu_tasks.py b/dd-trace-py/tests/profiling/collector/test_asyncio_recursive_on_cpu_tasks.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_recursive_on_cpu_tasks.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_recursive_on_cpu_tasks.py
diff --git a/tests/profiling/collector/test_asyncio_shield.py b/dd-trace-py/tests/profiling/collector/test_asyncio_shield.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_shield.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_shield.py
diff --git a/tests/profiling/collector/test_asyncio_task_count.py b/dd-trace-py/tests/profiling/collector/test_asyncio_task_count.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_task_count.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_task_count.py
diff --git a/tests/profiling/collector/test_asyncio_taskgroup.py b/dd-trace-py/tests/profiling/collector/test_asyncio_taskgroup.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_taskgroup.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_taskgroup.py
diff --git a/tests/profiling/collector/test_asyncio_timeout.py b/dd-trace-py/tests/profiling/collector/test_asyncio_timeout.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_timeout.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_timeout.py
diff --git a/tests/profiling/collector/test_asyncio_timeout_at.py b/dd-trace-py/tests/profiling/collector/test_asyncio_timeout_at.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_timeout_at.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_timeout_at.py
diff --git a/tests/profiling/collector/test_asyncio_wait.py b/dd-trace-py/tests/profiling/collector/test_asyncio_wait.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_wait.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_wait.py
diff --git a/tests/profiling/collector/test_asyncio_wall_time_on_and_off_cpu.py b/dd-trace-py/tests/profiling/collector/test_asyncio_wall_time_on_and_off_cpu.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_wall_time_on_and_off_cpu.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_wall_time_on_and_off_cpu.py
diff --git a/tests/profiling/collector/test_asyncio_weak_links.py b/dd-trace-py/tests/profiling/collector/test_asyncio_weak_links.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_weak_links.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_weak_links.py
diff --git a/tests/profiling/collector/test_asyncio_within_function.py b/dd-trace-py/tests/profiling/collector/test_asyncio_within_function.py
similarity index 100%
rename from tests/profiling/collector/test_asyncio_within_function.py
rename to dd-trace-py/tests/profiling/collector/test_asyncio_within_function.py
diff --git a/tests/profiling/collector/test_collector.py b/dd-trace-py/tests/profiling/collector/test_collector.py
similarity index 100%
rename from tests/profiling/collector/test_collector.py
rename to dd-trace-py/tests/profiling/collector/test_collector.py
diff --git a/tests/profiling/collector/test_copy_memory_stats.py b/dd-trace-py/tests/profiling/collector/test_copy_memory_stats.py
similarity index 100%
rename from tests/profiling/collector/test_copy_memory_stats.py
rename to dd-trace-py/tests/profiling/collector/test_copy_memory_stats.py
diff --git a/tests/profiling/collector/test_exception.py b/dd-trace-py/tests/profiling/collector/test_exception.py
similarity index 100%
rename from tests/profiling/collector/test_exception.py
rename to dd-trace-py/tests/profiling/collector/test_exception.py
diff --git a/tests/profiling/collector/test_generators.py b/dd-trace-py/tests/profiling/collector/test_generators.py
similarity index 100%
rename from tests/profiling/collector/test_generators.py
rename to dd-trace-py/tests/profiling/collector/test_generators.py
diff --git a/tests/profiling/collector/test_greenlet_count.py b/dd-trace-py/tests/profiling/collector/test_greenlet_count.py
similarity index 100%
rename from tests/profiling/collector/test_greenlet_count.py
rename to dd-trace-py/tests/profiling/collector/test_greenlet_count.py
diff --git a/tests/profiling/collector/test_heap_tracker_count.py b/dd-trace-py/tests/profiling/collector/test_heap_tracker_count.py
similarity index 100%
rename from tests/profiling/collector/test_heap_tracker_count.py
rename to dd-trace-py/tests/profiling/collector/test_heap_tracker_count.py
diff --git a/tests/profiling/collector/test_internal_adaptive_sampling.py b/dd-trace-py/tests/profiling/collector/test_internal_adaptive_sampling.py
similarity index 100%
rename from tests/profiling/collector/test_internal_adaptive_sampling.py
rename to dd-trace-py/tests/profiling/collector/test_internal_adaptive_sampling.py
diff --git a/tests/profiling/collector/test_lock_reflection.py b/dd-trace-py/tests/profiling/collector/test_lock_reflection.py
similarity index 100%
rename from tests/profiling/collector/test_lock_reflection.py
rename to dd-trace-py/tests/profiling/collector/test_lock_reflection.py
diff --git a/tests/profiling/collector/test_memalloc.py b/dd-trace-py/tests/profiling/collector/test_memalloc.py
similarity index 100%
rename from tests/profiling/collector/test_memalloc.py
rename to dd-trace-py/tests/profiling/collector/test_memalloc.py
diff --git a/tests/profiling/collector/test_sample_count.py b/dd-trace-py/tests/profiling/collector/test_sample_count.py
similarity index 100%
rename from tests/profiling/collector/test_sample_count.py
rename to dd-trace-py/tests/profiling/collector/test_sample_count.py
diff --git a/tests/profiling/collector/test_stack.py b/dd-trace-py/tests/profiling/collector/test_stack.py
similarity index 100%
rename from tests/profiling/collector/test_stack.py
rename to dd-trace-py/tests/profiling/collector/test_stack.py
diff --git a/tests/profiling/collector/test_stack_asyncio_basic.py b/dd-trace-py/tests/profiling/collector/test_stack_asyncio_basic.py
similarity index 100%
rename from tests/profiling/collector/test_stack_asyncio_basic.py
rename to dd-trace-py/tests/profiling/collector/test_stack_asyncio_basic.py
diff --git a/tests/profiling/collector/test_stack_native.py b/dd-trace-py/tests/profiling/collector/test_stack_native.py
similarity index 100%
rename from tests/profiling/collector/test_stack_native.py
rename to dd-trace-py/tests/profiling/collector/test_stack_native.py
diff --git a/tests/profiling/collector/test_thread_subsampling.py b/dd-trace-py/tests/profiling/collector/test_thread_subsampling.py
similarity index 100%
rename from tests/profiling/collector/test_thread_subsampling.py
rename to dd-trace-py/tests/profiling/collector/test_thread_subsampling.py
diff --git a/tests/profiling/collector/test_threading.py b/dd-trace-py/tests/profiling/collector/test_threading.py
similarity index 100%
rename from tests/profiling/collector/test_threading.py
rename to dd-trace-py/tests/profiling/collector/test_threading.py
diff --git a/tests/profiling/collector/test_threading_asyncio.py b/dd-trace-py/tests/profiling/collector/test_threading_asyncio.py
similarity index 100%
rename from tests/profiling/collector/test_threading_asyncio.py
rename to dd-trace-py/tests/profiling/collector/test_threading_asyncio.py
diff --git a/tests/profiling/collector/test_utils.py b/dd-trace-py/tests/profiling/collector/test_utils.py
similarity index 100%
rename from tests/profiling/collector/test_utils.py
rename to dd-trace-py/tests/profiling/collector/test_utils.py
diff --git a/tests/profiling/collector/test_uvloop_multi_threaded.py b/dd-trace-py/tests/profiling/collector/test_uvloop_multi_threaded.py
similarity index 100%
rename from tests/profiling/collector/test_uvloop_multi_threaded.py
rename to dd-trace-py/tests/profiling/collector/test_uvloop_multi_threaded.py
diff --git a/tests/profiling/collector/test_uvloop_variations.py b/dd-trace-py/tests/profiling/collector/test_uvloop_variations.py
similarity index 100%
rename from tests/profiling/collector/test_uvloop_variations.py
rename to dd-trace-py/tests/profiling/collector/test_uvloop_variations.py
diff --git a/tests/profiling/exporter/__init__.py b/dd-trace-py/tests/profiling/exporter/__init__.py
similarity index 100%
rename from tests/profiling/exporter/__init__.py
rename to dd-trace-py/tests/profiling/exporter/__init__.py
diff --git a/tests/profiling/exporter/test_ddup.py b/dd-trace-py/tests/profiling/exporter/test_ddup.py
similarity index 100%
rename from tests/profiling/exporter/test_ddup.py
rename to dd-trace-py/tests/profiling/exporter/test_ddup.py
diff --git a/tests/profiling/gevent_fork.py b/dd-trace-py/tests/profiling/gevent_fork.py
similarity index 100%
rename from tests/profiling/gevent_fork.py
rename to dd-trace-py/tests/profiling/gevent_fork.py
diff --git a/tests/profiling/gunicorn-app.py b/dd-trace-py/tests/profiling/gunicorn-app.py
similarity index 100%
rename from tests/profiling/gunicorn-app.py
rename to dd-trace-py/tests/profiling/gunicorn-app.py
diff --git a/tests/profiling/gunicorn.conf.py b/dd-trace-py/tests/profiling/gunicorn.conf.py
similarity index 100%
rename from tests/profiling/gunicorn.conf.py
rename to dd-trace-py/tests/profiling/gunicorn.conf.py
diff --git a/tests/profiling/gunicorn_count_app.py b/dd-trace-py/tests/profiling/gunicorn_count_app.py
similarity index 100%
rename from tests/profiling/gunicorn_count_app.py
rename to dd-trace-py/tests/profiling/gunicorn_count_app.py
diff --git a/tests/profiling/gunicorn_sigterm_app.py b/dd-trace-py/tests/profiling/gunicorn_sigterm_app.py
similarity index 100%
rename from tests/profiling/gunicorn_sigterm_app.py
rename to dd-trace-py/tests/profiling/gunicorn_sigterm_app.py
diff --git a/tests/profiling/native_tests b/dd-trace-py/tests/profiling/native_tests
similarity index 100%
rename from tests/profiling/native_tests
rename to dd-trace-py/tests/profiling/native_tests
diff --git a/tests/profiling/run.py b/dd-trace-py/tests/profiling/run.py
similarity index 100%
rename from tests/profiling/run.py
rename to dd-trace-py/tests/profiling/run.py
diff --git a/tests/profiling/simple_program.py b/dd-trace-py/tests/profiling/simple_program.py
similarity index 100%
rename from tests/profiling/simple_program.py
rename to dd-trace-py/tests/profiling/simple_program.py
diff --git a/tests/profiling/simple_program_fork.py b/dd-trace-py/tests/profiling/simple_program_fork.py
similarity index 100%
rename from tests/profiling/simple_program_fork.py
rename to dd-trace-py/tests/profiling/simple_program_fork.py
diff --git a/tests/profiling/simple_program_gevent.py b/dd-trace-py/tests/profiling/simple_program_gevent.py
similarity index 100%
rename from tests/profiling/simple_program_gevent.py
rename to dd-trace-py/tests/profiling/simple_program_gevent.py
diff --git a/tests/profiling/simple_program_pytorch_gpu.py b/dd-trace-py/tests/profiling/simple_program_pytorch_gpu.py
similarity index 100%
rename from tests/profiling/simple_program_pytorch_gpu.py
rename to dd-trace-py/tests/profiling/simple_program_pytorch_gpu.py
diff --git a/tests/profiling/suitespec.yml b/dd-trace-py/tests/profiling/suitespec.yml
similarity index 100%
rename from tests/profiling/suitespec.yml
rename to dd-trace-py/tests/profiling/suitespec.yml
diff --git a/tests/profiling/test__threading.py b/dd-trace-py/tests/profiling/test__threading.py
similarity index 100%
rename from tests/profiling/test__threading.py
rename to dd-trace-py/tests/profiling/test__threading.py
diff --git a/tests/profiling/test_accuracy.py b/dd-trace-py/tests/profiling/test_accuracy.py
similarity index 100%
rename from tests/profiling/test_accuracy.py
rename to dd-trace-py/tests/profiling/test_accuracy.py
diff --git a/tests/profiling/test_code_provenance.py b/dd-trace-py/tests/profiling/test_code_provenance.py
similarity index 100%
rename from tests/profiling/test_code_provenance.py
rename to dd-trace-py/tests/profiling/test_code_provenance.py
diff --git a/tests/profiling/test_gevent.py b/dd-trace-py/tests/profiling/test_gevent.py
similarity index 100%
rename from tests/profiling/test_gevent.py
rename to dd-trace-py/tests/profiling/test_gevent.py
diff --git a/tests/profiling/test_gunicorn.py b/dd-trace-py/tests/profiling/test_gunicorn.py
similarity index 100%
rename from tests/profiling/test_gunicorn.py
rename to dd-trace-py/tests/profiling/test_gunicorn.py
diff --git a/tests/profiling/test_main.py b/dd-trace-py/tests/profiling/test_main.py
similarity index 100%
rename from tests/profiling/test_main.py
rename to dd-trace-py/tests/profiling/test_main.py
diff --git a/tests/profiling/test_memalloc_fork.py b/dd-trace-py/tests/profiling/test_memalloc_fork.py
similarity index 100%
rename from tests/profiling/test_memalloc_fork.py
rename to dd-trace-py/tests/profiling/test_memalloc_fork.py
diff --git a/tests/profiling/test_process_role.py b/dd-trace-py/tests/profiling/test_process_role.py
similarity index 100%
rename from tests/profiling/test_process_role.py
rename to dd-trace-py/tests/profiling/test_process_role.py
diff --git a/tests/profiling/test_profiler.py b/dd-trace-py/tests/profiling/test_profiler.py
similarity index 100%
rename from tests/profiling/test_profiler.py
rename to dd-trace-py/tests/profiling/test_profiler.py
diff --git a/tests/profiling/test_profiling_config.py b/dd-trace-py/tests/profiling/test_profiling_config.py
similarity index 100%
rename from tests/profiling/test_profiling_config.py
rename to dd-trace-py/tests/profiling/test_profiling_config.py
diff --git a/tests/profiling/test_pytorch.py b/dd-trace-py/tests/profiling/test_pytorch.py
similarity index 100%
rename from tests/profiling/test_pytorch.py
rename to dd-trace-py/tests/profiling/test_pytorch.py
diff --git a/tests/profiling/test_scheduler.py b/dd-trace-py/tests/profiling/test_scheduler.py
similarity index 100%
rename from tests/profiling/test_scheduler.py
rename to dd-trace-py/tests/profiling/test_scheduler.py
diff --git a/tests/profiling/test_uwsgi.py b/dd-trace-py/tests/profiling/test_uwsgi.py
similarity index 100%
rename from tests/profiling/test_uwsgi.py
rename to dd-trace-py/tests/profiling/test_uwsgi.py
diff --git a/tests/profiling/uwsgi-app.py b/dd-trace-py/tests/profiling/uwsgi-app.py
similarity index 100%
rename from tests/profiling/uwsgi-app.py
rename to dd-trace-py/tests/profiling/uwsgi-app.py
diff --git a/tests/runtime/__init__.py b/dd-trace-py/tests/runtime/__init__.py
similarity index 100%
rename from tests/runtime/__init__.py
rename to dd-trace-py/tests/runtime/__init__.py
diff --git a/tests/runtime/test_runtime_metrics_api.py b/dd-trace-py/tests/runtime/test_runtime_metrics_api.py
similarity index 100%
rename from tests/runtime/test_runtime_metrics_api.py
rename to dd-trace-py/tests/runtime/test_runtime_metrics_api.py
diff --git a/tests/smoke_test.py b/dd-trace-py/tests/smoke_test.py
similarity index 100%
rename from tests/smoke_test.py
rename to dd-trace-py/tests/smoke_test.py
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_atr_mix_fail.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_atr_mix_fail.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_atr_mix_fail.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_atr_mix_fail.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_atr_mix_pass.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_atr_mix_pass.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_atr_mix_pass.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_atr_mix_pass.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_all_pass.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_all_pass.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_all_pass.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_all_pass.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_faulty_session.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_faulty_session.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_faulty_session.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_faulty_session.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_mix_fail.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_mix_fail.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_mix_fail.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_mix_fail.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_mix_pass.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_mix_pass.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_mix_pass.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_efd_mix_pass.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_fail.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_fail.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_fail.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_fail.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_itr_skip_suite_level.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_itr_skip_suite_level.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_itr_skip_suite_level.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_itr_skip_suite_level.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_itr_skip_test_level.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_itr_skip_test_level.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_itr_skip_test_level.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_itr_skip_test_level.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_pass.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_pass.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_pass.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_pass.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_skip.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_skip.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_skip.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_all_skip.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail_itr_suite_level.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail_itr_suite_level.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail_itr_suite_level.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail_itr_suite_level.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail_itr_test_level.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail_itr_test_level.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail_itr_test_level.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_fail_itr_test_level.json
diff --git a/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_pass.json b/dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_pass.json
similarity index 100%
rename from tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_pass.json
rename to dd-trace-py/tests/snapshots/test_api_fake_runners.test_manual_api_fake_runner_mix_pass.json
diff --git a/tests/snapshots/test_multi_trace.json b/dd-trace-py/tests/snapshots/test_multi_trace.json
similarity index 100%
rename from tests/snapshots/test_multi_trace.json
rename to dd-trace-py/tests/snapshots/test_multi_trace.json
diff --git a/tests/snapshots/test_sampling_with_default_sample_rate_1.json b/dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_default_sample_rate_1.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1.json
diff --git a/tests/snapshots/test_sampling_with_default_sample_rate_1_and_manual_drop.json b/dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1_and_manual_drop.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_default_sample_rate_1_and_manual_drop.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1_and_manual_drop.json
diff --git a/tests/snapshots/test_sampling_with_default_sample_rate_1_and_manual_keep.json b/dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1_and_manual_keep.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_default_sample_rate_1_and_manual_keep.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1_and_manual_keep.json
diff --git a/tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_0.json b/dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_0.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_0.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_0.json
diff --git a/tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_1.json b/dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_1.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_1.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_1_and_rule_1.json
diff --git a/tests/snapshots/test_sampling_with_default_sample_rate_tiny.json b/dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_tiny.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_default_sample_rate_tiny.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_default_sample_rate_tiny.json
diff --git a/tests/snapshots/test_sampling_with_rate_sampler_with_tiny_rate.json b/dd-trace-py/tests/snapshots/test_sampling_with_rate_sampler_with_tiny_rate.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_rate_sampler_with_tiny_rate.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_rate_sampler_with_tiny_rate.json
diff --git a/tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_0.json b/dd-trace-py/tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_0.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_0.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_0.json
diff --git a/tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_3_and_rule_0.json b/dd-trace-py/tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_3_and_rule_0.json
similarity index 100%
rename from tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_3_and_rule_0.json
rename to dd-trace-py/tests/snapshots/test_sampling_with_sample_rate_1_and_rate_limit_3_and_rule_0.json
diff --git a/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_rum_disabled.json b/dd-trace-py/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_rum_disabled.json
similarity index 100%
rename from tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_rum_disabled.json
rename to dd-trace-py/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_rum_disabled.json
diff --git a/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_rum_enabled.json b/dd-trace-py/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_rum_enabled.json
similarity index 100%
rename from tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_rum_enabled.json
rename to dd-trace-py/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_rum_enabled.json
diff --git a/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_unpatch_does_not_record_selenium_tags.json b/dd-trace-py/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_unpatch_does_not_record_selenium_tags.json
similarity index 100%
rename from tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_unpatch_does_not_record_selenium_tags.json
rename to dd-trace-py/tests/snapshots/test_selenium_chrome.test_selenium_chrome_pytest_unpatch_does_not_record_selenium_tags.json
diff --git a/tests/snapshots/test_trace_missing_received.json b/dd-trace-py/tests/snapshots/test_trace_missing_received.json
similarity index 100%
rename from tests/snapshots/test_trace_missing_received.json
rename to dd-trace-py/tests/snapshots/test_trace_missing_received.json
diff --git a/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_body_no_collection_snapshot.json b/dd-trace-py/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_body_no_collection_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_body_no_collection_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_body_no_collection_snapshot.json
diff --git a/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_cookies_no_collection_snapshot.json b/dd-trace-py/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_cookies_no_collection_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_cookies_no_collection_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_cookies_no_collection_snapshot.json
diff --git a/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_span_tags_snapshot.json b/dd-trace-py/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_span_tags_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_span_tags_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_span_tags_snapshot.json
diff --git a/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_span_tags_snapshot_with_errors.json b/dd-trace-py/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_span_tags_snapshot_with_errors.json
similarity index 100%
rename from tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_span_tags_snapshot_with_errors.json
rename to dd-trace-py/tests/snapshots/tests.appsec.appsec.test_processor.test_appsec_span_tags_snapshot_with_errors.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_200_request.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_200_request.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_200_request.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_200_request.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_200_request_post.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_200_request_post.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_200_request_post.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_200_request_post.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_500_request.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_500_request.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_500_request.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_500_request.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_auth_200_request.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_auth_200_request.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_auth_200_request.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_auth_200_request.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_base_url.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_base_url.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_base_url.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_base_url.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[None].json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[None].json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[v0].json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[v0].json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[v1].json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_global_service_name_env[v1].json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_service_name_split_by_domain.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_service_name_split_by_domain.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_service_name_split_by_domain.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_configure_service_name_split_by_domain.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_multiple.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_multiple.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_multiple.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_multiple.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_parenting.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_parenting.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_parenting.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_parenting.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_query_string.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_query_string.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_query_string.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_trace_query_string.json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[None].json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[None].json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[v0].json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[v0].json
diff --git a/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[v1].json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp.test_aiohttp_client.test_unspecified_service_name_env[v1].json
diff --git a/tests/snapshots/tests.contrib.aiohttp_jinja2.test_aiohttp_jinja2.test_template_rendering_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp_jinja2.test_aiohttp_jinja2.test_template_rendering_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp_jinja2.test_aiohttp_jinja2.test_template_rendering_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp_jinja2.test_aiohttp_jinja2.test_template_rendering_snapshot.json
diff --git a/tests/snapshots/tests.contrib.aiohttp_jinja2.test_aiohttp_jinja2.test_template_rendering_snapshot_patched_server.json b/dd-trace-py/tests/snapshots/tests.contrib.aiohttp_jinja2.test_aiohttp_jinja2.test_template_rendering_snapshot_patched_server.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiohttp_jinja2.test_aiohttp_jinja2.test_template_rendering_snapshot_patched_server.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiohttp_jinja2.test_aiohttp_jinja2.test_template_rendering_snapshot_patched_server.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_multiple_messages_multiple_topics.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_multiple_messages_multiple_topics.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_multiple_messages_multiple_topics.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_multiple_messages_multiple_topics.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_multiple_messages_multiple_topics_with_distributed_tracing.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_multiple_messages_multiple_topics_with_distributed_tracing.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_multiple_messages_multiple_topics_with_distributed_tracing.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_multiple_messages_multiple_topics_with_distributed_tracing.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_single_message.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_single_message.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_single_message.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_getmany_single_message.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_commit_with_offset.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_commit_with_offset.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_commit_with_offset.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_commit_with_offset.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_failure.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_failure.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_failure.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_failure.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_key[None].json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_key[None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_key[None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_key[None].json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_key[test_key].json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_key[test_key].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_key[test_key].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_key[test_key].json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_value[None].json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_value[None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_value[None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_value[None].json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_value[hueh_hueh_hueh].json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_value[hueh_hueh_hueh].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_value[hueh_hueh_hueh].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_value[hueh_hueh_hueh].json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_with_distributed_tracing.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_with_distributed_tracing.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_with_distributed_tracing.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_and_wait_with_distributed_tracing.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_commit.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_commit.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_commit.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_commit.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_multiple_servers.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_multiple_servers.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_multiple_servers.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka.test_send_multiple_servers.json
diff --git a/tests/snapshots/tests.contrib.aiokafka.test_aiokafka_dsm.test_data_streams_aiokafka_enabled.json b/dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka_dsm.test_data_streams_aiokafka_enabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiokafka.test_aiokafka_dsm.test_data_streams_aiokafka_enabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiokafka.test_aiokafka_dsm.test_data_streams_aiokafka_enabled.json
diff --git a/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_queries.json b/dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_queries.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_queries.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_queries.json
diff --git a/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_schematized_span_name[v0].json b/dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_schematized_span_name[v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_schematized_span_name[v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_schematized_span_name[v0].json
diff --git a/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_schematized_span_name[v1].json b/dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_schematized_span_name[v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_schematized_span_name[v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_schematized_span_name[v1].json
diff --git a/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_unspecified_service_v1.json b/dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_unspecified_service_v1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_unspecified_service_v1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_unspecified_service_v1.json
diff --git a/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_user_specified_service_v0.json b/dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_user_specified_service_v0.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_user_specified_service_v0.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_user_specified_service_v0.json
diff --git a/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_user_specified_service_v1.json b/dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_user_specified_service_v1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_user_specified_service_v1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aiomysql.test_aiomysql.test_user_specified_service_v1.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_create_image.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_create_image.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_create_image.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_create_image.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_error.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_error.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_multiple_prompts.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_multiple_prompts.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_multiple_prompts.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_multiple_prompts.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_multiple_prompts_with_chat_history.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_multiple_prompts_with_chat_history.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_multiple_prompts_with_chat_history.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_multiple_prompts_with_chat_history.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_stream.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_stream_helper.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_stream_helper.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_stream_helper.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_stream_helper.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_full_use.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_full_use.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_full_use.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_full_use.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_full_use_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_full_use_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_full_use_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_full_use_stream.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_stream.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_stream_helper.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_stream_helper.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_stream_helper.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_tools_stream_helper.json
diff --git a/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_unserializable_arg.json b/dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_unserializable_arg.json
similarity index 100%
rename from tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_unserializable_arg.json
rename to dd-trace-py/tests/snapshots/tests.contrib.anthropic.test_anthropic.test_anthropic_llm_unserializable_arg.json
diff --git a/tests/snapshots/tests.contrib.aredis.test_aredis.test_basics.json b/dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_basics.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aredis.test_aredis.test_basics.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_basics.json
diff --git a/tests/snapshots/tests.contrib.aredis.test_aredis.test_cmd_max_length.json b/dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_cmd_max_length.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aredis.test_aredis.test_cmd_max_length.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_cmd_max_length.json
diff --git a/tests/snapshots/tests.contrib.aredis.test_aredis.test_full_command_in_resource_config.json b/dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_full_command_in_resource_config.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aredis.test_aredis.test_full_command_in_resource_config.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_full_command_in_resource_config.json
diff --git a/tests/snapshots/tests.contrib.aredis.test_aredis.test_full_command_in_resource_env.json b/dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_full_command_in_resource_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aredis.test_aredis.test_full_command_in_resource_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_full_command_in_resource_env.json
diff --git a/tests/snapshots/tests.contrib.aredis.test_aredis.test_long_command.json b/dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_long_command.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aredis.test_aredis.test_long_command.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_long_command.json
diff --git a/tests/snapshots/tests.contrib.aredis.test_aredis.test_pipeline_immediate.json b/dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_pipeline_immediate.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aredis.test_aredis.test_pipeline_immediate.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_pipeline_immediate.json
diff --git a/tests/snapshots/tests.contrib.aredis.test_aredis.test_pipeline_traced.json b/dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_pipeline_traced.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aredis.test_aredis.test_pipeline_traced.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_pipeline_traced.json
diff --git a/tests/snapshots/tests.contrib.aredis.test_aredis.test_unicode.json b/dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_unicode.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aredis.test_aredis.test_unicode.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aredis.test_aredis.test_unicode.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_bad_connect.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_bad_connect.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_bad_connect.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_bad_connect.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_bad_query.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_bad_query.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_bad_query.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_bad_query.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_configure_service_name_env_v0.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_configure_service_name_env_v0.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_configure_service_name_env_v0.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_configure_service_name_env_v0.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_configure_service_name_env_v1.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_configure_service_name_env_v1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_configure_service_name_env_v1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_configure_service_name_env_v1.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_connect.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_connect.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_connect.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_connect.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_connection_methods.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_connection_methods.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_connection_methods.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_connection_methods.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_cursor.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_cursor.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_cursor.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_cursor.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_cursor_manual.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_cursor_manual.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_cursor_manual.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_cursor_manual.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_parenting.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_parenting.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_parenting.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_parenting.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_pool_custom_connect.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_pool_custom_connect.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_pool_custom_connect.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_pool_custom_connect.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_pool_without_custom_connect.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_pool_without_custom_connect.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_pool_without_custom_connect.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_pool_without_custom_connect.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_select.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_select.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_select.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_select.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_span_name_by_schema[v0].json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_span_name_by_schema[v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_span_name_by_schema[v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_span_name_by_schema[v0].json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_span_name_by_schema[v1].json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_span_name_by_schema[v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_span_name_by_schema[v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_span_name_by_schema[v1].json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_unspecified_service_name_env_v0.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_unspecified_service_name_env_v0.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_unspecified_service_name_env_v0.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_unspecified_service_name_env_v0.json
diff --git a/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_unspecified_service_name_env_v1.json b/dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_unspecified_service_name_env_v1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_unspecified_service_name_env_v1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.asyncpg.test_asyncpg.test_unspecified_service_name_env_v1.json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[ClassHandler-class_handler].json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[ClassHandler-class_handler].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[ClassHandler-class_handler].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[ClassHandler-class_handler].json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[StaticHandler-static_handler].json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[StaticHandler-static_handler].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[StaticHandler-static_handler].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[StaticHandler-static_handler].json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[handler2-instance_handler].json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[handler2-instance_handler].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[handler2-instance_handler].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[handler2-instance_handler].json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[handler3-instance_handler_with_code].json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[handler3-instance_handler_with_code].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[handler3-instance_handler_with_code].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_class_based_handlers[handler3-instance_handler_with_code].json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_continue_on_early_trace_ending.json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_continue_on_early_trace_ending.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_continue_on_early_trace_ending.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_continue_on_early_trace_ending.json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_file_patching.json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_file_patching.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_file_patching.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_file_patching.json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_module_patching.json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_module_patching.json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_module_patching.json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_module_patching.json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[-100].json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[-100].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[-100].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[-100].json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[100].json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[100].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[100].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[100].json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[10].json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[10].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[10].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[10].json
diff --git a/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[200].json b/dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[200].json
similarity index 100%
rename from tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[200].json
rename to dd-trace-py/tests/snapshots/tests.contrib.aws_lambda.test_aws_lambda.test_timeout_traces[200].json
diff --git a/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_async.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_async.json
diff --git a/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_error.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_error.json
diff --git a/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_sync.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_sync.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_sync.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_cosmos.test_azure_cosmos_snapshot.test_cosmos_sync.json
diff --git a/tests/snapshots/tests.contrib.azure_durable_functions.test_azure_durable_functions_snapshot.test_activity_trigger_end_to_end.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_durable_functions.test_azure_durable_functions_snapshot.test_activity_trigger_end_to_end.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_durable_functions.test_azure_durable_functions_snapshot.test_activity_trigger_end_to_end.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_durable_functions.test_azure_durable_functions_snapshot.test_activity_trigger_end_to_end.json
diff --git a/tests/snapshots/tests.contrib.azure_durable_functions.test_azure_durable_functions_snapshot.test_entity_trigger_end_to_end.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_durable_functions.test_azure_durable_functions_snapshot.test_entity_trigger_end_to_end.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_durable_functions.test_azure_durable_functions_snapshot.test_entity_trigger_end_to_end.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_durable_functions.test_azure_durable_functions_snapshot.test_entity_trigger_end_to_end.json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_disabled_batch_links_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_disabled_batch_links_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_disabled_batch_links_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_disabled_batch_links_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_disabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_disabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_disabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_disabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_enabled_batch_links_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_enabled_batch_links_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_enabled_batch_links_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_enabled_batch_links_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_enabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_enabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_enabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_batch_distributed_tracing_enabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_list_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_list_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_list_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_list_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_list_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_list_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_list_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_async_list_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_disabled_batch_links_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_disabled_batch_links_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_disabled_batch_links_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_disabled_batch_links_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_disabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_disabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_disabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_disabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_enabled_batch_links_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_enabled_batch_links_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_enabled_batch_links_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_enabled_batch_links_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_enabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_enabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_enabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_batch_distributed_tracing_enabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_async_batch_distributed_tracing_enabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_async_batch_distributed_tracing_enabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_async_batch_distributed_tracing_enabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_async_batch_distributed_tracing_enabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_async_list_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_async_list_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_async_list_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_async_list_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_batch_distributed_tracing_enabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_batch_distributed_tracing_enabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_batch_distributed_tracing_enabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_batch_distributed_tracing_enabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_list_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_list_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_list_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_buffered_list_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_list_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_list_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_list_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_list_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_list_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_list_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_list_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_batch_list_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_async_single_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_async_single_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_async_single_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_async_single_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_async_single_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_async_single_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_async_single_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_async_single_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_buffered_async_single_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_buffered_async_single_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_buffered_async_single_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_buffered_async_single_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_buffered_single_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_buffered_single_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_buffered_single_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_buffered_single_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_single_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_single_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_single_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_single_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_single_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_single_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_single_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer[send_event_single_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer_error.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_eventhubs.test_azure_eventhubs_snapshot.test_producer_error.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_distributed_tracing[disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_distributed_tracing[disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_distributed_tracing[disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_distributed_tracing[disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_distributed_tracing[enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_distributed_tracing[enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_distributed_tracing[enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_distributed_tracing[enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_error.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_error.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_decorator.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_decorator.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_decorator.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_decorator.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_decorator_order.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_decorator_order.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_decorator_order.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_decorator_order.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_no_decorator.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_no_decorator.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_no_decorator.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_function_name_no_decorator.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_async.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_async.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_async_obfuscated.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_async_obfuscated.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_async_obfuscated.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_async_obfuscated.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_obfuscated.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_obfuscated.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_obfuscated.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_ok_obfuscated.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_trigger_arg.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_trigger_arg.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_trigger_arg.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_get_trigger_arg.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_post_ok.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_post_ok.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_post_ok.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_http_post_ok.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_timer.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_timer.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_timer.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_timer.json
diff --git a/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_timer_async.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_timer_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_timer_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions.test_azure_functions_snapshot.test_timer_async.json
diff --git a/tests/snapshots/tests.contrib.azure_functions_cosmos.test_azure_functions_snapshot.test_cosmos_trigger.json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_cosmos.test_azure_functions_snapshot.test_cosmos_trigger.json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_cosmos.test_azure_functions_snapshot.test_cosmos_trigger.json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_cosmos.test_azure_functions_snapshot.test_cosmos_trigger.json
diff --git a/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_many_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_many_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_many_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_many_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_many_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_many_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_many_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_many_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_one_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_one_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_one_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_one_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_one_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_one_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_one_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[async_consume_one_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_many_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_many_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_many_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_many_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_many_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_many_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_many_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_many_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_one_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_one_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_one_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_one_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_one_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_one_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_one_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_eventhubs.test_azure_functions_snapshot.test_event_hubs_trigger[consume_one_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_many_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_many_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_many_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_many_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_many_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_many_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_many_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_many_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_one_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_one_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_one_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_one_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_one_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_one_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_one_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_async_consume_one_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_many_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_many_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_many_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_many_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_many_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_many_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_many_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_many_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_one_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_one_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_one_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_one_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_one_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_one_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_one_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[queue_consume_one_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_many_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_many_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_many_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_many_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_many_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_many_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_many_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_many_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_one_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_one_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_one_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_one_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_one_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_one_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_one_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_async_consume_one_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_many_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_many_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_many_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_many_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_many_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_many_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_many_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_many_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_one_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_one_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_one_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_one_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_one_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_one_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_one_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_functions_servicebus.test_azure_functions_snapshot.test_service_bus_trigger[topic_consume_one_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_list_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_list_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_list_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_list_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_list_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_list_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_list_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_list_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_single_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_single_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_single_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_single_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_single_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_single_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_single_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_async_single_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_list_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_list_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_list_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_list_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_list_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_list_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_list_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_list_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_single_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_single_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_single_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_single_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_single_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_single_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_single_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[schedule_messages_single_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_disabled_batch_links_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_disabled_batch_links_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_disabled_batch_links_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_disabled_batch_links_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_disabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_disabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_disabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_disabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_enabled_batch_links_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_enabled_batch_links_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_enabled_batch_links_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_enabled_batch_links_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_enabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_enabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_enabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_batch_distributed_tracing_enabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_list_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_list_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_list_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_list_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_list_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_list_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_list_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_list_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_single_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_single_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_single_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_single_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_single_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_single_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_single_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_async_single_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_disabled_batch_links_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_disabled_batch_links_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_disabled_batch_links_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_disabled_batch_links_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_disabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_disabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_disabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_disabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_enabled_batch_links_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_enabled_batch_links_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_enabled_batch_links_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_enabled_batch_links_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_enabled_batch_links_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_enabled_batch_links_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_enabled_batch_links_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_batch_distributed_tracing_enabled_batch_links_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_list_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_list_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_list_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_list_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_list_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_list_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_list_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_list_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_single_distributed_tracing_disabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_single_distributed_tracing_disabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_single_distributed_tracing_disabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_single_distributed_tracing_disabled].json
diff --git a/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_single_distributed_tracing_enabled].json b/dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_single_distributed_tracing_enabled].json
similarity index 100%
rename from tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_single_distributed_tracing_enabled].json
rename to dd-trace-py/tests/snapshots/tests.contrib.azure_servicebus.test_azure_servicebus_snapshot.test_producer[send_messages_single_distributed_tracing_enabled].json
diff --git a/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_eventbridge.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_eventbridge.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_eventbridge.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_eventbridge.json
diff --git a/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_kinesis.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_kinesis.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_kinesis.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_kinesis.json
diff --git a/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_s3.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_s3.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_s3.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_s3.json
diff --git a/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sns.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sns.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sns.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sns.json
diff --git a/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sns_valid_config.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sns_valid_config.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sns_valid_config.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sns_valid_config.json
diff --git a/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sqs.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sqs.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sqs.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sqs.json
diff --git a/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sqs_invalid_config.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sqs_invalid_config.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sqs_invalid_config.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_aws_payload_tagging_sqs_invalid_config.json
diff --git a/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_dynamodb_payload_tagging.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_dynamodb_payload_tagging.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_dynamodb_payload_tagging.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test.BotocoreTest.test_dynamodb_payload_tagging.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_ai21_invoke.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_ai21_invoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_ai21_invoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_ai21_invoke.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_embedding.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_embedding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_embedding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_embedding.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_invoke.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_invoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_invoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_invoke.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_invoke_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_invoke_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_invoke_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_amazon_invoke_stream.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_invoke.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_invoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_invoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_invoke.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_invoke_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_invoke_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_invoke_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_invoke_stream.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_message_invoke.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_message_invoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_message_invoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_message_invoke.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_message_invoke_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_message_invoke_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_message_invoke_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_anthropic_message_invoke_stream.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_auth_error.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_auth_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_auth_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_auth_error.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_embedding.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_embedding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_embedding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_embedding.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_multi_output.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_multi_output.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_multi_output.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_multi_output.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_single_output.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_single_output.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_single_output.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_single_output.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_stream_multi_output.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_stream_multi_output.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_stream_multi_output.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_stream_multi_output.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_stream_single_output.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_stream_single_output.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_stream_single_output.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_cohere_invoke_stream_single_output.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_converse.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_converse.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_converse.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_converse.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_converse_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_converse_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_converse_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_converse_stream.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_invoke_model_using_aws_arn_model_id.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_invoke_model_using_aws_arn_model_id.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_invoke_model_using_aws_arn_model_id.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_invoke_model_using_aws_arn_model_id.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_meta_invoke.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_meta_invoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_meta_invoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_meta_invoke.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_meta_invoke_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_meta_invoke_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_meta_invoke_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_meta_invoke_stream.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_read_error.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_read_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_read_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_read_error.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock.test_readlines_error.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_readlines_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock.test_readlines_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock.test_readlines_error.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_bedrock_agents.test_agent_invoke.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock_agents.test_agent_invoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_bedrock_agents.test_agent_invoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_bedrock_agents.test_agent_invoke.json
diff --git a/tests/snapshots/tests.contrib.botocore.test_dsm.test_data_streams_botocore_enabled.json b/dd-trace-py/tests/snapshots/tests.contrib.botocore.test_dsm.test_data_streams_botocore_enabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.botocore.test_dsm.test_data_streams_botocore_enabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.botocore.test_dsm.test_data_streams_botocore_enabled.json
diff --git a/tests/snapshots/tests.contrib.celery.test_integration.test_distributed_tracing_propagation_no_producer_span[False].json b/dd-trace-py/tests/snapshots/tests.contrib.celery.test_integration.test_distributed_tracing_propagation_no_producer_span[False].json
similarity index 100%
rename from tests/snapshots/tests.contrib.celery.test_integration.test_distributed_tracing_propagation_no_producer_span[False].json
rename to dd-trace-py/tests/snapshots/tests.contrib.celery.test_integration.test_distributed_tracing_propagation_no_producer_span[False].json
diff --git a/tests/snapshots/tests.contrib.celery.test_integration.test_distributed_tracing_propagation_no_producer_span[True].json b/dd-trace-py/tests/snapshots/tests.contrib.celery.test_integration.test_distributed_tracing_propagation_no_producer_span[True].json
similarity index 100%
rename from tests/snapshots/tests.contrib.celery.test_integration.test_distributed_tracing_propagation_no_producer_span[True].json
rename to dd-trace-py/tests/snapshots/tests.contrib.celery.test_integration.test_distributed_tracing_propagation_no_producer_span[True].json
diff --git a/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_child.json b/dd-trace-py/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_child.json
similarity index 100%
rename from tests/snapshots/tests.contrib.cherrypy.test_middleware.test_child.json
rename to dd-trace-py/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_child.json
diff --git a/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_error.json b/dd-trace-py/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.cherrypy.test_middleware.test_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_error.json
diff --git a/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_fatal.json b/dd-trace-py/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_fatal.json
similarity index 100%
rename from tests/snapshots/tests.contrib.cherrypy.test_middleware.test_fatal.json
rename to dd-trace-py/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_fatal.json
diff --git a/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_success.json b/dd-trace-py/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_success.json
similarity index 100%
rename from tests/snapshots/tests.contrib.cherrypy.test_middleware.test_success.json
rename to dd-trace-py/tests/snapshots/tests.contrib.cherrypy.test_middleware.test_success.json
diff --git a/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_client_query.json b/dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_client_query.json
similarity index 100%
rename from tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_client_query.json
rename to dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_client_query.json
diff --git a/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_client_query_error.json b/dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_client_query_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_client_query_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_client_query_error.json
diff --git a/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query.json b/dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query.json
similarity index 100%
rename from tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query.json
rename to dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query.json
diff --git a/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_error.json b/dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_error.json
diff --git a/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_bash_tool_use.json b/dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_bash_tool_use.json
similarity index 100%
rename from tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_bash_tool_use.json
rename to dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_bash_tool_use.json
diff --git a/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_grep_tool_use.json b/dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_grep_tool_use.json
similarity index 100%
rename from tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_grep_tool_use.json
rename to dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_grep_tool_use.json
diff --git a/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_read_tool_use.json b/dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_read_tool_use.json
similarity index 100%
rename from tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_read_tool_use.json
rename to dd-trace-py/tests/snapshots/tests.contrib.claude_agent_sdk.test_claude_agent_sdk.test_query_with_read_tool_use.json
diff --git a/tests/snapshots/tests.contrib.crewai.test_crewai.test_basic_crew.json b/dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_basic_crew.json
similarity index 100%
rename from tests/snapshots/tests.contrib.crewai.test_crewai.test_basic_crew.json
rename to dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_basic_crew.json
diff --git a/tests/snapshots/tests.contrib.crewai.test_crewai.test_complex_flow.json b/dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_complex_flow.json
similarity index 100%
rename from tests/snapshots/tests.contrib.crewai.test_crewai.test_complex_flow.json
rename to dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_complex_flow.json
diff --git a/tests/snapshots/tests.contrib.crewai.test_crewai.test_conditional_crew.json b/dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_conditional_crew.json
similarity index 100%
rename from tests/snapshots/tests.contrib.crewai.test_crewai.test_conditional_crew.json
rename to dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_conditional_crew.json
diff --git a/tests/snapshots/tests.contrib.crewai.test_crewai.test_crew_with_async_tasks.json b/dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_crew_with_async_tasks.json
similarity index 100%
rename from tests/snapshots/tests.contrib.crewai.test_crewai.test_crew_with_async_tasks.json
rename to dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_crew_with_async_tasks.json
diff --git a/tests/snapshots/tests.contrib.crewai.test_crewai.test_crew_with_tool.json b/dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_crew_with_tool.json
similarity index 100%
rename from tests/snapshots/tests.contrib.crewai.test_crewai.test_crew_with_tool.json
rename to dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_crew_with_tool.json
diff --git a/tests/snapshots/tests.contrib.crewai.test_crewai.test_hierarchical_crew.json b/dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_hierarchical_crew.json
similarity index 100%
rename from tests/snapshots/tests.contrib.crewai.test_crewai.test_hierarchical_crew.json
rename to dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_hierarchical_crew.json
diff --git a/tests/snapshots/tests.contrib.crewai.test_crewai.test_simple_flow.json b/dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_simple_flow.json
similarity index 100%
rename from tests/snapshots/tests.contrib.crewai.test_crewai.test_simple_flow.json
rename to dd-trace-py/tests/snapshots/tests.contrib.crewai.test_crewai.test_simple_flow.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_current_root_span.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_current_root_span.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_current_root_span.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_current_root_span.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_current_span.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_current_span.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_current_span.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_current_span.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_exc_info_caught.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_exc_info_caught.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_exc_info_caught.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_exc_info_caught.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_exc_info.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_exc_info.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_exc_info.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_exc_info.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_tags.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_tags.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_tags.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_tags.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_traceback.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_traceback.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_traceback.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_set_traceback.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_span_finish.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_span_finish.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_span_finish.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_span_finish.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_span_finish_with_ancestors.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_span_finish_with_ancestors.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_span_finish_with_ancestors.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_span_finish_with_ancestors.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_start_span.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_start_span.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_start_span.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_start_span.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_trace.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_trace.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_trace.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_trace.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_tracer_set_tags.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_tracer_set_tags.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_tracer_set_tags.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_tracer_set_tags.json
diff --git a/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_wrap.json b/dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_wrap.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_wrap.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ddtrace_api.test_integration.DDTraceAPITestCase.test_wrap.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_appsec_enabled.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_appsec_enabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_appsec_enabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_appsec_enabled.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_appsec_enabled_attack.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_appsec_enabled_attack.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_appsec_enabled_attack.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_appsec_enabled_attack.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_match_403.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_match_403.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_match_403.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_match_403.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_match_403_json.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_match_403_json.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_match_403_json.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_match_403_json.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_nomatch_200.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_nomatch_200.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_nomatch_200.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_appsec_snapshots.test_request_ipblock_nomatch_200.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_404_exceptions.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_404_exceptions.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_404_exceptions.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_404_exceptions.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_200_3x.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_200_3x.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_200_3x.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_200_3x.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_200_traced_simple_app.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_200_traced_simple_app.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_200_traced_simple_app.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_200_traced_simple_app.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_500_3x.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_500_3x.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_500_3x.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_asgi_500_3x.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_djangoq_dd_trace_methods.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_djangoq_dd_trace_methods.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_djangoq_dd_trace_methods.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_djangoq_dd_trace_methods.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_middleware_trace_callable_view.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_middleware_trace_callable_view.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_middleware_trace_callable_view.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_middleware_trace_callable_view.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_middleware_trace_partial_based_view.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_middleware_trace_partial_based_view.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_middleware_trace_partial_based_view.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_middleware_trace_partial_based_view.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_psycopg2_query_default.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_psycopg2_query_default.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_psycopg2_query_default.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_psycopg2_query_default.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_psycopg3_query_default.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_psycopg3_query_default.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_psycopg3_query_default.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_psycopg3_query_default.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_safe_string_encoding.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_safe_string_encoding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_safe_string_encoding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_safe_string_encoding.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_streamed_file.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_streamed_file.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_streamed_file.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_streamed_file.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_templates_disabled_3x.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_templates_disabled_3x.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_templates_disabled_3x.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_templates_disabled_3x.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_templates_enabled_3x.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_templates_enabled_3x.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_templates_enabled_3x.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_templates_enabled_3x.json
diff --git a/tests/snapshots/tests.contrib.django.test_django_snapshots.test_urlpatterns_include.json b/dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_urlpatterns_include.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django.test_django_snapshots.test_urlpatterns_include.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django.test_django_snapshots.test_urlpatterns_include.json
diff --git a/tests/snapshots/tests.contrib.django_hosts.test_django.test_django_hosts_request.json b/dd-trace-py/tests/snapshots/tests.contrib.django_hosts.test_django.test_django_hosts_request.json
similarity index 100%
rename from tests/snapshots/tests.contrib.django_hosts.test_django.test_django_hosts_request.json
rename to dd-trace-py/tests/snapshots/tests.contrib.django_hosts.test_django.test_django_hosts_request.json
diff --git a/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_exception_no_retries.json b/dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_exception_no_retries.json
similarity index 100%
rename from tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_exception_no_retries.json
rename to dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_exception_no_retries.json
diff --git a/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_retry_exception.json b/dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_retry_exception.json
similarity index 100%
rename from tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_retry_exception.json
rename to dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_retry_exception.json
diff --git a/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_task_send.json b/dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_task_send.json
similarity index 100%
rename from tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_task_send.json
rename to dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_task_send.json
diff --git a/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_task_send_with_params.json b/dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_task_send_with_params.json
similarity index 100%
rename from tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_task_send_with_params.json
rename to dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_fn_task_send_with_params.json
diff --git a/tests/snapshots/tests.contrib.dramatiq.test_integration.test_idempotent_patch.json b/dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_idempotent_patch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.dramatiq.test_integration.test_idempotent_patch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_idempotent_patch.json
diff --git a/tests/snapshots/tests.contrib.dramatiq.test_integration.test_send_exception.json b/dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_send_exception.json
similarity index 100%
rename from tests/snapshots/tests.contrib.dramatiq.test_integration.test_send_exception.json
rename to dd-trace-py/tests/snapshots/tests.contrib.dramatiq.test_integration.test_send_exception.json
diff --git a/tests/snapshots/tests.contrib.elasticsearch.test_async.test_elasticsearch.json b/dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_async.test_elasticsearch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.elasticsearch.test_async.test_elasticsearch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_async.test_elasticsearch.json
diff --git a/tests/snapshots/tests.contrib.elasticsearch.test_async.test_elasticsearch7.json b/dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_async.test_elasticsearch7.json
similarity index 100%
rename from tests/snapshots/tests.contrib.elasticsearch.test_async.test_elasticsearch7.json
rename to dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_async.test_elasticsearch7.json
diff --git a/tests/snapshots/tests.contrib.elasticsearch.test_async.test_opensearch.json b/dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_async.test_opensearch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.elasticsearch.test_async.test_opensearch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_async.test_opensearch.json
diff --git a/tests/snapshots/tests.contrib.elasticsearch.test_elasticsearch_multi.test_elasticsearch.json b/dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_elasticsearch_multi.test_elasticsearch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.elasticsearch.test_elasticsearch_multi.test_elasticsearch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_elasticsearch_multi.test_elasticsearch.json
diff --git a/tests/snapshots/tests.contrib.elasticsearch.test_elasticsearch_multi.test_elasticsearch7.json b/dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_elasticsearch_multi.test_elasticsearch7.json
similarity index 100%
rename from tests/snapshots/tests.contrib.elasticsearch.test_elasticsearch_multi.test_elasticsearch7.json
rename to dd-trace-py/tests/snapshots/tests.contrib.elasticsearch.test_elasticsearch_multi.test_elasticsearch7.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_500_error_raised.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_500_error_raised.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_500_error_raised.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_500_error_raised.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_background_task.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_background_task.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_background_task.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_background_task.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_invalid_path_with_obfuscation_enabled.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_invalid_path_with_obfuscation_enabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_invalid_path_with_obfuscation_enabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_invalid_path_with_obfuscation_enabled.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_long_running_websocket_session.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_long_running_websocket_session.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_long_running_websocket_session.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_long_running_websocket_session.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples0]_6_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples0]_6_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples0]_6_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples0]_6_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples0]_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples0]_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples0]_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples0]_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples1]_6_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples1]_6_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples1]_6_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples1]_6_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples1]_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples1]_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples1]_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples1]_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples2]_6_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples2]_6_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples2]_6_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples2]_6_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples2]_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples2]_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples2]_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples2]_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples3]_6_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples3]_6_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples3]_6_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples3]_6_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples3]_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples3]_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples3]_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples3]_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples4]_6_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples4]_6_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples4]_6_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples4]_6_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples4]_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples4]_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples4]_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples4]_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples5]_6_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples5]_6_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples5]_6_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples5]_6_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples5]_9.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples5]_9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples5]_9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_schematization[schema_tuples5]_9.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_subapp_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_subapp_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_subapp_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_subapp_snapshot.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_table_query_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_table_query_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_table_query_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_table_query_snapshot.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_traced_websocket.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_traced_websocket.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_traced_websocket.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_traced_websocket.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_tracing_in_middleware.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_tracing_in_middleware.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_tracing_in_middleware.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_tracing_in_middleware.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_context_propagation.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_context_propagation.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_context_propagation.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_context_propagation.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_only_sends.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_only_sends.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_only_sends.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_only_sends.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_tracing_not_separate_traces.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_tracing_not_separate_traces.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_tracing_not_separate_traces.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_tracing_not_separate_traces.json
diff --git a/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_tracing_sampling_not_inherited.json b/dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_tracing_sampling_not_inherited.json
similarity index 100%
rename from tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_tracing_sampling_not_inherited.json
rename to dd-trace-py/tests/snapshots/tests.contrib.fastapi.test_fastapi.test_websocket_tracing_sampling_not_inherited.json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403[flask_appsec_good_rules_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403[flask_appsec_good_rules_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403[flask_appsec_good_rules_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403[flask_appsec_good_rules_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403[flask_appsec_good_rules_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403[flask_appsec_good_rules_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403[flask_appsec_good_rules_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403[flask_appsec_good_rules_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403_json[flask_appsec_good_rules_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403_json[flask_appsec_good_rules_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403_json[flask_appsec_good_rules_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403_json[flask_appsec_good_rules_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403_json[flask_appsec_good_rules_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403_json[flask_appsec_good_rules_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403_json[flask_appsec_good_rules_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_ipblock_match_403_json[flask_appsec_good_rules_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_osspawn[flask_appsec_good_rules_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_osspawn[flask_appsec_good_rules_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_osspawn[flask_appsec_good_rules_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_osspawn[flask_appsec_good_rules_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_osspawn[flask_appsec_good_rules_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_osspawn[flask_appsec_good_rules_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_osspawn[flask_appsec_good_rules_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_osspawn[flask_appsec_good_rules_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_ossystem[flask_appsec_good_rules_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_ossystem[flask_appsec_good_rules_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_ossystem[flask_appsec_good_rules_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_ossystem[flask_appsec_good_rules_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_ossystem[flask_appsec_good_rules_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_ossystem[flask_appsec_good_rules_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_ossystem[flask_appsec_good_rules_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_ossystem[flask_appsec_good_rules_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicatenoshell[flask_appsec_good_rules_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicatenoshell[flask_appsec_good_rules_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicatenoshell[flask_appsec_good_rules_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicatenoshell[flask_appsec_good_rules_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicatenoshell[flask_appsec_good_rules_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicatenoshell[flask_appsec_good_rules_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicatenoshell[flask_appsec_good_rules_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicatenoshell[flask_appsec_good_rules_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicateshell[flask_appsec_good_rules_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicateshell[flask_appsec_good_rules_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicateshell[flask_appsec_good_rules_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicateshell[flask_appsec_good_rules_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicateshell[flask_appsec_good_rules_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicateshell[flask_appsec_good_rules_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicateshell[flask_appsec_good_rules_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_processexec_subprocesscommunicateshell[flask_appsec_good_rules_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_200_json[flask_appsec_good_rules_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_200_json[flask_appsec_good_rules_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_200_json[flask_appsec_good_rules_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_200_json[flask_appsec_good_rules_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_200_json[flask_appsec_good_rules_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_200_json[flask_appsec_good_rules_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_200_json[flask_appsec_good_rules_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_200_json[flask_appsec_good_rules_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_403_json[flask_appsec_good_rules_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_403_json[flask_appsec_good_rules_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_403_json[flask_appsec_good_rules_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_403_json[flask_appsec_good_rules_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_403_json[flask_appsec_good_rules_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_403_json[flask_appsec_good_rules_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_403_json[flask_appsec_good_rules_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_appsec_flask_snapshot.test_flask_userblock_match_403_json[flask_appsec_good_rules_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_200[flask_default_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_200[flask_default_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_200[flask_default_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_200[flask_default_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_200[flask_default_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_200[flask_default_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_200[flask_default_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_200[flask_default_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_get_user[flask_default_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_get_user[flask_default_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_get_user[flask_default_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_get_user[flask_default_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_get_user[flask_default_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_get_user[flask_default_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_get_user[flask_default_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_get_user[flask_default_env]_220.json
diff --git a/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_stream[flask_default_env].json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_stream[flask_default_env].json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_stream[flask_default_env].json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_stream[flask_default_env].json
diff --git a/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_stream[flask_default_env]_220.json b/dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_stream[flask_default_env]_220.json
similarity index 100%
rename from tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_stream[flask_default_env]_220.json
rename to dd-trace-py/tests/snapshots/tests.contrib.flask.test_flask_snapshot.test_flask_stream[flask_default_env]_220.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_publish.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_publish.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_publish.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_publish.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_publish_future_error.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_publish_future_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_publish_future_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_publish_future_error.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_callback_error.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_callback_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_callback_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_callback_error.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_as_span_links_disabled.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_as_span_links_disabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_as_span_links_disabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_as_span_links_disabled.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_as_span_links_enabled.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_as_span_links_enabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_as_span_links_enabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_as_span_links_enabled.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_disabled.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_disabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_disabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub.test_subscribe_propagation_disabled.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_creates_inferred_span.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_creates_inferred_span.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_creates_inferred_span.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_creates_inferred_span.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_error_propagates_to_inferred_span.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_error_propagates_to_inferred_span.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_error_propagates_to_inferred_span.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_error_propagates_to_inferred_span.json
diff --git a/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_propagation_as_span_links.json b/dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_propagation_as_span_links.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_propagation_as_span_links.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_cloud_pubsub.test_pubsub_push.test_push_subscription_propagation_as_span_links.json
diff --git a/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_chat_send_message.json b/dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_chat_send_message.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_chat_send_message.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_chat_send_message.json
diff --git a/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_embed_content.json b/dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_embed_content.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_embed_content.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_embed_content.json
diff --git a/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_embed_content_error.json b/dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_embed_content_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_embed_content_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_embed_content_error.json
diff --git a/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content.json b/dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content.json
diff --git a/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_error.json b/dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_error.json
diff --git a/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_stream.json
diff --git a/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_stream_error.json b/dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_stream_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_stream_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_stream_error.json
diff --git a/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_with_tools.json b/dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_with_tools.json
similarity index 100%
rename from tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_with_tools.json
rename to dd-trace-py/tests/snapshots/tests.contrib.google_genai.test_google_genai.test_google_genai_generate_content_with_tools.json
diff --git a/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_execute.json b/dd-trace-py/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_execute.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_execute.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_execute.json
diff --git a/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_execute_with_resolvers.json b/dd-trace-py/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_execute_with_resolvers.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_execute_with_resolvers.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_execute_with_resolvers.json
diff --git a/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_failing_execute.json b/dd-trace-py/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_failing_execute.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_failing_execute.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_failing_execute.json
diff --git a/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_failing_extensions.json b/dd-trace-py/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_failing_extensions.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_failing_extensions.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphene.test_graphene.test_schema_failing_extensions.json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql.json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql.json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_error.json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_error.json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_execute_with_middleware.json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_execute_with_middleware.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_execute_with_middleware.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_execute_with_middleware.json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_fail_2.x.json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_fail_2.x.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_fail_2.x.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_fail_2.x.json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_with_document_with_no_location.json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_with_document_with_no_location.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_with_document_with_no_location.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_with_document_with_no_location.json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_with_traced_resolver.json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_with_traced_resolver.json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_with_traced_resolver.json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_graphql_with_traced_resolver.json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-None].json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-None].json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-v0].json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-v0].json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-v1].json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[None-v1].json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-None].json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-None].json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-v0].json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-v0].json
diff --git a/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-v1].json b/dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.graphql.test_graphql.test_span_schematization[my-service-v1].json
diff --git a/tests/snapshots/tests.contrib.grpc.test_grpc.test_method_service.json b/dd-trace-py/tests/snapshots/tests.contrib.grpc.test_grpc.test_method_service.json
similarity index 100%
rename from tests/snapshots/tests.contrib.grpc.test_grpc.test_method_service.json
rename to dd-trace-py/tests/snapshots/tests.contrib.grpc.test_grpc.test_method_service.json
diff --git a/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-None].json b/dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-None].json
diff --git a/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-v0].json b/dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-v0].json
diff --git a/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-v1].json b/dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[None-v1].json
diff --git a/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-None].json b/dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-None].json
diff --git a/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-v0].json b/dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-v0].json
diff --git a/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-v1].json b/dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.gunicorn.test_gunicorn.test_span_schematization[mysvc-v1].json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_configure_service_name.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_configure_service_name.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_configure_service_name.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_configure_service_name.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_configure_service_name_env.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_configure_service_name_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_configure_service_name_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_configure_service_name_env.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_get_200.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_get_200.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_get_200.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_get_200.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_get_500.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_get_500.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_get_500.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_get_500.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_httpx_service_name.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_httpx_service_name.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_httpx_service_name.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_httpx_service_name.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_request_headers.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_request_headers.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_request_headers.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_request_headers.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_default.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_default.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_default.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_default.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_v0.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_v0.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_v0.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_v0.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_v1.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_v1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_v1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_configure_global_service_name_env_v1.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_operation_name_env_v0.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_operation_name_env_v0.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_operation_name_env_v0.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_operation_name_env_v0.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_operation_name_env_v1.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_operation_name_env_v1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_operation_name_env_v1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_operation_name_env_v1.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_default.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_default.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_default.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_default.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_v0.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_v0.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_v0.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_v0.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_v1.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_v1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_v1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_schematized_unspecified_service_name_env_v1.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_split_by_domain.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_split_by_domain.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_split_by_domain.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_split_by_domain.json
diff --git a/tests/snapshots/tests.contrib.httpx.test_httpx.test_trace_query_string.json b/dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_trace_query_string.json
similarity index 100%
rename from tests/snapshots/tests.contrib.httpx.test_httpx.test_trace_query_string.json
rename to dd-trace-py/tests/snapshots/tests.contrib.httpx.test_httpx.test_trace_query_string.json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit.json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_commit.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit.json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_consume_single_message.json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_consume_single_message.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_consume_single_message.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_consume_single_message.json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_consume_with_multiple_messages.json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_consume_with_multiple_messages.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_consume_with_multiple_messages.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_consume_with_multiple_messages.json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_offset.json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_offset.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_offset.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_offset.json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_only_async_arg.json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_only_async_arg.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_only_async_arg.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_commit_with_only_async_arg.json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_message[False].json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_message[False].json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_message[False].json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_message[False].json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_message[True].json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_message[True].json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_message[True].json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_message[True].json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[None-None].json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[None-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[None-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[None-None].json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[None-mysvc].json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[None-mysvc].json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[None-mysvc].json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[None-mysvc].json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v0-None].json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v0-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v0-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v0-None].json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v0-mysvc].json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v0-mysvc].json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v0-mysvc].json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v0-mysvc].json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v1-None].json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v1-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v1-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v1-None].json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v1-mysvc].json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v1-mysvc].json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v1-mysvc].json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_schematized_span_service_and_operation[v1-mysvc].json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_service_override.json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_service_override.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_service_override.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_service_override.json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka.test_service_override_env_var.json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_service_override_env_var.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka.test_service_override_env_var.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka.test_service_override_env_var.json
diff --git a/tests/snapshots/tests.contrib.kafka.test_kafka_dsm.test_data_streams_kafka_enabled.json b/dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka_dsm.test_data_streams_kafka_enabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kafka.test_kafka_dsm.test_data_streams_kafka_enabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kafka.test_kafka_dsm.test_data_streams_kafka_enabled.json
diff --git a/tests/snapshots/tests.contrib.kombu.test.test_data_streams_kombu_enabled.json b/dd-trace-py/tests/snapshots/tests.contrib.kombu.test.test_data_streams_kombu_enabled.json
similarity index 100%
rename from tests/snapshots/tests.contrib.kombu.test.test_data_streams_kombu_enabled.json
rename to dd-trace-py/tests/snapshots/tests.contrib.kombu.test.test_data_streams_kombu_enabled.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_base_tool_invoke.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_base_tool_invoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_base_tool_invoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_base_tool_invoke.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_base_tool_invoke_non_json_serializable_config.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_base_tool_invoke_non_json_serializable_config.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_base_tool_invoke_non_json_serializable_config.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_base_tool_invoke_non_json_serializable_config.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_batch.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_batch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_batch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_batch.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_batch_async.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_batch_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_batch_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_batch_async.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_complicated.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_complicated.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_complicated.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_complicated.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_non_dict_input.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_non_dict_input.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_non_dict_input.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_non_dict_input.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_simple.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_simple.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_simple.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_simple.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_simple_async.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_simple_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_simple_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_chain_simple_async.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_with_tools_anthropic.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_with_tools_anthropic.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_with_tools_anthropic.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_with_tools_anthropic.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_with_tools_openai.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_with_tools_openai.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_with_tools_openai.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_lcel_with_tools_openai.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_async_generate.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_async_generate.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_async_generate.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_async_generate.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_call_langchain_openai.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_call_langchain_openai.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_call_langchain_openai.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_call_langchain_openai.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_call_langchain_openai_async.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_call_langchain_openai_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_call_langchain_openai_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_call_langchain_openai_async.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_generate.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_generate.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_generate.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_chat_model_sync_generate.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_embedding_document.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_embedding_document.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_embedding_document.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_embedding_document.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_embedding_query.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_embedding_query.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_embedding_query.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_embedding_query.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_async.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_async.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_error.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_error.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_sync.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_sync.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_sync.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_sync.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_sync_multiple_prompts.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_sync_multiple_prompts.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_sync_multiple_prompts.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_openai_llm_sync_multiple_prompts.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_abatch.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_abatch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_abatch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_abatch.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_ainvoke.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_ainvoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_ainvoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_ainvoke.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_batch.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_batch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_batch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_batch.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_invoke.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_invoke.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_invoke.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_runnable_lambda_invoke.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chain.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chain.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chain.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chain.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chat.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chat.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chat.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chat.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chat_model_with_no_output.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chat_model_with_no_output.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chat_model_with_no_output.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_chat_model_with_no_output.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_json_output_parser.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_json_output_parser.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_json_output_parser.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_json_output_parser.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_llm.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_llm.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_llm.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_streamed_llm.json
diff --git a/tests/snapshots/tests.contrib.langchain.test_langchain.test_vectorstore_similarity_search.json b/dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_vectorstore_similarity_search.json
similarity index 100%
rename from tests/snapshots/tests.contrib.langchain.test_langchain.test_vectorstore_similarity_search.json
rename to dd-trace-py/tests/snapshots/tests.contrib.langchain.test_langchain.test_vectorstore_similarity_search.json
diff --git a/tests/snapshots/tests.contrib.litellm.test_litellm.test_litellm_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.litellm.test_litellm.test_litellm_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.litellm.test_litellm.test_litellm_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.litellm.test_litellm.test_litellm_completion.json
diff --git a/tests/snapshots/tests.contrib.litellm.test_litellm.test_litellm_router_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.litellm.test_litellm.test_litellm_router_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.litellm.test_litellm.test_litellm_router_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.litellm.test_litellm.test_litellm_router_completion.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_apredict.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_apredict.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_apredict.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_apredict.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_async.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_async.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_error.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_error.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_chat_stream.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete_async.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete_async.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_complete_stream.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_embedding_batch.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_embedding_batch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_embedding_batch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_embedding_batch.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_embedding_query.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_embedding_query.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_embedding_query.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_embedding_query.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_openai_embedding.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_openai_embedding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_openai_embedding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_openai_embedding.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_predict.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_predict.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_predict.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_predict.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_query_engine.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_query_engine.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_query_engine.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_query_engine.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_query_engine_async.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_query_engine_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_query_engine_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_query_engine_async.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_retriever.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_retriever.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_retriever.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_retriever.json
diff --git a/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_retriever_async.json b/dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_retriever_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_retriever_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.llama_index.test_llama_index.test_llama_index_retriever_async.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_commit_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_commit_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_commit_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_commit_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_commit_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_commit_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_commit_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_commit_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_many_fetchall_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_many_fetchall_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_many_fetchall_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_many_fetchall_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_many_fetchall_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_many_fetchall_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_many_fetchall_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_many_fetchall_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_proc_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_proc_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_proc_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_proc_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_proc_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_proc_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_proc_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_proc_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_fetchall_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_fetchall_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_fetchall_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_fetchall_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_fetchall_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_fetchall_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_fetchall_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_fetchall_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_query_with_several_rows_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema0]_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema0]_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema0]_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema0]_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema0]_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema0]_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema0]_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema0]_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema1]_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema1]_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema1]_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema1]_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema1]_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema1]_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema1]_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema1]_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema2]_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema2]_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema2]_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema2]_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema2]_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema2]_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema2]_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema2]_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema3]_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema3]_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema3]_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema3]_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema3]_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema3]_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema3]_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema3]_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema4]_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema4]_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema4]_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema4]_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema4]_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema4]_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema4]_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema4]_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema5]_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema5]_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema5]_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema5]_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema5]_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema5]_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema5]_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_schematized_service_and_operation[service_schema5]_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_malformed_query_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_malformed_query_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_malformed_query_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_malformed_query_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_malformed_query_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_malformed_query_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_malformed_query_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_malformed_query_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_fetchall_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_fetchall_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_fetchall_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_fetchall_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_fetchall_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_fetchall_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_fetchall_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_fetchall_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_simple_query_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_user_specified_dd_mariadb_service_snapshot_post_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_user_specified_dd_mariadb_service_snapshot_post_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_user_specified_dd_mariadb_service_snapshot_post_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_user_specified_dd_mariadb_service_snapshot_post_1_1.json
diff --git a/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_user_specified_dd_mariadb_service_snapshot_pre_1_1.json b/dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_user_specified_dd_mariadb_service_snapshot_pre_1_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mariadb.test_mariadb.test_user_specified_dd_mariadb_service_snapshot_pre_1_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mariadb.test_mariadb.test_user_specified_dd_mariadb_service_snapshot_pre_1_1.json
diff --git a/tests/snapshots/tests.contrib.mcp.test_mcp.test_mcp_tool_call.json b/dd-trace-py/tests/snapshots/tests.contrib.mcp.test_mcp.test_mcp_tool_call.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mcp.test_mcp.test_mcp_tool_call.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mcp.test_mcp.test_mcp_tool_call.json
diff --git a/tests/snapshots/tests.contrib.mcp.test_mcp.test_mcp_tool_error.json b/dd-trace-py/tests/snapshots/tests.contrib.mcp.test_mcp.test_mcp_tool_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mcp.test_mcp.test_mcp_tool_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mcp.test_mcp.test_mcp_tool_error.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_context_manager_run.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_context_manager_run.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_context_manager_run.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_context_manager_run.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_error_in_run.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_error_in_run.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_error_in_run.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_error_in_run.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_manual_run.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_manual_run.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_manual_run.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_manual_run.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_multiple_steps.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_multiple_steps.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_multiple_steps.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_multiple_steps.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_nested_run.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_nested_run.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_nested_run.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_mlflow_nested_run.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_model_lab_enabled_activates_mlflow_tracing_and_log_injection.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_model_lab_enabled_activates_mlflow_tracing_and_log_injection.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow.test_model_lab_enabled_activates_mlflow_tracing_and_log_injection.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow.test_model_lab_enabled_activates_mlflow_tracing_and_log_injection.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_on_the_same_run.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_on_the_same_run.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_on_the_same_run.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_on_the_same_run.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_specifying_new_run.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_specifying_new_run.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_specifying_new_run.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_specifying_new_run.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_specifying_same_run.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_specifying_same_run.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_specifying_same_run.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_specifying_same_run.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_without_explicit_run_id_global_stack.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_without_explicit_run_id_global_stack.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_without_explicit_run_id_global_stack.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_without_explicit_run_id_global_stack.json
diff --git a/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_without_explicit_run_id_thread_local.json b/dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_without_explicit_run_id_thread_local.json
similarity index 100%
rename from tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_without_explicit_run_id_thread_local.json
rename to dd-trace-py/tests/snapshots/tests.contrib.mlflow.test_mlflow_thread.test_mlflow_multithreaded_steps_without_explicit_run_id_thread_local.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_acompletion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_acompletion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_acompletion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_acompletion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_chat_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_chat_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_chat_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_chat_completion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_completion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_embedding.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_embedding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_embedding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_azure_openai_embedding.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_function_calling.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_function_calling.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_function_calling.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_function_calling.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_image_input.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_image_input.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_image_input.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_image_input.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_chat_completion_stream.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_completion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_completion_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_completion_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_completion_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_completion_stream.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_create_moderation.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_create_moderation.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_create_moderation.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_create_moderation.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_embedding.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_embedding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_embedding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_embedding.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_array_of_token_arrays.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_array_of_token_arrays.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_embedding_array_of_token_arrays.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_array_of_token_arrays.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_string_array.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_string_array.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_embedding_string_array.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_string_array.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_token_array.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_token_array.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_embedding_token_array.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_embedding_token_array.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_file_create.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_create.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_file_create.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_create.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_file_delete.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_delete.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_file_delete.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_delete.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_file_download.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_download.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_file_download.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_download.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_file_list.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_list.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_file_list.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_list.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_file_retrieve.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_retrieve.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_file_retrieve.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_file_retrieve.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_image_b64_json_response.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_image_b64_json_response.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_image_b64_json_response.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_image_b64_json_response.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_image_create.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_image_create.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_image_create.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_image_create.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_misuse.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_misuse.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_misuse.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_misuse.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_model_alist_pagination.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_alist_pagination.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_model_alist_pagination.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_alist_pagination.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_model_delete.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_delete.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_model_delete.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_delete.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_model_list.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_list.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_model_list.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_list.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_model_list_pagination.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_list_pagination.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_model_list_pagination.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_list_pagination.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_model_retrieve.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_retrieve.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_model_retrieve.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_model_retrieve.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_response.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_response.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_response_error.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_response_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response_error.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_response_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_response_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response_stream.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_response_tools.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response_tools.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_response_tools.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response_tools.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_response_tools_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response_tools_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_response_tools_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_response_tools_stream.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai.test_span_finish_on_stream_error.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_span_finish_on_stream_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai.test_span_finish_on_stream_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai.test_span_finish_on_stream_error.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_achat_completion_parse.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_achat_completion_parse.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_achat_completion_parse.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_achat_completion_parse.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_aresponse_parse.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_aresponse_parse.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_aresponse_parse.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_aresponse_parse.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_acompletion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_acompletion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_acompletion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_acompletion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_aembedding.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_aembedding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_aembedding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_aembedding.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_chat_acompletion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_chat_acompletion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_chat_acompletion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_chat_acompletion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_chat_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_chat_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_chat_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_chat_completion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_completion.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_embedding.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_embedding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_embedding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_azure_openai_embedding.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_chat_completion_parse.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_chat_completion_parse.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_chat_completion_parse.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_chat_completion_parse.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_chat_completion_resp_returns.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_chat_completion_resp_returns.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_chat_completion_resp_returns.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_chat_completion_resp_returns.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_completion_resp_returns.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_completion_resp_returns.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_completion_resp_returns.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_completion_resp_returns.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_response_resp_returns.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_response_resp_returns.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_response_resp_returns.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_empty_streamed_response_resp_returns.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_async.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_async.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_async.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_async.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-None].json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-None].json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-v0].json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-v0].json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-v1].json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[None-v1].json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-None].json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-None].json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-v0].json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-v0].json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-v1].json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_service_name[mysvc-v1].json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_sync.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_sync.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_sync.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_integration_sync.json
diff --git a/tests/snapshots/tests.contrib.openai.test_openai_v1.test_response_parse.json b/dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_response_parse.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai.test_openai_v1.test_response_parse.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai.test_openai_v1.test_response_parse.json
diff --git a/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents.json b/dd-trace-py/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents.json
diff --git a/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_streaming.json b/dd-trace-py/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_streaming.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_streaming.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_streaming.json
diff --git a/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_sync.json b/dd-trace-py/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_sync.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_sync.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_sync.json
diff --git a/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_with_tool_error.json b/dd-trace-py/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_with_tool_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_with_tool_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.openai_agents.test_openai_agents.test_openai_agents_with_tool_error.json
diff --git a/tests/snapshots/tests.contrib.psycopg.test_psycopg.test_composed_query_encoding.json b/dd-trace-py/tests/snapshots/tests.contrib.psycopg.test_psycopg.test_composed_query_encoding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.psycopg.test_psycopg.test_composed_query_encoding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.psycopg.test_psycopg.test_composed_query_encoding.json
diff --git a/tests/snapshots/tests.contrib.psycopg.test_psycopg.test_postgres_dbm_propagation_tag.json b/dd-trace-py/tests/snapshots/tests.contrib.psycopg.test_psycopg.test_postgres_dbm_propagation_tag.json
similarity index 100%
rename from tests/snapshots/tests.contrib.psycopg.test_psycopg.test_postgres_dbm_propagation_tag.json
rename to dd-trace-py/tests/snapshots/tests.contrib.psycopg.test_psycopg.test_postgres_dbm_propagation_tag.json
diff --git a/tests/snapshots/tests.contrib.psycopg.test_psycopg_snapshot.test_connect_traced.json b/dd-trace-py/tests/snapshots/tests.contrib.psycopg.test_psycopg_snapshot.test_connect_traced.json
similarity index 100%
rename from tests/snapshots/tests.contrib.psycopg.test_psycopg_snapshot.test_connect_traced.json
rename to dd-trace-py/tests/snapshots/tests.contrib.psycopg.test_psycopg_snapshot.test_connect_traced.json
diff --git a/tests/snapshots/tests.contrib.psycopg.test_psycopg_snapshot.test_connect_traced_via_env.json b/dd-trace-py/tests/snapshots/tests.contrib.psycopg.test_psycopg_snapshot.test_connect_traced_via_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.psycopg.test_psycopg_snapshot.test_connect_traced_via_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.psycopg.test_psycopg_snapshot.test_connect_traced_via_env.json
diff --git a/tests/snapshots/tests.contrib.psycopg2.test_psycopg.test_composed_query_encoding.json b/dd-trace-py/tests/snapshots/tests.contrib.psycopg2.test_psycopg.test_composed_query_encoding.json
similarity index 100%
rename from tests/snapshots/tests.contrib.psycopg2.test_psycopg.test_composed_query_encoding.json
rename to dd-trace-py/tests/snapshots/tests.contrib.psycopg2.test_psycopg.test_composed_query_encoding.json
diff --git a/tests/snapshots/tests.contrib.psycopg2.test_psycopg.test_postgres_dbm_propagation_tag.json b/dd-trace-py/tests/snapshots/tests.contrib.psycopg2.test_psycopg.test_postgres_dbm_propagation_tag.json
similarity index 100%
rename from tests/snapshots/tests.contrib.psycopg2.test_psycopg.test_postgres_dbm_propagation_tag.json
rename to dd-trace-py/tests/snapshots/tests.contrib.psycopg2.test_psycopg.test_postgres_dbm_propagation_tag.json
diff --git a/tests/snapshots/tests.contrib.psycopg2.test_psycopg_snapshot.test_connect_traced.json b/dd-trace-py/tests/snapshots/tests.contrib.psycopg2.test_psycopg_snapshot.test_connect_traced.json
similarity index 100%
rename from tests/snapshots/tests.contrib.psycopg2.test_psycopg_snapshot.test_connect_traced.json
rename to dd-trace-py/tests/snapshots/tests.contrib.psycopg2.test_psycopg_snapshot.test_connect_traced.json
diff --git a/tests/snapshots/tests.contrib.psycopg2.test_psycopg_snapshot.test_connect_traced_via_env.json b/dd-trace-py/tests/snapshots/tests.contrib.psycopg2.test_psycopg_snapshot.test_connect_traced_via_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.psycopg2.test_psycopg_snapshot.test_connect_traced_via_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.psycopg2.test_psycopg_snapshot.test_connect_traced_via_env.json
diff --git a/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_run.json b/dd-trace-py/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_run.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_run.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_run.json
diff --git a/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_run_error.json b/dd-trace-py/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_run_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_run_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_run_error.json
diff --git a/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_with_tools.json b/dd-trace-py/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_with_tools.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_with_tools.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pydantic_ai.test_pydantic_ai.test_agent_with_tools.json
diff --git a/tests/snapshots/tests.contrib.pyramid.test_pyramid.test_simple_pyramid_app_endpoint[ddtrace-run_pserve_tests_contrib_pyramid_pserve_app_development.ini].json b/dd-trace-py/tests/snapshots/tests.contrib.pyramid.test_pyramid.test_simple_pyramid_app_endpoint[ddtrace-run_pserve_tests_contrib_pyramid_pserve_app_development.ini].json
similarity index 100%
rename from tests/snapshots/tests.contrib.pyramid.test_pyramid.test_simple_pyramid_app_endpoint[ddtrace-run_pserve_tests_contrib_pyramid_pserve_app_development.ini].json
rename to dd-trace-py/tests/snapshots/tests.contrib.pyramid.test_pyramid.test_simple_pyramid_app_endpoint[ddtrace-run_pserve_tests_contrib_pyramid_pserve_app_development.ini].json
diff --git a/tests/snapshots/tests.contrib.pyramid.test_pyramid.test_simple_pyramid_app_endpoint[ddtrace-run_python_tests_contrib_pyramid_app_app.py].json b/dd-trace-py/tests/snapshots/tests.contrib.pyramid.test_pyramid.test_simple_pyramid_app_endpoint[ddtrace-run_python_tests_contrib_pyramid_app_app.py].json
similarity index 100%
rename from tests/snapshots/tests.contrib.pyramid.test_pyramid.test_simple_pyramid_app_endpoint[ddtrace-run_python_tests_contrib_pyramid_app_app.py].json
rename to dd-trace-py/tests/snapshots/tests.contrib.pyramid.test_pyramid.test_simple_pyramid_app_endpoint[ddtrace-run_python_tests_contrib_pyramid_app_app.py].json
diff --git a/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_will_include_lines_pct.json b/dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_will_include_lines_pct.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_will_include_lines_pct.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_will_include_lines_pct.json
diff --git a/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_with_ddtrace_patch_all.json b/dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_with_ddtrace_patch_all.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_with_ddtrace_patch_all.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_with_ddtrace_patch_all.json
diff --git a/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_wont_include_lines_pct_if_report_empty.json b/dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_wont_include_lines_pct_if_report_empty.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_wont_include_lines_pct_if_report_empty.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_snapshot_v2.test_pytest_wont_include_lines_pct_if_report_empty.json
diff --git a/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_n2_wont_include_lines_pct_if_report_empty.json b/dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_n2_wont_include_lines_pct_if_report_empty.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_n2_wont_include_lines_pct_if_report_empty.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_n2_wont_include_lines_pct_if_report_empty.json
diff --git a/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_will_include_lines_pct.json b/dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_will_include_lines_pct.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_will_include_lines_pct.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_will_include_lines_pct.json
diff --git a/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_with_ddtrace_patch_all.json b/dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_with_ddtrace_patch_all.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_with_ddtrace_patch_all.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_with_ddtrace_patch_all.json
diff --git a/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_wont_include_lines_pct_if_report_empty.json b/dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_wont_include_lines_pct_if_report_empty.json
similarity index 100%
rename from tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_wont_include_lines_pct_if_report_empty.json
rename to dd-trace-py/tests/snapshots/tests.contrib.pytest.snapshot.test_pytest_xdist_snapshot.test_pytest_xdist_wont_include_lines_pct_if_report_empty.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_actor_without_init.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_actor_without_init.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_actor_without_init.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_actor_without_init.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_job_name_specified.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_job_name_specified.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_job_name_specified.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_job_name_specified.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_task_without_init.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_task_without_init.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_task_without_init.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.TestRayWithoutInit.test_task_without_init.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_actor_and_task.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_actor_and_task.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_actor_and_task.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_actor_and_task.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_actor_interactions.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_actor_interactions.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_actor_interactions.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_actor_interactions.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_args_kwargs.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_args_kwargs.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_args_kwargs.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_args_kwargs.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_core_api_deactivated.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_core_api_deactivated.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_core_api_deactivated.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_core_api_deactivated.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_nested_tasks.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_nested_tasks.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_nested_tasks.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_nested_tasks.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_service_name.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_service_name.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_service_name.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_service_name.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_simple_actor.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_actor.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_simple_actor.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_actor.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_simple_get.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_get.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_simple_get.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_get.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_simple_put.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_put.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_simple_put.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_put.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_simple_task.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_task.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_simple_task.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_task.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_simple_wait.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_wait.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_simple_wait.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_simple_wait.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_task_error.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_task_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_task_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_task_error.json
diff --git a/tests/snapshots/tests.contrib.ray.test_ray.test_use_entrypoint_service_name.json b/dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_use_entrypoint_service_name.json
similarity index 100%
rename from tests/snapshots/tests.contrib.ray.test_ray.test_use_entrypoint_service_name.json
rename to dd-trace-py/tests/snapshots/tests.contrib.ray.test_ray.test_use_entrypoint_service_name.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_analytics_with_rate.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_analytics_with_rate.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_analytics_with_rate.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_analytics_with_rate.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_analytics_without_rate.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_analytics_without_rate.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_analytics_without_rate.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_analytics_without_rate.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_basics.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_basics.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_basics.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_basics.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_custom_cmd_length.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_custom_cmd_length.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_custom_cmd_length.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_custom_cmd_length.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_custom_cmd_length_env.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_custom_cmd_length_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_custom_cmd_length_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_custom_cmd_length_env.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_env_user_specified_redis_service.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_env_user_specified_redis_service.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_env_user_specified_redis_service.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_env_user_specified_redis_service.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_full_command_in_resource_config.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_full_command_in_resource_config.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_full_command_in_resource_config.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_full_command_in_resource_config.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_full_command_in_resource_env.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_full_command_in_resource_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_full_command_in_resource_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_full_command_in_resource_env.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_long_command.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_long_command.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_long_command.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_long_command.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_meta_override.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_meta_override.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_meta_override.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_meta_override.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_opentracing.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_opentracing.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_opentracing.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_opentracing.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_pipeline_immediate.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_pipeline_immediate.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_pipeline_immediate.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_pipeline_immediate.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_pipeline_traced.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_pipeline_traced.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_pipeline_traced.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_pipeline_traced.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_service_precedence.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_service_precedence.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_service_precedence.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_service_precedence.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_unicode.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_unicode.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_unicode.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_unicode.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis.test_user_specified_service.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_user_specified_service.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis.test_user_specified_service.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis.test_user_specified_service.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_basic_request.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_basic_request.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_basic_request.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_basic_request.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_client_name.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_client_name.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_client_name.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_client_name.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_connection_error.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_connection_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_connection_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_connection_error.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_decoding_non_utf8_args.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_decoding_non_utf8_args.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_decoding_non_utf8_args.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_decoding_non_utf8_args.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_decoding_non_utf8_pipeline_args.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_decoding_non_utf8_pipeline_args.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_decoding_non_utf8_pipeline_args.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_decoding_non_utf8_pipeline_args.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_long_command.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_long_command.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_long_command.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_long_command.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_override_service_name.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_override_service_name.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_override_service_name.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_override_service_name.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_parenting.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_parenting.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_parenting.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_parenting.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_pipeline_traced.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_pipeline_traced.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_pipeline_traced.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_pipeline_traced.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_pipeline_traced_context_manager_transaction.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_pipeline_traced_context_manager_transaction.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_pipeline_traced_context_manager_transaction.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_pipeline_traced_context_manager_transaction.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_two_traced_pipelines.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_two_traced_pipelines.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_two_traced_pipelines.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_two_traced_pipelines.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_unicode_request.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_unicode_request.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_unicode_request.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_asyncio.test_unicode_request.json
diff --git a/tests/snapshots/tests.contrib.redis.test_redis_cluster_asyncio.test_pipeline_command_stack_count_matches_metric.json b/dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_cluster_asyncio.test_pipeline_command_stack_count_matches_metric.json
similarity index 100%
rename from tests/snapshots/tests.contrib.redis.test_redis_cluster_asyncio.test_pipeline_command_stack_count_matches_metric.json
rename to dd-trace-py/tests/snapshots/tests.contrib.redis.test_redis_cluster_asyncio.test_pipeline_command_stack_count_matches_metric.json
diff --git a/tests/snapshots/tests.contrib.rediscluster.test.test_cmd_max_length.json b/dd-trace-py/tests/snapshots/tests.contrib.rediscluster.test.test_cmd_max_length.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rediscluster.test.test_cmd_max_length.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rediscluster.test.test_cmd_max_length.json
diff --git a/tests/snapshots/tests.contrib.rediscluster.test.test_full_command_in_resource_config.json b/dd-trace-py/tests/snapshots/tests.contrib.rediscluster.test.test_full_command_in_resource_config.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rediscluster.test.test_full_command_in_resource_config.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rediscluster.test.test_full_command_in_resource_config.json
diff --git a/tests/snapshots/tests.contrib.rediscluster.test.test_full_command_in_resource_env.json b/dd-trace-py/tests/snapshots/tests.contrib.rediscluster.test.test_full_command_in_resource_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rediscluster.test.test_full_command_in_resource_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rediscluster.test.test_full_command_in_resource_env.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_custom_job_id_in_span_tags.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_custom_job_id_in_span_tags.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_custom_job_id_in_span_tags.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_custom_job_id_in_span_tags.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_False_worker_service_None.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_False_worker_service_None.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_False_worker_service_None.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_False_worker_service_None.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_False_worker_service_custom-worker-service.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_False_worker_service_custom-worker-service.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_False_worker_service_custom-worker-service.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_False_worker_service_custom-worker-service.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_None_worker_service_None.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_None_worker_service_None.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_None_worker_service_None.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_None_worker_service_None.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_None_worker_service_custom-worker-service.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_None_worker_service_custom-worker-service.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_None_worker_service_custom-worker-service.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_enqueue_distributed_tracing_enabled_None_worker_service_custom-worker-service.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_queue_failing_job.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_queue_failing_job.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_queue_failing_job.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_queue_failing_job.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_queue_failing_job_pre_1_10_1.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_queue_failing_job_pre_1_10_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_queue_failing_job_pre_1_10_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_queue_failing_job_pre_1_10_1.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema0].json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema0].json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema0]_pre_1_10_1.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema0]_pre_1_10_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema0]_pre_1_10_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema0]_pre_1_10_1.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema1].json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema1].json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema1]_pre_1_10_1.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema1]_pre_1_10_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema1]_pre_1_10_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema1]_pre_1_10_1.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema2].json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema2].json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema2].json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema2].json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema2]_pre_1_10_1.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema2]_pre_1_10_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema2]_pre_1_10_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema2]_pre_1_10_1.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema3].json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema3].json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema3].json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema3].json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema3]_pre_1_10_1.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema3]_pre_1_10_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema3]_pre_1_10_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema3]_pre_1_10_1.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema4].json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema4].json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema4].json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema4].json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema4]_pre_1_10_1.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema4]_pre_1_10_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema4]_pre_1_10_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema4]_pre_1_10_1.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema5].json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema5].json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema5].json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema5].json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema5]_pre_1_10_1.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema5]_pre_1_10_1.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema5]_pre_1_10_1.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_schematization[service_schema5]_pre_1_10_1.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_sync_queue_enqueue.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_queue_enqueue.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_sync_queue_enqueue.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_queue_enqueue.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_config_service.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_config_service.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_config_service.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_config_service.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_multiple_jobs.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_multiple_jobs.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_multiple_jobs.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_multiple_jobs.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_ttl.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_ttl.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_ttl.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_sync_worker_ttl.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_worker_class_job.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_worker_class_job.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_worker_class_job.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_worker_class_job.json
diff --git a/tests/snapshots/tests.contrib.rq.test_rq.test_worker_failing_job.json b/dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_worker_failing_job.json
similarity index 100%
rename from tests/snapshots/tests.contrib.rq.test_rq.test_worker_failing_job.json
rename to dd-trace-py/tests/snapshots/tests.contrib.rq.test_rq.test_worker_failing_job.json
diff --git a/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_multiple_requests_sanic_http.json b/dd-trace-py/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_multiple_requests_sanic_http.json
similarity index 100%
rename from tests/snapshots/tests.contrib.sanic.test_sanic_server.test_multiple_requests_sanic_http.json
rename to dd-trace-py/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_multiple_requests_sanic_http.json
diff --git a/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_multiple_requests_sanic_http_pre_21.9.json b/dd-trace-py/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_multiple_requests_sanic_http_pre_21.9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.sanic.test_sanic_server.test_multiple_requests_sanic_http_pre_21.9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_multiple_requests_sanic_http_pre_21.9.json
diff --git a/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_sanic_errors.json b/dd-trace-py/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_sanic_errors.json
similarity index 100%
rename from tests/snapshots/tests.contrib.sanic.test_sanic_server.test_sanic_errors.json
rename to dd-trace-py/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_sanic_errors.json
diff --git a/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_sanic_errors_pre_21.9.json b/dd-trace-py/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_sanic_errors_pre_21.9.json
similarity index 100%
rename from tests/snapshots/tests.contrib.sanic.test_sanic_server.test_sanic_errors_pre_21.9.json
rename to dd-trace-py/tests/snapshots/tests.contrib.sanic.test_sanic_server.test_sanic_errors_pre_21.9.json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema0].json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema0].json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema1].json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema1].json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema2].json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema2].json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema2].json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema2].json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema3].json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema3].json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema3].json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema3].json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema4].json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema4].json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema4].json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema4].json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema5].json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema5].json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema5].json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_schematization[service_schema5].json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_commit.json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_commit.json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_commit.json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_commit.json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_executemany_insert.json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_executemany_insert.json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_executemany_insert.json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_executemany_insert.json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchall.json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchall.json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchall.json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchall.json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchall_multiple_rows.json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchall_multiple_rows.json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchall_multiple_rows.json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchall_multiple_rows.json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchone.json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchone.json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchone.json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_fetchone.json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_rollback.json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_rollback.json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_rollback.json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_rollback.json
diff --git a/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_settings_override.json b/dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_settings_override.json
similarity index 100%
rename from tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_settings_override.json
rename to dd-trace-py/tests/snapshots/tests.contrib.snowflake.test_snowflake.test_snowflake_settings_override.json
diff --git a/tests/snapshots/tests.contrib.sqlite3.test_sqlite3.TestSQLite.test_patch_unpatch.json b/dd-trace-py/tests/snapshots/tests.contrib.sqlite3.test_sqlite3.TestSQLite.test_patch_unpatch.json
similarity index 100%
rename from tests/snapshots/tests.contrib.sqlite3.test_sqlite3.TestSQLite.test_patch_unpatch.json
rename to dd-trace-py/tests/snapshots/tests.contrib.sqlite3.test_sqlite3.TestSQLite.test_patch_unpatch.json
diff --git a/tests/snapshots/tests.contrib.starlette.test_starlette.test_background_task.json b/dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_background_task.json
similarity index 100%
rename from tests/snapshots/tests.contrib.starlette.test_starlette.test_background_task.json
rename to dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_background_task.json
diff --git a/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_nested_call_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_nested_call_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_nested_call_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_nested_call_snapshot.json
diff --git a/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_nested_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_nested_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_nested_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_nested_snapshot.json
diff --git a/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_snapshot.json
diff --git a/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_two_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_two_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_two_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_subapp_two_snapshot.json
diff --git a/tests/snapshots/tests.contrib.starlette.test_starlette.test_table_query_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_table_query_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.starlette.test_starlette.test_table_query_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.starlette.test_starlette.test_table_query_snapshot.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_coverage_correctly.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_coverage_correctly.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_coverage_correctly.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_coverage_correctly.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_coverage_correctly_with_skipped.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_coverage_correctly_with_skipped.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_coverage_correctly_with_skipped.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_coverage_correctly_with_skipped.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_source_file_data.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_source_file_data.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_source_file_data.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_generates_source_file_data.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_force_run_multiple_unskippable_tests.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_force_run_multiple_unskippable_tests.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_force_run_multiple_unskippable_tests.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_force_run_multiple_unskippable_tests.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_force_run_unskippable_tests.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_force_run_unskippable_tests.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_force_run_unskippable_tests.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_force_run_unskippable_tests.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_include_custom_tests.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_include_custom_tests.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_include_custom_tests.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_include_custom_tests.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_include_lines_pct.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_include_lines_pct.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_include_lines_pct.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_include_lines_pct.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_report_coverage_by_test_with_itr_skipped.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_report_coverage_by_test_with_itr_skipped.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_report_coverage_by_test_with_itr_skipped.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_report_coverage_by_test_with_itr_skipped.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_report_coverage_by_test_with_itr_skipped_multiple.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_report_coverage_by_test_with_itr_skipped_multiple.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_report_coverage_by_test_with_itr_skipped_multiple.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_report_coverage_by_test_with_itr_skipped_multiple.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_skip_invalid_unskippable_tests.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_skip_invalid_unskippable_tests.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_skip_invalid_unskippable_tests.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_skip_invalid_unskippable_tests.json
diff --git a/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_skip_unskippable_test_if_skip_decorator.json b/dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_skip_unskippable_test_if_skip_decorator.json
similarity index 100%
rename from tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_skip_unskippable_test_if_skip_decorator.json
rename to dd-trace-py/tests/snapshots/tests.contrib.unittest.test_unittest_snapshot.test_unittest_will_skip_unskippable_test_if_skip_decorator.json
diff --git a/tests/snapshots/tests.contrib.urllib3.test_urllib3.test_urllib3_connectionpool_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.urllib3.test_urllib3.test_urllib3_connectionpool_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.urllib3.test_urllib3.test_urllib3_connectionpool_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.urllib3.test_urllib3.test_urllib3_connectionpool_snapshot.json
diff --git a/tests/snapshots/tests.contrib.urllib3.test_urllib3.test_urllib3_poolmanager_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.urllib3.test_urllib3.test_urllib3_poolmanager_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.urllib3.test_urllib3.test_urllib3_poolmanager_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.urllib3.test_urllib3.test_urllib3_poolmanager_snapshot.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_basics.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_basics.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_basics.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_basics.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_custom_cmd_length.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_custom_cmd_length.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_custom_cmd_length.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_custom_cmd_length.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_custom_cmd_length_env.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_custom_cmd_length_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_custom_cmd_length_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_custom_cmd_length_env.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_env_user_specified_valkey_service.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_env_user_specified_valkey_service.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_env_user_specified_valkey_service.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_env_user_specified_valkey_service.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_full_command_in_resource_config.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_full_command_in_resource_config.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_full_command_in_resource_config.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_full_command_in_resource_config.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_full_command_in_resource_env.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_full_command_in_resource_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_full_command_in_resource_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_full_command_in_resource_env.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_long_command.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_long_command.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_long_command.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_long_command.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_meta_override.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_meta_override.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_meta_override.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_meta_override.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_pipeline_immediate.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_pipeline_immediate.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_pipeline_immediate.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_pipeline_immediate.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_pipeline_traced.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_pipeline_traced.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_pipeline_traced.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_pipeline_traced.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_service_precedence.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_service_precedence.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_service_precedence.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_service_precedence.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_unicode.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_unicode.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_unicode.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_unicode.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey.test_user_specified_service.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_user_specified_service.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey.test_user_specified_service.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey.test_user_specified_service.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_basic_request.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_basic_request.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_basic_request.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_basic_request.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_client_name.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_client_name.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_client_name.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_client_name.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_connection_error.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_connection_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_connection_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_connection_error.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_decoding_non_utf8_args.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_decoding_non_utf8_args.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_decoding_non_utf8_args.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_decoding_non_utf8_args.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_decoding_non_utf8_pipeline_args.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_decoding_non_utf8_pipeline_args.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_decoding_non_utf8_pipeline_args.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_decoding_non_utf8_pipeline_args.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_long_command.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_long_command.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_long_command.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_long_command.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_override_service_name.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_override_service_name.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_override_service_name.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_override_service_name.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_parenting.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_parenting.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_parenting.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_parenting.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_pipeline_traced.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_pipeline_traced.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_pipeline_traced.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_pipeline_traced.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_pipeline_traced_context_manager_transaction.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_pipeline_traced_context_manager_transaction.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_pipeline_traced_context_manager_transaction.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_pipeline_traced_context_manager_transaction.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_two_traced_pipelines.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_two_traced_pipelines.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_two_traced_pipelines.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_two_traced_pipelines.json
diff --git a/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_unicode_request.json b/dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_unicode_request.json
similarity index 100%
rename from tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_unicode_request.json
rename to dd-trace-py/tests/snapshots/tests.contrib.valkey.test_valkey_asyncio.test_unicode_request.json
diff --git a/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion.json b/dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion.json
diff --git a/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_error.json b/dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_error.json
diff --git a/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_multiple_messages.json b/dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_multiple_messages.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_multiple_messages.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_multiple_messages.json
diff --git a/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream.json b/dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream.json
diff --git a/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream_error.json b/dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream_error.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream_error.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream_error.json
diff --git a/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream_tool.json b/dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream_tool.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream_tool.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_stream_tool.json
diff --git a/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_system_prompt.json b/dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_system_prompt.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_system_prompt.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_system_prompt.json
diff --git a/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_tool.json b/dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_tool.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_tool.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vertexai.test_vertexai.test_vertexai_completion_tool.json
diff --git a/tests/snapshots/tests.contrib.vllm.test_api_app.test_rag_parent_child.json b/dd-trace-py/tests/snapshots/tests.contrib.vllm.test_api_app.test_rag_parent_child.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vllm.test_api_app.test_rag_parent_child.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vllm.test_api_app.test_rag_parent_child.json
diff --git a/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_basic.json b/dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_basic.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_basic.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_basic.json
diff --git a/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_chat.json b/dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_chat.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_chat.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_chat.json
diff --git a/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_classify.json b/dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_classify.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_classify.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_classify.json
diff --git a/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_embed.json b/dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_embed.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_embed.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_embed.json
diff --git a/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_reward.json b/dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_reward.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_reward.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_reward.json
diff --git a/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_score.json b/dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_score.json
similarity index 100%
rename from tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_score.json
rename to dd-trace-py/tests/snapshots/tests.contrib.vllm.test_vllm_llmobs.test_llmobs_score.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_200.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_200.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_200.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_200.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_500_py3.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_500_py3.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_500_py3.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_500_py3.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_base_exception_in_wsgi_app_py3.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_base_exception_in_wsgi_app_py3.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_base_exception_in_wsgi_app_py3.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_base_exception_in_wsgi_app_py3.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_chunked.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_chunked.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_chunked.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_chunked.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_distributed_tracing_nested.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_distributed_tracing_nested.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_distributed_tracing_nested.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_distributed_tracing_nested.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_generator_exit_ignored_snapshot.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_generator_exit_ignored_snapshot.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_generator_exit_ignored_snapshot.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_generator_exit_ignored_snapshot.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-None].json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-None].json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-v0].json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-v0].json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-v1].json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[None-v1].json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-None].json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-None].json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-None].json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-None].json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-v0].json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-v0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-v0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-v0].json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-v1].json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-v1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-v1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_schematization[mysvc-v1].json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_stop_iteration_in_wsgi_app_py3.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_stop_iteration_in_wsgi_app_py3.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_stop_iteration_in_wsgi_app_py3.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_stop_iteration_in_wsgi_app_py3.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_wsgi_base_middleware.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_wsgi_base_middleware.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_wsgi_base_middleware.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_wsgi_base_middleware.json
diff --git a/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_wsgi_base_middleware_500.json b/dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_wsgi_base_middleware_500.json
similarity index 100%
rename from tests/snapshots/tests.contrib.wsgi.test_wsgi.test_wsgi_base_middleware_500.json
rename to dd-trace-py/tests/snapshots/tests.contrib.wsgi.test_wsgi.test_wsgi_base_middleware_500.json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_basics.json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_basics.json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_basics.json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_basics.json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_cmd_max_length.json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_cmd_max_length.json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_cmd_max_length.json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_cmd_max_length.json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_full_command_in_resource_config.json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_full_command_in_resource_config.json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_full_command_in_resource_config.json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_full_command_in_resource_config.json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_full_command_in_resource_env.json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_full_command_in_resource_env.json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_full_command_in_resource_env.json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_full_command_in_resource_env.json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_long_command.json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_long_command.json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_long_command.json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_long_command.json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_pipeline_immediate.json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_pipeline_immediate.json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_pipeline_immediate.json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_pipeline_immediate.json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_pipeline_traced.json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_pipeline_traced.json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_pipeline_traced.json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_pipeline_traced.json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema0].json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema0].json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema0].json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema0].json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema1].json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema1].json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema1].json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema1].json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema2].json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema2].json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema2].json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema2].json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema3].json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema3].json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema3].json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema3].json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema4].json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema4].json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema4].json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema4].json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema5].json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema5].json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema5].json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_schematization[service_schema5].json
diff --git a/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_unicode.json b/dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_unicode.json
similarity index 100%
rename from tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_unicode.json
rename to dd-trace-py/tests/snapshots/tests.contrib.yaaredis.test_yaaredis.test_unicode.json
diff --git a/tests/snapshots/tests.integration.test_context_snapshots.test_context_multiprocess.json b/dd-trace-py/tests/snapshots/tests.integration.test_context_snapshots.test_context_multiprocess.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_context_snapshots.test_context_multiprocess.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_context_snapshots.test_context_multiprocess.json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_aggregator_partial_flush_finished_counter_out_of_sync.json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_aggregator_partial_flush_finished_counter_out_of_sync.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_aggregator_partial_flush_finished_counter_out_of_sync.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_aggregator_partial_flush_finished_counter_out_of_sync.json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_string_attributes[v0.4].json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_string_attributes[v0.4].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_string_attributes[v0.4].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_string_attributes[v0.4].json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_string_attributes[v0.5].json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_string_attributes[v0.5].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_string_attributes[v0.5].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_string_attributes[v0.5].json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_unicode_string_attributes[v0.4].json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_unicode_string_attributes[v0.4].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_unicode_string_attributes[v0.4].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_unicode_string_attributes[v0.4].json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_unicode_string_attributes[v0.5].json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_unicode_string_attributes[v0.5].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_unicode_string_attributes[v0.5].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_encode_span_with_large_unicode_string_attributes[v0.5].json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_env_vars.json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_env_vars.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_env_vars.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_env_vars.json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_flush_spans_before_writer_recreate.json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_flush_spans_before_writer_recreate.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_flush_spans_before_writer_recreate.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_flush_spans_before_writer_recreate.json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_setting_span_tags_and_metrics_generates_no_error_logs[v0.4].json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_setting_span_tags_and_metrics_generates_no_error_logs[v0.4].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_setting_span_tags_and_metrics_generates_no_error_logs[v0.4].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_setting_span_tags_and_metrics_generates_no_error_logs[v0.4].json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_setting_span_tags_and_metrics_generates_no_error_logs[v0.5].json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_setting_span_tags_and_metrics_generates_no_error_logs[v0.5].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_setting_span_tags_and_metrics_generates_no_error_logs[v0.5].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_setting_span_tags_and_metrics_generates_no_error_logs[v0.5].json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_nostats.json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_nostats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_nostats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_nostats.json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_stats.json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_stats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_stats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_stats.json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_stats_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_stats_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_stats_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_signal_shutdown_flushes_traces_stats_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_integration_snapshots.test_tracetagsprocessor_only_adds_new_tags.json b/dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_tracetagsprocessor_only_adds_new_tags.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_integration_snapshots.test_tracetagsprocessor_only_adds_new_tags.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_integration_snapshots.test_tracetagsprocessor_only_adds_new_tags.json
diff --git a/tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_keep.json b/dd-trace-py/tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_keep.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_keep.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_keep.json
diff --git a/tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_reject.json b/dd-trace-py/tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_reject.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_reject.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_priority_sampling.test_agent_sample_rate_reject.json
diff --git a/tests/snapshots/tests.integration.test_propagation.test_sampling_decision_downstream.json b/dd-trace-py/tests/snapshots/tests.integration.test_propagation.test_sampling_decision_downstream.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_propagation.test_sampling_decision_downstream.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_propagation.test_sampling_decision_downstream.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_do_not_match.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_do_not_match.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_do_not_match.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_do_not_match.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_match_star.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_match_star.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_match_star.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_float_special_case_match_star.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_glob_multi_rule.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_glob_multi_rule.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_glob_multi_rule.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_glob_multi_rule.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_resource.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_resource.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_resource.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_resource.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_string_sample_rate.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_string_sample_rate.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_string_sample_rate.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_string_sample_rate.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_name_glob.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_name_glob.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_name_glob.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_name_glob.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource_glob.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource_glob.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource_glob.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_resource_glob.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_service_glob.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_service_glob.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_service_glob.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_and_service_glob.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob_insensitive_case_match.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob_insensitive_case_match.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob_insensitive_case_match.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_glob_insensitive_case_match.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_partial_match.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_partial_match.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_partial_match.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_tags_partial_match.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_None_meta.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_None_meta.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_None_meta.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_None_meta.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_metrics.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_metrics.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_metrics.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_extended_sampling_w_metrics.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_sampling_with_defaults.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_sampling_with_defaults.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_sampling_with_defaults.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_sampling_with_defaults.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_sampling_with_rate_limit_3.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_sampling_with_rate_limit_3.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_sampling_with_rate_limit_3.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_sampling_with_rate_limit_3.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[false].json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[false].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[false].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[false].json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true].json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true].json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true]_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true]_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true]_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_non_root_span[true]_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[false].json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[false].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[false].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[false].json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[true].json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[true].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[true].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[true].json
diff --git a/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[true]_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[true]_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[true]_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_sampling.test_single_span_and_trace_sampling_match_root_span_partial_flushing[true]_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_measured_span.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_measured_span.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_measured_span.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_measured_span.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_measured_span_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_measured_span_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_measured_span_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_measured_span_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[0.0].json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[0.0].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[0.0].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[0.0].json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[0.0]_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[0.0]_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[0.0]_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[0.0]_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[1.0].json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[1.0].json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[1.0].json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[1.0].json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[1.0]_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[1.0]_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[1.0]_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_sampling_rate[1.0]_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_stats_30.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_30.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_stats_30.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_30.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_stats_30_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_30_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_stats_30_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_30_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_stats_aggrs.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_aggrs.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_stats_aggrs.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_aggrs.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_stats_aggrs_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_aggrs_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_stats_aggrs_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_aggrs_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_stats_errors.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_errors.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_stats_errors.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_errors.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_stats_errors_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_errors_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_stats_errors_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_stats_errors_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_top_level.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_top_level.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_top_level.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_top_level.json
diff --git a/tests/snapshots/tests.integration.test_trace_stats.test_top_level_tracestats.json b/dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_top_level_tracestats.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_trace_stats.test_top_level_tracestats.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_trace_stats.test_top_level_tracestats.json
diff --git a/tests/snapshots/tests.integration.test_tracemethods.test_ddtrace_run_trace_methods_async.json b/dd-trace-py/tests/snapshots/tests.integration.test_tracemethods.test_ddtrace_run_trace_methods_async.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_tracemethods.test_ddtrace_run_trace_methods_async.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_tracemethods.test_ddtrace_run_trace_methods_async.json
diff --git a/tests/snapshots/tests.integration.test_tracemethods.test_ddtrace_run_trace_methods_sync.json b/dd-trace-py/tests/snapshots/tests.integration.test_tracemethods.test_ddtrace_run_trace_methods_sync.json
similarity index 100%
rename from tests/snapshots/tests.integration.test_tracemethods.test_ddtrace_run_trace_methods_sync.json
rename to dd-trace-py/tests/snapshots/tests.integration.test_tracemethods.test_ddtrace_run_trace_methods_sync.json
diff --git a/tests/snapshots/tests.internal.test_process_tags.TestProcessTags.test_edge_case.json b/dd-trace-py/tests/snapshots/tests.internal.test_process_tags.TestProcessTags.test_edge_case.json
similarity index 100%
rename from tests/snapshots/tests.internal.test_process_tags.TestProcessTags.test_edge_case.json
rename to dd-trace-py/tests/snapshots/tests.internal.test_process_tags.TestProcessTags.test_edge_case.json
diff --git a/tests/snapshots/tests.internal.test_process_tags.TestProcessTags.test_process_tags_deactivated.json b/dd-trace-py/tests/snapshots/tests.internal.test_process_tags.TestProcessTags.test_process_tags_deactivated.json
similarity index 100%
rename from tests/snapshots/tests.internal.test_process_tags.TestProcessTags.test_process_tags_deactivated.json
rename to dd-trace-py/tests/snapshots/tests.internal.test_process_tags.TestProcessTags.test_process_tags_deactivated.json
diff --git a/tests/snapshots/tests.internal.test_process_tags.test_process_tags_activated.json b/dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_activated.json
similarity index 100%
rename from tests/snapshots/tests.internal.test_process_tags.test_process_tags_activated.json
rename to dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_activated.json
diff --git a/tests/snapshots/tests.internal.test_process_tags.test_process_tags_edge_case.json b/dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_edge_case.json
similarity index 100%
rename from tests/snapshots/tests.internal.test_process_tags.test_process_tags_edge_case.json
rename to dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_edge_case.json
diff --git a/tests/snapshots/tests.internal.test_process_tags.test_process_tags_error.json b/dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_error.json
similarity index 100%
rename from tests/snapshots/tests.internal.test_process_tags.test_process_tags_error.json
rename to dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_error.json
diff --git a/tests/snapshots/tests.internal.test_process_tags.test_process_tags_partial_flush.json b/dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_partial_flush.json
similarity index 100%
rename from tests/snapshots/tests.internal.test_process_tags.test_process_tags_partial_flush.json
rename to dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_partial_flush.json
diff --git a/tests/snapshots/tests.internal.test_process_tags.test_process_tags_user_defined_service.json b/dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_user_defined_service.json
similarity index 100%
rename from tests/snapshots/tests.internal.test_process_tags.test_process_tags_user_defined_service.json
rename to dd-trace-py/tests/snapshots/tests.internal.test_process_tags.test_process_tags_user_defined_service.json
diff --git a/tests/snapshots/tests.opentelemetry.test_context.test_otel_ddtrace_mixed_parenting.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_ddtrace_mixed_parenting.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_context.test_otel_ddtrace_mixed_parenting.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_ddtrace_mixed_parenting.json
diff --git a/tests/snapshots/tests.opentelemetry.test_context.test_otel_multithreading.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_multithreading.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_context.test_otel_multithreading.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_multithreading.json
diff --git a/tests/snapshots/tests.opentelemetry.test_context.test_otel_span_parenting.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_span_parenting.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_context.test_otel_span_parenting.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_span_parenting.json
diff --git a/tests/snapshots/tests.opentelemetry.test_context.test_otel_start_as_current_span_decorator_async.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_start_as_current_span_decorator_async.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_context.test_otel_start_as_current_span_decorator_async.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_start_as_current_span_decorator_async.json
diff --git a/tests/snapshots/tests.opentelemetry.test_context.test_otel_trace_across_fork.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_trace_across_fork.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_context.test_otel_trace_across_fork.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_trace_across_fork.json
diff --git a/tests/snapshots/tests.opentelemetry.test_context.test_otel_trace_multiple_coroutines.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_trace_multiple_coroutines.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_context.test_otel_trace_multiple_coroutines.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_otel_trace_multiple_coroutines.json
diff --git a/tests/snapshots/tests.opentelemetry.test_context.test_sampling_decisions_across_processes[manual.drop].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_sampling_decisions_across_processes[manual.drop].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_context.test_sampling_decisions_across_processes[manual.drop].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_sampling_decisions_across_processes[manual.drop].json
diff --git a/tests/snapshots/tests.opentelemetry.test_context.test_sampling_decisions_across_processes[manual.keep].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_sampling_decisions_across_processes[manual.keep].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_context.test_sampling_decisions_across_processes[manual.keep].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_context.test_sampling_decisions_across_processes[manual.keep].json
diff --git a/tests/snapshots/tests.opentelemetry.test_logs.test_otel_logs_does_not_generate_client_grpc_spans.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_logs.test_otel_logs_does_not_generate_client_grpc_spans.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_logs.test_otel_logs_does_not_generate_client_grpc_spans.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_logs.test_otel_logs_does_not_generate_client_grpc_spans.json
diff --git a/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes.json
diff --git a/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override0].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override0].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override0].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override0].json
diff --git a/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override1].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override1].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override1].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override1].json
diff --git a/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override2].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override2].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override2].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override2].json
diff --git a/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override3].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override3].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override3].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override3].json
diff --git a/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override4].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override4].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override4].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_attributes_overrides[override4].json
diff --git a/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_events.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_events.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_span.test_otel_span_events.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_events.json
diff --git a/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_kind.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_kind.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_span.test_otel_span_kind.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_span.test_otel_span_kind.json
diff --git a/tests/snapshots/tests.opentelemetry.test_trace.test_distributed_trace_with_flask_app[with_ddtrace_run].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_distributed_trace_with_flask_app[with_ddtrace_run].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_trace.test_distributed_trace_with_flask_app[with_ddtrace_run].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_distributed_trace_with_flask_app[with_ddtrace_run].json
diff --git a/tests/snapshots/tests.opentelemetry.test_trace.test_distributed_trace_with_flask_app[with_opentelemetry_instrument].json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_distributed_trace_with_flask_app[with_opentelemetry_instrument].json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_trace.test_distributed_trace_with_flask_app[with_opentelemetry_instrument].json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_distributed_trace_with_flask_app[with_opentelemetry_instrument].json
diff --git a/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_as_current_span_decorator.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_as_current_span_decorator.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_as_current_span_decorator.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_as_current_span_decorator.json
diff --git a/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_current_span_with_default_args.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_current_span_with_default_args.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_current_span_with_default_args.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_current_span_with_default_args.json
diff --git a/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_current_span_without_default_args.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_current_span_without_default_args.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_current_span_without_default_args.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_current_span_without_default_args.json
diff --git a/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_ignore_exceptions.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_ignore_exceptions.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_ignore_exceptions.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_ignore_exceptions.json
diff --git a/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_record_exception.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_record_exception.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_record_exception.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_record_exception.json
diff --git a/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_without_default_args.json b/dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_without_default_args.json
similarity index 100%
rename from tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_without_default_args.json
rename to dd-trace-py/tests/snapshots/tests.opentelemetry.test_trace.test_otel_start_span_without_default_args.json
diff --git a/tests/snapshots/tests.telemetry.test_telemetry.test_telemetry_enabled_on_first_tracer_flush.json b/dd-trace-py/tests/snapshots/tests.telemetry.test_telemetry.test_telemetry_enabled_on_first_tracer_flush.json
similarity index 100%
rename from tests/snapshots/tests.telemetry.test_telemetry.test_telemetry_enabled_on_first_tracer_flush.json
rename to dd-trace-py/tests/snapshots/tests.telemetry.test_telemetry.test_telemetry_enabled_on_first_tracer_flush.json
diff --git a/tests/sourcecode/test_repository_url.py b/dd-trace-py/tests/sourcecode/test_repository_url.py
similarity index 100%
rename from tests/sourcecode/test_repository_url.py
rename to dd-trace-py/tests/sourcecode/test_repository_url.py
diff --git a/tests/sourcecode/test_setuptools.py b/dd-trace-py/tests/sourcecode/test_setuptools.py
similarity index 100%
rename from tests/sourcecode/test_setuptools.py
rename to dd-trace-py/tests/sourcecode/test_setuptools.py
diff --git a/tests/sourcecode/test_source_code_env_vars.py b/dd-trace-py/tests/sourcecode/test_source_code_env_vars.py
similarity index 100%
rename from tests/sourcecode/test_source_code_env_vars.py
rename to dd-trace-py/tests/sourcecode/test_source_code_env_vars.py
diff --git a/tests/sourcecode/test_source_code_link.py b/dd-trace-py/tests/sourcecode/test_source_code_link.py
similarity index 100%
rename from tests/sourcecode/test_source_code_link.py
rename to dd-trace-py/tests/sourcecode/test_source_code_link.py
diff --git a/tests/submod/__init__.py b/dd-trace-py/tests/submod/__init__.py
similarity index 100%
rename from tests/submod/__init__.py
rename to dd-trace-py/tests/submod/__init__.py
diff --git a/tests/submod/absstuff.py b/dd-trace-py/tests/submod/absstuff.py
similarity index 100%
rename from tests/submod/absstuff.py
rename to dd-trace-py/tests/submod/absstuff.py
diff --git a/tests/submod/custom_decorated_stuff.py b/dd-trace-py/tests/submod/custom_decorated_stuff.py
similarity index 100%
rename from tests/submod/custom_decorated_stuff.py
rename to dd-trace-py/tests/submod/custom_decorated_stuff.py
diff --git a/tests/submod/import_test.py b/dd-trace-py/tests/submod/import_test.py
similarity index 100%
rename from tests/submod/import_test.py
rename to dd-trace-py/tests/submod/import_test.py
diff --git a/tests/submod/stuff.py b/dd-trace-py/tests/submod/stuff.py
similarity index 100%
rename from tests/submod/stuff.py
rename to dd-trace-py/tests/submod/stuff.py
diff --git a/tests/submod/traced_stuff.py b/dd-trace-py/tests/submod/traced_stuff.py
similarity index 100%
rename from tests/submod/traced_stuff.py
rename to dd-trace-py/tests/submod/traced_stuff.py
diff --git a/tests/subprocesstest.py b/dd-trace-py/tests/subprocesstest.py
similarity index 100%
rename from tests/subprocesstest.py
rename to dd-trace-py/tests/subprocesstest.py
diff --git a/tests/suitespec.py b/dd-trace-py/tests/suitespec.py
similarity index 100%
rename from tests/suitespec.py
rename to dd-trace-py/tests/suitespec.py
diff --git a/tests/suitespec.yml b/dd-trace-py/tests/suitespec.yml
similarity index 100%
rename from tests/suitespec.yml
rename to dd-trace-py/tests/suitespec.yml
diff --git a/tests/telemetry/__init__.py b/dd-trace-py/tests/telemetry/__init__.py
similarity index 100%
rename from tests/telemetry/__init__.py
rename to dd-trace-py/tests/telemetry/__init__.py
diff --git a/tests/telemetry/app.py b/dd-trace-py/tests/telemetry/app.py
similarity index 100%
rename from tests/telemetry/app.py
rename to dd-trace-py/tests/telemetry/app.py
diff --git a/tests/telemetry/conftest.py b/dd-trace-py/tests/telemetry/conftest.py
similarity index 100%
rename from tests/telemetry/conftest.py
rename to dd-trace-py/tests/telemetry/conftest.py
diff --git a/tests/telemetry/test_data.py b/dd-trace-py/tests/telemetry/test_data.py
similarity index 100%
rename from tests/telemetry/test_data.py
rename to dd-trace-py/tests/telemetry/test_data.py
diff --git a/tests/telemetry/test_dependency.py b/dd-trace-py/tests/telemetry/test_dependency.py
similarity index 100%
rename from tests/telemetry/test_dependency.py
rename to dd-trace-py/tests/telemetry/test_dependency.py
diff --git a/tests/telemetry/test_telemetry.py b/dd-trace-py/tests/telemetry/test_telemetry.py
similarity index 100%
rename from tests/telemetry/test_telemetry.py
rename to dd-trace-py/tests/telemetry/test_telemetry.py
diff --git a/tests/telemetry/test_telemetry_appsec_metrics.py b/dd-trace-py/tests/telemetry/test_telemetry_appsec_metrics.py
similarity index 100%
rename from tests/telemetry/test_telemetry_appsec_metrics.py
rename to dd-trace-py/tests/telemetry/test_telemetry_appsec_metrics.py
diff --git a/tests/telemetry/test_telemetry_metrics.py b/dd-trace-py/tests/telemetry/test_telemetry_metrics.py
similarity index 100%
rename from tests/telemetry/test_telemetry_metrics.py
rename to dd-trace-py/tests/telemetry/test_telemetry_metrics.py
diff --git a/tests/telemetry/test_telemetry_metrics_e2e.py b/dd-trace-py/tests/telemetry/test_telemetry_metrics_e2e.py
similarity index 100%
rename from tests/telemetry/test_telemetry_metrics_e2e.py
rename to dd-trace-py/tests/telemetry/test_telemetry_metrics_e2e.py
diff --git a/tests/telemetry/test_writer.py b/dd-trace-py/tests/telemetry/test_writer.py
similarity index 100%
rename from tests/telemetry/test_writer.py
rename to dd-trace-py/tests/telemetry/test_writer.py
diff --git a/tests/test_module/__init__.py b/dd-trace-py/tests/test_module/__init__.py
similarity index 100%
rename from tests/test_module/__init__.py
rename to dd-trace-py/tests/test_module/__init__.py
diff --git a/tests/testing/__init__.py b/dd-trace-py/tests/testing/__init__.py
similarity index 100%
rename from tests/testing/__init__.py
rename to dd-trace-py/tests/testing/__init__.py
diff --git a/tests/testing/conftest.py b/dd-trace-py/tests/testing/conftest.py
similarity index 100%
rename from tests/testing/conftest.py
rename to dd-trace-py/tests/testing/conftest.py
diff --git a/tests/testing/internal/__init__.py b/dd-trace-py/tests/testing/internal/__init__.py
similarity index 100%
rename from tests/testing/internal/__init__.py
rename to dd-trace-py/tests/testing/internal/__init__.py
diff --git a/tests/testing/internal/coverage/__init__.py b/dd-trace-py/tests/testing/internal/coverage/__init__.py
similarity index 100%
rename from tests/testing/internal/coverage/__init__.py
rename to dd-trace-py/tests/testing/internal/coverage/__init__.py
diff --git a/tests/testing/internal/coverage/test_patch.py b/dd-trace-py/tests/testing/internal/coverage/test_patch.py
similarity index 100%
rename from tests/testing/internal/coverage/test_patch.py
rename to dd-trace-py/tests/testing/internal/coverage/test_patch.py
diff --git a/tests/testing/internal/pytest/test_plugin.py b/dd-trace-py/tests/testing/internal/pytest/test_plugin.py
similarity index 100%
rename from tests/testing/internal/pytest/test_plugin.py
rename to dd-trace-py/tests/testing/internal/pytest/test_plugin.py
diff --git a/tests/testing/internal/pytest/test_pytest_atf.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_atf.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_atf.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_atf.py
diff --git a/tests/testing/internal/pytest/test_pytest_atr.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_atr.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_atr.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_atr.py
diff --git a/tests/testing/internal/pytest/test_pytest_bdd.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_bdd.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_bdd.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_bdd.py
diff --git a/tests/testing/internal/pytest/test_pytest_benchmark.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_benchmark.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_benchmark.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_benchmark.py
diff --git a/tests/testing/internal/pytest/test_pytest_codeowners.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_codeowners.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_codeowners.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_codeowners.py
diff --git a/tests/testing/internal/pytest/test_pytest_cov.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_cov.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_cov.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_cov.py
diff --git a/tests/testing/internal/pytest/test_pytest_coverage_report_upload.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_coverage_report_upload.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_coverage_report_upload.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_coverage_report_upload.py
diff --git a/tests/testing/internal/pytest/test_pytest_custom_tags.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_custom_tags.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_custom_tags.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_custom_tags.py
diff --git a/tests/testing/internal/pytest/test_pytest_ddtrace_tags.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_ddtrace_tags.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_ddtrace_tags.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_ddtrace_tags.py
diff --git a/tests/testing/internal/pytest/test_pytest_efd.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_efd.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_efd.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_efd.py
diff --git a/tests/testing/internal/pytest/test_pytest_itr.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_itr.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_itr.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_itr.py
diff --git a/tests/testing/internal/pytest/test_pytest_log_correlation.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_log_correlation.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_log_correlation.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_log_correlation.py
diff --git a/tests/testing/internal/pytest/test_pytest_suite_source.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_suite_source.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_suite_source.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_suite_source.py
diff --git a/tests/testing/internal/pytest/test_pytest_xdist.py b/dd-trace-py/tests/testing/internal/pytest/test_pytest_xdist.py
similarity index 100%
rename from tests/testing/internal/pytest/test_pytest_xdist.py
rename to dd-trace-py/tests/testing/internal/pytest/test_pytest_xdist.py
diff --git a/tests/testing/internal/pytest/test_report_links.py b/dd-trace-py/tests/testing/internal/pytest/test_report_links.py
similarity index 100%
rename from tests/testing/internal/pytest/test_report_links.py
rename to dd-trace-py/tests/testing/internal/pytest/test_report_links.py
diff --git a/tests/testing/internal/pytest/utils.py b/dd-trace-py/tests/testing/internal/pytest/utils.py
similarity index 100%
rename from tests/testing/internal/pytest/utils.py
rename to dd-trace-py/tests/testing/internal/pytest/utils.py
diff --git a/tests/testing/internal/test_api_client.py b/dd-trace-py/tests/testing/internal/test_api_client.py
similarity index 100%
rename from tests/testing/internal/test_api_client.py
rename to dd-trace-py/tests/testing/internal/test_api_client.py
diff --git a/tests/testing/internal/test_bazel_offline_session_manager.py b/dd-trace-py/tests/testing/internal/test_bazel_offline_session_manager.py
similarity index 100%
rename from tests/testing/internal/test_bazel_offline_session_manager.py
rename to dd-trace-py/tests/testing/internal/test_bazel_offline_session_manager.py
diff --git a/tests/testing/internal/test_cached_file_provider.py b/dd-trace-py/tests/testing/internal/test_cached_file_provider.py
similarity index 100%
rename from tests/testing/internal/test_cached_file_provider.py
rename to dd-trace-py/tests/testing/internal/test_cached_file_provider.py
diff --git a/tests/testing/internal/test_codeowners.py b/dd-trace-py/tests/testing/internal/test_codeowners.py
similarity index 100%
rename from tests/testing/internal/test_codeowners.py
rename to dd-trace-py/tests/testing/internal/test_codeowners.py
diff --git a/tests/testing/internal/test_coverage_api.py b/dd-trace-py/tests/testing/internal/test_coverage_api.py
similarity index 100%
rename from tests/testing/internal/test_coverage_api.py
rename to dd-trace-py/tests/testing/internal/test_coverage_api.py
diff --git a/tests/testing/internal/test_env_tags.py b/dd-trace-py/tests/testing/internal/test_env_tags.py
similarity index 100%
rename from tests/testing/internal/test_env_tags.py
rename to dd-trace-py/tests/testing/internal/test_env_tags.py
diff --git a/tests/testing/internal/test_git.py b/dd-trace-py/tests/testing/internal/test_git.py
similarity index 100%
rename from tests/testing/internal/test_git.py
rename to dd-trace-py/tests/testing/internal/test_git.py
diff --git a/tests/testing/internal/test_http.py b/dd-trace-py/tests/testing/internal/test_http.py
similarity index 100%
rename from tests/testing/internal/test_http.py
rename to dd-trace-py/tests/testing/internal/test_http.py
diff --git a/tests/testing/internal/test_logging.py b/dd-trace-py/tests/testing/internal/test_logging.py
similarity index 100%
rename from tests/testing/internal/test_logging.py
rename to dd-trace-py/tests/testing/internal/test_logging.py
diff --git a/tests/testing/internal/test_logs.py b/dd-trace-py/tests/testing/internal/test_logs.py
similarity index 100%
rename from tests/testing/internal/test_logs.py
rename to dd-trace-py/tests/testing/internal/test_logs.py
diff --git a/tests/testing/internal/test_offline_mode.py b/dd-trace-py/tests/testing/internal/test_offline_mode.py
similarity index 100%
rename from tests/testing/internal/test_offline_mode.py
rename to dd-trace-py/tests/testing/internal/test_offline_mode.py
diff --git a/tests/testing/internal/test_payload_files.py b/dd-trace-py/tests/testing/internal/test_payload_files.py
similarity index 100%
rename from tests/testing/internal/test_payload_files.py
rename to dd-trace-py/tests/testing/internal/test_payload_files.py
diff --git a/tests/testing/internal/test_platform.py b/dd-trace-py/tests/testing/internal/test_platform.py
similarity index 100%
rename from tests/testing/internal/test_platform.py
rename to dd-trace-py/tests/testing/internal/test_platform.py
diff --git a/tests/testing/internal/test_session_manager.py b/dd-trace-py/tests/testing/internal/test_session_manager.py
similarity index 100%
rename from tests/testing/internal/test_session_manager.py
rename to dd-trace-py/tests/testing/internal/test_session_manager.py
diff --git a/tests/testing/internal/test_telemetry.py b/dd-trace-py/tests/testing/internal/test_telemetry.py
similarity index 100%
rename from tests/testing/internal/test_telemetry.py
rename to dd-trace-py/tests/testing/internal/test_telemetry.py
diff --git a/tests/testing/internal/test_test_data.py b/dd-trace-py/tests/testing/internal/test_test_data.py
similarity index 100%
rename from tests/testing/internal/test_test_data.py
rename to dd-trace-py/tests/testing/internal/test_test_data.py
diff --git a/tests/testing/internal/test_utils.py b/dd-trace-py/tests/testing/internal/test_utils.py
similarity index 100%
rename from tests/testing/internal/test_utils.py
rename to dd-trace-py/tests/testing/internal/test_utils.py
diff --git a/tests/testing/internal/test_writer.py b/dd-trace-py/tests/testing/internal/test_writer.py
similarity index 100%
rename from tests/testing/internal/test_writer.py
rename to dd-trace-py/tests/testing/internal/test_writer.py
diff --git a/tests/testing/mocks.py b/dd-trace-py/tests/testing/mocks.py
similarity index 100%
rename from tests/testing/mocks.py
rename to dd-trace-py/tests/testing/mocks.py
diff --git a/tests/testing/test_integration.py b/dd-trace-py/tests/testing/test_integration.py
similarity index 100%
rename from tests/testing/test_integration.py
rename to dd-trace-py/tests/testing/test_integration.py
diff --git a/tests/tracer/__init__.py b/dd-trace-py/tests/tracer/__init__.py
similarity index 100%
rename from tests/tracer/__init__.py
rename to dd-trace-py/tests/tracer/__init__.py
diff --git a/tests/tracer/_version.py b/dd-trace-py/tests/tracer/_version.py
similarity index 100%
rename from tests/tracer/_version.py
rename to dd-trace-py/tests/tracer/_version.py
diff --git a/tests/tracer/fixtures/ci/appveyor.json b/dd-trace-py/tests/tracer/fixtures/ci/appveyor.json
similarity index 100%
rename from tests/tracer/fixtures/ci/appveyor.json
rename to dd-trace-py/tests/tracer/fixtures/ci/appveyor.json
diff --git a/tests/tracer/fixtures/ci/awscodepipeline.json b/dd-trace-py/tests/tracer/fixtures/ci/awscodepipeline.json
similarity index 100%
rename from tests/tracer/fixtures/ci/awscodepipeline.json
rename to dd-trace-py/tests/tracer/fixtures/ci/awscodepipeline.json
diff --git a/tests/tracer/fixtures/ci/azurepipelines.json b/dd-trace-py/tests/tracer/fixtures/ci/azurepipelines.json
similarity index 100%
rename from tests/tracer/fixtures/ci/azurepipelines.json
rename to dd-trace-py/tests/tracer/fixtures/ci/azurepipelines.json
diff --git a/tests/tracer/fixtures/ci/bitbucket.json b/dd-trace-py/tests/tracer/fixtures/ci/bitbucket.json
similarity index 100%
rename from tests/tracer/fixtures/ci/bitbucket.json
rename to dd-trace-py/tests/tracer/fixtures/ci/bitbucket.json
diff --git a/tests/tracer/fixtures/ci/bitrise.json b/dd-trace-py/tests/tracer/fixtures/ci/bitrise.json
similarity index 100%
rename from tests/tracer/fixtures/ci/bitrise.json
rename to dd-trace-py/tests/tracer/fixtures/ci/bitrise.json
diff --git a/tests/tracer/fixtures/ci/buddy.json b/dd-trace-py/tests/tracer/fixtures/ci/buddy.json
similarity index 100%
rename from tests/tracer/fixtures/ci/buddy.json
rename to dd-trace-py/tests/tracer/fixtures/ci/buddy.json
diff --git a/tests/tracer/fixtures/ci/buildkite.json b/dd-trace-py/tests/tracer/fixtures/ci/buildkite.json
similarity index 100%
rename from tests/tracer/fixtures/ci/buildkite.json
rename to dd-trace-py/tests/tracer/fixtures/ci/buildkite.json
diff --git a/tests/tracer/fixtures/ci/circleci.json b/dd-trace-py/tests/tracer/fixtures/ci/circleci.json
similarity index 100%
rename from tests/tracer/fixtures/ci/circleci.json
rename to dd-trace-py/tests/tracer/fixtures/ci/circleci.json
diff --git a/tests/tracer/fixtures/ci/codebuild.json b/dd-trace-py/tests/tracer/fixtures/ci/codebuild.json
similarity index 100%
rename from tests/tracer/fixtures/ci/codebuild.json
rename to dd-trace-py/tests/tracer/fixtures/ci/codebuild.json
diff --git a/tests/tracer/fixtures/ci/codefresh.json b/dd-trace-py/tests/tracer/fixtures/ci/codefresh.json
similarity index 100%
rename from tests/tracer/fixtures/ci/codefresh.json
rename to dd-trace-py/tests/tracer/fixtures/ci/codefresh.json
diff --git a/tests/tracer/fixtures/ci/drone.json b/dd-trace-py/tests/tracer/fixtures/ci/drone.json
similarity index 100%
rename from tests/tracer/fixtures/ci/drone.json
rename to dd-trace-py/tests/tracer/fixtures/ci/drone.json
diff --git a/tests/tracer/fixtures/ci/github.json b/dd-trace-py/tests/tracer/fixtures/ci/github.json
similarity index 100%
rename from tests/tracer/fixtures/ci/github.json
rename to dd-trace-py/tests/tracer/fixtures/ci/github.json
diff --git a/tests/tracer/fixtures/ci/gitlab.json b/dd-trace-py/tests/tracer/fixtures/ci/gitlab.json
similarity index 100%
rename from tests/tracer/fixtures/ci/gitlab.json
rename to dd-trace-py/tests/tracer/fixtures/ci/gitlab.json
diff --git a/tests/tracer/fixtures/ci/jenkins.json b/dd-trace-py/tests/tracer/fixtures/ci/jenkins.json
similarity index 100%
rename from tests/tracer/fixtures/ci/jenkins.json
rename to dd-trace-py/tests/tracer/fixtures/ci/jenkins.json
diff --git a/tests/tracer/fixtures/ci/teamcity.json b/dd-trace-py/tests/tracer/fixtures/ci/teamcity.json
similarity index 100%
rename from tests/tracer/fixtures/ci/teamcity.json
rename to dd-trace-py/tests/tracer/fixtures/ci/teamcity.json
diff --git a/tests/tracer/fixtures/ci/travisci.json b/dd-trace-py/tests/tracer/fixtures/ci/travisci.json
similarity index 100%
rename from tests/tracer/fixtures/ci/travisci.json
rename to dd-trace-py/tests/tracer/fixtures/ci/travisci.json
diff --git a/tests/tracer/fixtures/ci/usersupplied.json b/dd-trace-py/tests/tracer/fixtures/ci/usersupplied.json
similarity index 100%
rename from tests/tracer/fixtures/ci/usersupplied.json
rename to dd-trace-py/tests/tracer/fixtures/ci/usersupplied.json
diff --git a/tests/tracer/fixtures/urls.txt b/dd-trace-py/tests/tracer/fixtures/urls.txt
similarity index 100%
rename from tests/tracer/fixtures/urls.txt
rename to dd-trace-py/tests/tracer/fixtures/urls.txt
diff --git a/tests/tracer/runtime/__init__.py b/dd-trace-py/tests/tracer/runtime/__init__.py
similarity index 100%
rename from tests/tracer/runtime/__init__.py
rename to dd-trace-py/tests/tracer/runtime/__init__.py
diff --git a/tests/tracer/runtime/fork_disable.py b/dd-trace-py/tests/tracer/runtime/fork_disable.py
similarity index 100%
rename from tests/tracer/runtime/fork_disable.py
rename to dd-trace-py/tests/tracer/runtime/fork_disable.py
diff --git a/tests/tracer/runtime/fork_enable.py b/dd-trace-py/tests/tracer/runtime/fork_enable.py
similarity index 100%
rename from tests/tracer/runtime/fork_enable.py
rename to dd-trace-py/tests/tracer/runtime/fork_enable.py
diff --git a/tests/tracer/runtime/test_container.py b/dd-trace-py/tests/tracer/runtime/test_container.py
similarity index 100%
rename from tests/tracer/runtime/test_container.py
rename to dd-trace-py/tests/tracer/runtime/test_container.py
diff --git a/tests/tracer/runtime/test_metric_collectors.py b/dd-trace-py/tests/tracer/runtime/test_metric_collectors.py
similarity index 100%
rename from tests/tracer/runtime/test_metric_collectors.py
rename to dd-trace-py/tests/tracer/runtime/test_metric_collectors.py
diff --git a/tests/tracer/runtime/test_metrics.py b/dd-trace-py/tests/tracer/runtime/test_metrics.py
similarity index 100%
rename from tests/tracer/runtime/test_metrics.py
rename to dd-trace-py/tests/tracer/runtime/test_metrics.py
diff --git a/tests/tracer/runtime/test_runtime_id.py b/dd-trace-py/tests/tracer/runtime/test_runtime_id.py
similarity index 100%
rename from tests/tracer/runtime/test_runtime_id.py
rename to dd-trace-py/tests/tracer/runtime/test_runtime_id.py
diff --git a/tests/tracer/runtime/test_runtime_metrics.py b/dd-trace-py/tests/tracer/runtime/test_runtime_metrics.py
similarity index 100%
rename from tests/tracer/runtime/test_runtime_metrics.py
rename to dd-trace-py/tests/tracer/runtime/test_runtime_metrics.py
diff --git a/tests/tracer/runtime/test_tag_collectors.py b/dd-trace-py/tests/tracer/runtime/test_tag_collectors.py
similarity index 100%
rename from tests/tracer/runtime/test_tag_collectors.py
rename to dd-trace-py/tests/tracer/runtime/test_tag_collectors.py
diff --git a/tests/tracer/runtime/utils.py b/dd-trace-py/tests/tracer/runtime/utils.py
similarity index 100%
rename from tests/tracer/runtime/utils.py
rename to dd-trace-py/tests/tracer/runtime/utils.py
diff --git a/tests/tracer/test_agent.py b/dd-trace-py/tests/tracer/test_agent.py
similarity index 100%
rename from tests/tracer/test_agent.py
rename to dd-trace-py/tests/tracer/test_agent.py
diff --git a/tests/tracer/test_atexit.py b/dd-trace-py/tests/tracer/test_atexit.py
similarity index 100%
rename from tests/tracer/test_atexit.py
rename to dd-trace-py/tests/tracer/test_atexit.py
diff --git a/tests/tracer/test_ci.py b/dd-trace-py/tests/tracer/test_ci.py
similarity index 100%
rename from tests/tracer/test_ci.py
rename to dd-trace-py/tests/tracer/test_ci.py
diff --git a/tests/tracer/test_ci_utils.py b/dd-trace-py/tests/tracer/test_ci_utils.py
similarity index 100%
rename from tests/tracer/test_ci_utils.py
rename to dd-trace-py/tests/tracer/test_ci_utils.py
diff --git a/tests/tracer/test_compat.py b/dd-trace-py/tests/tracer/test_compat.py
similarity index 100%
rename from tests/tracer/test_compat.py
rename to dd-trace-py/tests/tracer/test_compat.py
diff --git a/tests/tracer/test_constants.py b/dd-trace-py/tests/tracer/test_constants.py
similarity index 100%
rename from tests/tracer/test_constants.py
rename to dd-trace-py/tests/tracer/test_constants.py
diff --git a/tests/tracer/test_context.py b/dd-trace-py/tests/tracer/test_context.py
similarity index 100%
rename from tests/tracer/test_context.py
rename to dd-trace-py/tests/tracer/test_context.py
diff --git a/tests/tracer/test_correlation_log_context.py b/dd-trace-py/tests/tracer/test_correlation_log_context.py
similarity index 100%
rename from tests/tracer/test_correlation_log_context.py
rename to dd-trace-py/tests/tracer/test_correlation_log_context.py
diff --git a/tests/tracer/test_encoders.py b/dd-trace-py/tests/tracer/test_encoders.py
similarity index 100%
rename from tests/tracer/test_encoders.py
rename to dd-trace-py/tests/tracer/test_encoders.py
diff --git a/tests/tracer/test_endpoint_config.py b/dd-trace-py/tests/tracer/test_endpoint_config.py
similarity index 100%
rename from tests/tracer/test_endpoint_config.py
rename to dd-trace-py/tests/tracer/test_endpoint_config.py
diff --git a/tests/tracer/test_env_vars.py b/dd-trace-py/tests/tracer/test_env_vars.py
similarity index 100%
rename from tests/tracer/test_env_vars.py
rename to dd-trace-py/tests/tracer/test_env_vars.py
diff --git a/tests/tracer/test_filters.py b/dd-trace-py/tests/tracer/test_filters.py
similarity index 100%
rename from tests/tracer/test_filters.py
rename to dd-trace-py/tests/tracer/test_filters.py
diff --git a/tests/tracer/test_freezegun.py b/dd-trace-py/tests/tracer/test_freezegun.py
similarity index 100%
rename from tests/tracer/test_freezegun.py
rename to dd-trace-py/tests/tracer/test_freezegun.py
diff --git a/tests/tracer/test_gitmetadata.py b/dd-trace-py/tests/tracer/test_gitmetadata.py
similarity index 100%
rename from tests/tracer/test_gitmetadata.py
rename to dd-trace-py/tests/tracer/test_gitmetadata.py
diff --git a/tests/tracer/test_global_config.py b/dd-trace-py/tests/tracer/test_global_config.py
similarity index 100%
rename from tests/tracer/test_global_config.py
rename to dd-trace-py/tests/tracer/test_global_config.py
diff --git a/tests/tracer/test_hooks.py b/dd-trace-py/tests/tracer/test_hooks.py
similarity index 100%
rename from tests/tracer/test_hooks.py
rename to dd-trace-py/tests/tracer/test_hooks.py
diff --git a/tests/tracer/test_hostname.py b/dd-trace-py/tests/tracer/test_hostname.py
similarity index 100%
rename from tests/tracer/test_hostname.py
rename to dd-trace-py/tests/tracer/test_hostname.py
diff --git a/tests/tracer/test_http.py b/dd-trace-py/tests/tracer/test_http.py
similarity index 100%
rename from tests/tracer/test_http.py
rename to dd-trace-py/tests/tracer/test_http.py
diff --git a/tests/tracer/test_inferred_proxy.py b/dd-trace-py/tests/tracer/test_inferred_proxy.py
similarity index 100%
rename from tests/tracer/test_inferred_proxy.py
rename to dd-trace-py/tests/tracer/test_inferred_proxy.py
diff --git a/tests/tracer/test_instance_config.py b/dd-trace-py/tests/tracer/test_instance_config.py
similarity index 100%
rename from tests/tracer/test_instance_config.py
rename to dd-trace-py/tests/tracer/test_instance_config.py
diff --git a/tests/tracer/test_logger.py b/dd-trace-py/tests/tracer/test_logger.py
similarity index 100%
rename from tests/tracer/test_logger.py
rename to dd-trace-py/tests/tracer/test_logger.py
diff --git a/tests/tracer/test_memory_leak.py b/dd-trace-py/tests/tracer/test_memory_leak.py
similarity index 100%
rename from tests/tracer/test_memory_leak.py
rename to dd-trace-py/tests/tracer/test_memory_leak.py
diff --git a/tests/tracer/test_monkey.py b/dd-trace-py/tests/tracer/test_monkey.py
similarity index 100%
rename from tests/tracer/test_monkey.py
rename to dd-trace-py/tests/tracer/test_monkey.py
diff --git a/tests/tracer/test_native_logger.py b/dd-trace-py/tests/tracer/test_native_logger.py
similarity index 100%
rename from tests/tracer/test_native_logger.py
rename to dd-trace-py/tests/tracer/test_native_logger.py
diff --git a/tests/tracer/test_pin.py b/dd-trace-py/tests/tracer/test_pin.py
similarity index 100%
rename from tests/tracer/test_pin.py
rename to dd-trace-py/tests/tracer/test_pin.py
diff --git a/tests/tracer/test_processors.py b/dd-trace-py/tests/tracer/test_processors.py
similarity index 100%
rename from tests/tracer/test_processors.py
rename to dd-trace-py/tests/tracer/test_processors.py
diff --git a/tests/tracer/test_propagation.py b/dd-trace-py/tests/tracer/test_propagation.py
similarity index 100%
rename from tests/tracer/test_propagation.py
rename to dd-trace-py/tests/tracer/test_propagation.py
diff --git a/tests/tracer/test_rand.py b/dd-trace-py/tests/tracer/test_rand.py
similarity index 100%
rename from tests/tracer/test_rand.py
rename to dd-trace-py/tests/tracer/test_rand.py
diff --git a/tests/tracer/test_rate_limiter.py b/dd-trace-py/tests/tracer/test_rate_limiter.py
similarity index 100%
rename from tests/tracer/test_rate_limiter.py
rename to dd-trace-py/tests/tracer/test_rate_limiter.py
diff --git a/tests/tracer/test_resource_renaming.py b/dd-trace-py/tests/tracer/test_resource_renaming.py
similarity index 100%
rename from tests/tracer/test_resource_renaming.py
rename to dd-trace-py/tests/tracer/test_resource_renaming.py
diff --git a/tests/tracer/test_sampler.py b/dd-trace-py/tests/tracer/test_sampler.py
similarity index 100%
rename from tests/tracer/test_sampler.py
rename to dd-trace-py/tests/tracer/test_sampler.py
diff --git a/tests/tracer/test_service.py b/dd-trace-py/tests/tracer/test_service.py
similarity index 100%
rename from tests/tracer/test_service.py
rename to dd-trace-py/tests/tracer/test_service.py
diff --git a/tests/tracer/test_settings.py b/dd-trace-py/tests/tracer/test_settings.py
similarity index 100%
rename from tests/tracer/test_settings.py
rename to dd-trace-py/tests/tracer/test_settings.py
diff --git a/tests/tracer/test_single_span_sampling_rules.py b/dd-trace-py/tests/tracer/test_single_span_sampling_rules.py
similarity index 100%
rename from tests/tracer/test_single_span_sampling_rules.py
rename to dd-trace-py/tests/tracer/test_single_span_sampling_rules.py
diff --git a/tests/tracer/test_sma.py b/dd-trace-py/tests/tracer/test_sma.py
similarity index 100%
rename from tests/tracer/test_sma.py
rename to dd-trace-py/tests/tracer/test_sma.py
diff --git a/tests/tracer/test_span.py b/dd-trace-py/tests/tracer/test_span.py
similarity index 100%
rename from tests/tracer/test_span.py
rename to dd-trace-py/tests/tracer/test_span.py
diff --git a/tests/tracer/test_span_data.py b/dd-trace-py/tests/tracer/test_span_data.py
similarity index 100%
rename from tests/tracer/test_span_data.py
rename to dd-trace-py/tests/tracer/test_span_data.py
diff --git a/tests/tracer/test_span_event.py b/dd-trace-py/tests/tracer/test_span_event.py
similarity index 100%
rename from tests/tracer/test_span_event.py
rename to dd-trace-py/tests/tracer/test_span_event.py
diff --git a/tests/tracer/test_span_link.py b/dd-trace-py/tests/tracer/test_span_link.py
similarity index 100%
rename from tests/tracer/test_span_link.py
rename to dd-trace-py/tests/tracer/test_span_link.py
diff --git a/tests/tracer/test_span_pointers.py b/dd-trace-py/tests/tracer/test_span_pointers.py
similarity index 100%
rename from tests/tracer/test_span_pointers.py
rename to dd-trace-py/tests/tracer/test_span_pointers.py
diff --git a/tests/tracer/test_span_tags.py b/dd-trace-py/tests/tracer/test_span_tags.py
similarity index 100%
rename from tests/tracer/test_span_tags.py
rename to dd-trace-py/tests/tracer/test_span_tags.py
diff --git a/tests/tracer/test_tagset.py b/dd-trace-py/tests/tracer/test_tagset.py
similarity index 100%
rename from tests/tracer/test_tagset.py
rename to dd-trace-py/tests/tracer/test_tagset.py
diff --git a/tests/tracer/test_telemetry.py b/dd-trace-py/tests/tracer/test_telemetry.py
similarity index 100%
rename from tests/tracer/test_telemetry.py
rename to dd-trace-py/tests/tracer/test_telemetry.py
diff --git a/tests/tracer/test_trace_utils.py b/dd-trace-py/tests/tracer/test_trace_utils.py
similarity index 100%
rename from tests/tracer/test_trace_utils.py
rename to dd-trace-py/tests/tracer/test_trace_utils.py
diff --git a/tests/tracer/test_tracer.py b/dd-trace-py/tests/tracer/test_tracer.py
similarity index 100%
rename from tests/tracer/test_tracer.py
rename to dd-trace-py/tests/tracer/test_tracer.py
diff --git a/tests/tracer/test_tracer_appsec.py b/dd-trace-py/tests/tracer/test_tracer_appsec.py
similarity index 100%
rename from tests/tracer/test_tracer_appsec.py
rename to dd-trace-py/tests/tracer/test_tracer_appsec.py
diff --git a/tests/tracer/test_tracing_event.py b/dd-trace-py/tests/tracer/test_tracing_event.py
similarity index 100%
rename from tests/tracer/test_tracing_event.py
rename to dd-trace-py/tests/tracer/test_tracing_event.py
diff --git a/tests/tracer/test_utils.py b/dd-trace-py/tests/tracer/test_utils.py
similarity index 100%
rename from tests/tracer/test_utils.py
rename to dd-trace-py/tests/tracer/test_utils.py
diff --git a/tests/tracer/test_writer.py b/dd-trace-py/tests/tracer/test_writer.py
similarity index 100%
rename from tests/tracer/test_writer.py
rename to dd-trace-py/tests/tracer/test_writer.py
diff --git a/tests/tracer/test_writer_encoder_multiple_payloads.py b/dd-trace-py/tests/tracer/test_writer_encoder_multiple_payloads.py
similarity index 100%
rename from tests/tracer/test_writer_encoder_multiple_payloads.py
rename to dd-trace-py/tests/tracer/test_writer_encoder_multiple_payloads.py
diff --git a/tests/tracer/utils_botocore/__init__.py b/dd-trace-py/tests/tracer/utils_botocore/__init__.py
similarity index 100%
rename from tests/tracer/utils_botocore/__init__.py
rename to dd-trace-py/tests/tracer/utils_botocore/__init__.py
diff --git a/tests/tracer/utils_botocore/test_span_pointers.py b/dd-trace-py/tests/tracer/utils_botocore/test_span_pointers.py
similarity index 100%
rename from tests/tracer/utils_botocore/test_span_pointers.py
rename to dd-trace-py/tests/tracer/utils_botocore/test_span_pointers.py
diff --git a/tests/tracer/utils_inferred_spans/__init__.py b/dd-trace-py/tests/tracer/utils_inferred_spans/__init__.py
similarity index 100%
rename from tests/tracer/utils_inferred_spans/__init__.py
rename to dd-trace-py/tests/tracer/utils_inferred_spans/__init__.py
diff --git a/tests/tracer/utils_inferred_spans/test_helpers.py b/dd-trace-py/tests/tracer/utils_inferred_spans/test_helpers.py
similarity index 100%
rename from tests/tracer/utils_inferred_spans/test_helpers.py
rename to dd-trace-py/tests/tracer/utils_inferred_spans/test_helpers.py
diff --git a/tests/utils.py b/dd-trace-py/tests/utils.py
similarity index 100%
rename from tests/utils.py
rename to dd-trace-py/tests/utils.py
diff --git a/tests/vendor/__init__.py b/dd-trace-py/tests/vendor/__init__.py
similarity index 100%
rename from tests/vendor/__init__.py
rename to dd-trace-py/tests/vendor/__init__.py
diff --git a/tests/vendor/msgpack/test_buffer.py b/dd-trace-py/tests/vendor/msgpack/test_buffer.py
similarity index 100%
rename from tests/vendor/msgpack/test_buffer.py
rename to dd-trace-py/tests/vendor/msgpack/test_buffer.py
diff --git a/tests/vendor/msgpack/test_case.py b/dd-trace-py/tests/vendor/msgpack/test_case.py
similarity index 100%
rename from tests/vendor/msgpack/test_case.py
rename to dd-trace-py/tests/vendor/msgpack/test_case.py
diff --git a/tests/vendor/msgpack/test_except.py b/dd-trace-py/tests/vendor/msgpack/test_except.py
similarity index 100%
rename from tests/vendor/msgpack/test_except.py
rename to dd-trace-py/tests/vendor/msgpack/test_except.py
diff --git a/tests/vendor/msgpack/test_limits.py b/dd-trace-py/tests/vendor/msgpack/test_limits.py
similarity index 100%
rename from tests/vendor/msgpack/test_limits.py
rename to dd-trace-py/tests/vendor/msgpack/test_limits.py
diff --git a/tests/vendor/msgpack/test_newspec.py b/dd-trace-py/tests/vendor/msgpack/test_newspec.py
similarity index 100%
rename from tests/vendor/msgpack/test_newspec.py
rename to dd-trace-py/tests/vendor/msgpack/test_newspec.py
diff --git a/tests/vendor/msgpack/test_pack.py b/dd-trace-py/tests/vendor/msgpack/test_pack.py
similarity index 100%
rename from tests/vendor/msgpack/test_pack.py
rename to dd-trace-py/tests/vendor/msgpack/test_pack.py
diff --git a/tests/vendor/msgpack/test_read_size.py b/dd-trace-py/tests/vendor/msgpack/test_read_size.py
similarity index 100%
rename from tests/vendor/msgpack/test_read_size.py
rename to dd-trace-py/tests/vendor/msgpack/test_read_size.py
diff --git a/tests/vendor/msgpack/test_seq.py b/dd-trace-py/tests/vendor/msgpack/test_seq.py
similarity index 100%
rename from tests/vendor/msgpack/test_seq.py
rename to dd-trace-py/tests/vendor/msgpack/test_seq.py
diff --git a/tests/vendor/msgpack/test_subtype.py b/dd-trace-py/tests/vendor/msgpack/test_subtype.py
similarity index 100%
rename from tests/vendor/msgpack/test_subtype.py
rename to dd-trace-py/tests/vendor/msgpack/test_subtype.py
diff --git a/tests/vendor/msgpack/test_unpack.py b/dd-trace-py/tests/vendor/msgpack/test_unpack.py
similarity index 100%
rename from tests/vendor/msgpack/test_unpack.py
rename to dd-trace-py/tests/vendor/msgpack/test_unpack.py
diff --git a/tests/vendor/test_dogstatsd.py b/dd-trace-py/tests/vendor/test_dogstatsd.py
similarity index 100%
rename from tests/vendor/test_dogstatsd.py
rename to dd-trace-py/tests/vendor/test_dogstatsd.py
diff --git a/tests/wait-for-services.py b/dd-trace-py/tests/wait-for-services.py
similarity index 100%
rename from tests/wait-for-services.py
rename to dd-trace-py/tests/wait-for-services.py
diff --git a/tests/webclient.py b/dd-trace-py/tests/webclient.py
similarity index 100%
rename from tests/webclient.py
rename to dd-trace-py/tests/webclient.py
diff --git a/ddtrace-internal/.gitignore b/ddtrace-internal/.gitignore
new file mode 100644
index 00000000000..f953b0485f1
--- /dev/null
+++ b/ddtrace-internal/.gitignore
@@ -0,0 +1,8 @@
+__pycache__/
+*.py[cod]
+*.egg-info/
+.eggs/
+build/
+dist/
+.venv/
+venv/
diff --git a/ddtrace-internal/README.md b/ddtrace-internal/README.md
new file mode 100644
index 00000000000..9e22564e0fb
--- /dev/null
+++ b/ddtrace-internal/README.md
@@ -0,0 +1,15 @@
+# ddtrace-internal
+
+Stub Python distribution for internal Datadog tooling and libraries. Import path: `ddtrace_internal`.
+
+This repository is intended to be checked out as a git submodule of the [`ddtrace`](../ddtrace) meta-repository, alongside [`dd-trace-py`](https://github.com/DataDog/dd-trace-py).
+
+## Local install (editable)
+
+```bash
+python -m pip install -e .
+```
+
+## Layout
+
+- `src/ddtrace_internal/` — package root
diff --git a/ddtrace-internal/pyproject.toml b/ddtrace-internal/pyproject.toml
new file mode 100644
index 00000000000..8415aa387fb
--- /dev/null
+++ b/ddtrace-internal/pyproject.toml
@@ -0,0 +1,14 @@
+[build-system]
+requires = ["setuptools>=61"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "ddtrace-internal"
+version = "0.0.0"
+description = "Stub internal Datadog Python package (ddtrace-internal)."
+readme = "README.md"
+requires-python = ">=3.9"
+authors = [{ name = "Datadog, Inc.", email = "dev@datadoghq.com" }]
+
+[tool.setuptools.packages.find]
+where = ["src"]
diff --git a/ddtrace-internal/setup.py b/ddtrace-internal/setup.py
new file mode 100644
index 00000000000..f2a429d7ef5
--- /dev/null
+++ b/ddtrace-internal/setup.py
@@ -0,0 +1,6 @@
+"""Install shim for setuptools / older pip (configuration lives in pyproject.toml)."""
+
+from setuptools import setup
+
+
+setup()
diff --git a/ddtrace-internal/src/ddtrace_internal/__init__.py b/ddtrace-internal/src/ddtrace_internal/__init__.py
new file mode 100644
index 00000000000..14fd763a219
--- /dev/null
+++ b/ddtrace-internal/src/ddtrace_internal/__init__.py
@@ -0,0 +1,35 @@
+"""Internal Datadog Python package (stub)."""
+
+__version__ = "0.0.0"
+
+
+def check_module_path(module, attr_path):
+ """
+ Helper function to safely check if a nested attribute path exists on a module.
+
+ Args:
+ module: The root module object
+ attr_path: Dot-separated path to the attribute (e.g., "flows.llm_flows.functions")
+
+ Returns:
+ bool: True if the full path exists, False otherwise
+
+ Example:
+ check_module_path(adk, "flows.llm_flows.functions.__call_tool_async")
+ check_module_path(adk, "agents.llm_agent.LlmAgent")
+ """
+ if not module:
+ return False
+
+ try:
+ current = module
+ for attr in attr_path.split("."):
+ if not hasattr(current, attr):
+ return False
+ current = getattr(current, attr)
+
+ return True
+ except (ImportError, AttributeError):
+ # Some modules may raise ImportError when accessing attributes that require
+ # additional dependencies (e.g., ContainerCodeExecutor requiring Docker for google-adk and an extra pkg install)
+ return False