mirror of
https://github.com/dbt-labs/dbt-core
synced 2025-12-17 19:31:34 +00:00
* convert setup.py to pyproject.toml * move dev requirements into pyproject.toml * with setup.py gone we can install from root * lint cleanrly state intention to remove * convert precommit to use dev deps * consolidate version to pyproject.toml * editable req get rid of editable-req * docs updates * tweak configs for builds * fix script * changelog * fixes to build * revert unnecesary changes more simplification revert linting more simplification fix don’t need it
14 lines
387 B
TOML
14 lines
387 B
TOML
# Root-level pyproject.toml for tool configurations
|
|
# Packaging configuration is in core/pyproject.toml
|
|
# This file exists so tools like mypy and black can find their config when run from root
|
|
|
|
[tool.mypy]
|
|
# TODO: widen range of files as we fix issues
|
|
files = 'core/dbt'
|
|
mypy_path = "third-party-stubs/"
|
|
namespace_packages = true
|
|
|
|
[tool.black]
|
|
line-length = 99
|
|
target-version = ['py38']
|