mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
16 lines
378 B
TOML
16 lines
378 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__
|
|
| ^/.tox
|
|
| ^/versioneer.py
|
|
| ^/src/ptvsd/_vendored
|
|
| ^/src/ptvsd/_version.py
|
|
)
|
|
'''
|