mirror of
https://github.com/ocrmypdf/OCRmyPDF.git
synced 2026-01-07 04:32:45 +00:00
33 lines
432 B
TOML
33 lines
432 B
TOML
[build-system]
|
|
requires = [
|
|
"setuptools >= 30.3.0",
|
|
"wheel",
|
|
"cffi",
|
|
"setuptools_scm",
|
|
"setuptools_scm_git_archive"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
py36 = true
|
|
skip-string-normalization = true
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
| docs
|
|
| misc
|
|
| \.egg-info
|
|
)/
|
|
'''
|