43 lines
717 B
TOML
43 lines
717 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "cmdeploy"
|
|
version = "0.2"
|
|
dependencies = [
|
|
"pyinfra",
|
|
"pillow",
|
|
"qrcode",
|
|
"markdown",
|
|
"pytest",
|
|
"setuptools>=68",
|
|
"termcolor",
|
|
"build",
|
|
"tox",
|
|
"ruff",
|
|
"pytest",
|
|
"pytest-xdist",
|
|
"imap_tools",
|
|
]
|
|
|
|
[project.scripts]
|
|
cmdeploy = "cmdeploy.cmdeploy:main"
|
|
|
|
[project.entry-points.pytest11]
|
|
"chatmaild.testplugin" = "chatmaild.tests.plugin"
|
|
"cmdeploy.testplugin" = "cmdeploy.tests.plugin"
|
|
|
|
[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
|
|
]
|