File size: 369 Bytes
74ee63f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[build-system]
requires = [
    "setuptools>=68.2.2",
    "wheel",
    "Cython",
]
build-backend = "setuptools.build_meta"

[tool.black]
# Black configuration for code formatting
line-length = 88
target-version = ['py38']
exclude = '''

/(

    \.git

  | \.hg

  | \.mypy_cache

  | \.tox

  | \.venv

  | _build

  | buck-out

  | build

  | dist

)/

'''