debugpy/pyproject.toml
2019-10-03 18:31:37 -07:00

15 lines
369 B
TOML

[build-system]
requires = ["wheel", "setuptools"]
build-backend = "setuptools.build_meta"
[tool.black]
# TODO: remove exclusions as code is reformatted to conform to the Black style.
# The only exclusions that should remain in the end are _vendored and versioneer.
exclude = '''
( __pycache__
| ^/versioneer.py
| ^/src/ptvsd/_vendored
| ^/src/ptvsd/_version.py
)
'''