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-12-11 17:36:18 +01:00
|
|
|
name = "cmdeploy"
|
|
|
|
version = "0.2"
|
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-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",
|
|
|
|
"black",
|
|
|
|
"pytest",
|
|
|
|
"pytest-xdist",
|
2024-03-27 13:17:33 +01:00
|
|
|
"imap_tools",
|
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]
|
2023-12-11 17:12:47 +01:00
|
|
|
cmdeploy = "cmdeploy.cmdeploy:main"
|
2023-12-09 15:15:40 +01:00
|
|
|
|
2023-12-11 13:04:11 +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-12-11 13:04:11 +01:00
|
|
|
|
2023-10-13 10:42:44 +02:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = "-v -ra --strict-markers"
|