File: pyproject.toml

package info (click to toggle)
python-cwcwidth 0.1.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 440 kB
  • sloc: ansic: 170; python: 78; sh: 6; makefile: 4
file content (24 lines) | stat: -rw-r--r-- 298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = [
  "setuptools >= 43",
  "Cython >= 3",
]
build-backend = "setuptools.build_meta"

[tool.black]
target_version = ["py39"]
include = '\.pyi?$'
exclude = '''
/(
    \.git
  | \.hg
  | \.eggs
  | \.mypy_cache
  | \.tox
  | venv
  | _build
  | build
  | dist
  | docs
)/
'''