[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

# Dependencies are declared once, in pyproject.toml. This file installs the project
# itself rather than restating them, so a pipenv environment and a `pip install dbt-ci`
# resolve to the same set and the two manifests cannot drift apart.
#
#   pipenv install         -> runtime dependencies + every optional connector
#   pipenv install --dev   -> the above plus the test and lint tooling
#
# Add or change dependencies in pyproject.toml, then run `pipenv lock`.
[packages]
dbt-ci = {path = ".", editable = true, extras = ["all"]}

[dev-packages]
dbt-ci = {path = ".", editable = true, extras = ["all", "dev"]}

[requires]
python_version = "3.12"
