weblate/pyproject.toml
Michal Čihař b326fd4827 Languages: Move language data to standalone module
This allows updating independently of Weblate and makes it reusable for others.
2020-09-29 13:22:29 +02:00

27 lines
500 B
TOML

[tool.black]
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv.*
| _build
| buck-out
| build
| dist
| data
| data-test
| node_modules
| settings\.py
)/
)
'''
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", "translate-toolkit"] # PEP 508 specifications.