mirror of
https://github.com/pypiserver/pypiserver
synced 2024-11-09 16:45:51 +01:00
28 lines
521 B
TOML
28 lines
521 B
TOML
|
[build-system]
|
||
|
# Minimum requirements for the build system to execute.
|
||
|
requires = ["setuptools", "wheel"] # PEP 508 specifications.
|
||
|
|
||
|
|
||
|
[tool.black]
|
||
|
# Configuration for the Black autoformatter
|
||
|
line-length = 80
|
||
|
target-version = ['py36']
|
||
|
exclude = '''
|
||
|
(
|
||
|
/(
|
||
|
\.direnv
|
||
|
| \.eggs # exclude a few common directories in the
|
||
|
| \.git # root of the project
|
||
|
| \.mypy_cache
|
||
|
| \.tox
|
||
|
| \.venv
|
||
|
| \.vscode
|
||
|
| _build
|
||
|
| build
|
||
|
| dist
|
||
|
| venv
|
||
|
| pypiserver/bottle.py
|
||
|
)
|
||
|
)
|
||
|
'''
|