1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
[build-system]
requires = [
# Includes pep660 support in setuptools
"setuptools>=64.0.0;python_version>='3.7'",
# Fallback to whatever we can get otherwise.
# Note this is not something projects should typically
# need. PBR attempts to support a wide range of python
# versions and this is an exceptional case due to that
# need.
"setuptools;python_version<'3.7'"
]
build-backend = "pbr.build"
backend-path = ["."]
[tools.setuptools]
py-modules=[]
[tool.black]
line-length = 79
skip-string-normalization = true
|