mirror of
https://github.com/vale981/ablog
synced 2025-03-04 08:41:40 -05:00
25 lines
365 B
TOML
25 lines
365 B
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools_scm", "wheel"]
|
|
build-backend = 'setuptools.build_meta'
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
(
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
| astropy_helpers
|
|
| docs
|
|
)/
|
|
| ah_bootstrap.py
|
|
)
|
|
'''
|