chatmail/cmdeploy/pyproject.toml

43 lines
717 B
TOML
Raw Normal View History

[build-system]
2023-12-09 15:15:40 +01:00
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
2023-12-11 17:36:18 +01:00
name = "cmdeploy"
version = "0.2"
dependencies = [
"pyinfra",
"pillow",
2023-12-01 22:11:17 +01:00
"qrcode",
"markdown",
2023-12-09 13:43:56 +01:00
"pytest",
"setuptools>=68",
2023-12-09 15:15:40 +01:00
"termcolor",
2023-12-11 01:45:32 +01:00
"build",
2023-12-09 13:43:56 +01:00
"tox",
2023-12-11 14:05:07 +01:00
"ruff",
"pytest",
"pytest-xdist",
"imap_tools",
]
2023-10-13 09:36:27 +02:00
2023-12-09 15:15:40 +01:00
[project.scripts]
2023-12-11 17:12:47 +01:00
cmdeploy = "cmdeploy.cmdeploy:main"
2023-12-09 15:15:40 +01:00
[project.entry-points.pytest11]
"chatmaild.testplugin" = "chatmaild.tests.plugin"
2023-12-11 17:36:18 +01:00
"cmdeploy.testplugin" = "cmdeploy.tests.plugin"
2023-10-13 10:42:44 +02:00
[tool.pytest.ini_options]
addopts = "-v -ra --strict-markers"
[tool.ruff]
lint.select = [
"F", # Pyflakes
"I", # isort
"PLC", # Pylint Convention
"PLE", # Pylint Error
"PLW", # Pylint Warning
]