OCRmyPDF/pyproject.toml

34 lines
497 B
TOML
Raw Normal View History

2019-02-26 12:23:33 -08:00
[build-system]
requires = [
"setuptools >= 30.3.0",
2019-02-26 12:23:33 -08:00
"wheel",
"cffi",
"setuptools_scm",
"setuptools_scm_git_archive"
]
2019-03-03 02:27:56 -08:00
build-backend = "setuptools.build_meta"
2019-02-26 12:23:33 -08:00
2019-02-08 14:09:08 -08:00
[tool.black]
line-length = 88
2020-06-29 01:45:12 -07:00
target-version = ["py36", "py37", "py38"]
2019-02-08 14:09:08 -08:00
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
| misc
| \.egg-info
2019-11-25 14:20:59 -08:00
| src/ocrmypdf/lib/_leptonica.py
2019-02-08 14:09:08 -08:00
)/
'''