weblate/pyproject.toml
Michal Čihař b5deeaff07 Setup: Automatically compile MO files
This makes pip install from the repo behave as expected.

Fixes #3737
2020-06-16 09:56:04 +02:00

28 lines
524 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
| scripts/iso-codes
)/
)
'''
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", "translate-toolkit"] # PEP 508 specifications.