evennia/pyproject.toml

28 lines
493 B
TOML
Raw Normal View History

[build-system]
requires = ["setuptools>40.8.0", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
2020-07-27 21:09:13 +02:00
[tool.black]
line-length = 100
2022-11-18 12:02:46 +01:00
target-version = ['py39', 'py310', 'py311']
2020-07-27 21:09:13 +02:00
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| migrations
2022-11-18 12:02:46 +01:00
| docs
2020-07-27 21:09:13 +02:00
)
'''