Configure the pyproject.toml with Required Packages

Teradata Developer Guides

ft:locale
en-US
ft:lastEdition
2026-08-18

The generated pyproject.toml needs the dagster-teradata package to interact with Teradata. Open the pyproject.toml file and add dagster-teradata to the dependencies section:

dependencies = [
    ...
    "pandas",
    "dagster-teradata",
    "python-dotenv",
]

After modifying the pyproject.toml, run uv sync to install the new dependencies:

uv sync

This ensures that all required packages, including dagster-teradata, are installed in your isolated environment.