2023-10-12 15:06:48 +02:00
|
|
|
[build-system]
|
2023-12-09 15:15:40 +01:00
|
|
|
requires = ["setuptools>=68"]
|
2023-10-12 15:06:48 +02:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
2023-10-15 17:40:06 +02:00
|
|
|
name = "deploy-chatmail"
|
2023-10-12 15:06:48 +02:00
|
|
|
version = "0.1"
|
2023-10-12 17:00:20 +02:00
|
|
|
dependencies = [
|
|
|
|
"pyinfra",
|
2023-12-07 13:52:00 +01:00
|
|
|
"pillow",
|
2023-12-01 22:11:17 +01:00
|
|
|
"qrcode",
|
2023-12-07 13:52:00 +01:00
|
|
|
"markdown",
|
2023-12-09 13:43:56 +01:00
|
|
|
"pytest",
|
|
|
|
"setuptools>=68",
|
2023-12-09 15:15:40 +01:00
|
|
|
"termcolor",
|
2023-12-09 13:43:56 +01:00
|
|
|
"tox",
|
2023-10-12 17:00:20 +02:00
|
|
|
]
|
2023-10-13 09:36:27 +02:00
|
|
|
|
2023-12-09 15:15:40 +01:00
|
|
|
[project.scripts]
|
|
|
|
cmdeploy = "deploy_chatmail.cmdeploy:main"
|
|
|
|
|
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/
|
|
|
|
"""
|