File: pyproject.toml

package info (click to toggle)
python-pbr 7.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 900 kB
  • sloc: python: 5,399; sh: 138; makefile: 28; ansic: 24
file content (20 lines) | stat: -rw-r--r-- 529 bytes parent folder | download
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