chatmail/chatmail-pyinfra/pyproject.toml

31 lines
438 B
TOML
Raw Normal View History

[build-system]
requires = ["setuptools>=45"]
build-backend = "setuptools.build_meta"
[project]
name = "chatmail"
version = "0.1"
dependencies = [
"pyinfra",
]
2023-10-13 09:36:27 +02:00
2023-10-13 10:42:44 +02:00
[tool.pytest.ini_options]
addopts = "-v -ra --strict-markers"
2023-10-13 09:36:27 +02:00
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = lint
[testenv:lint]
skipdist = True
skip_install = True
deps =
ruff
black
commands =
black --quiet --check --diff src/
ruff src/
"""