-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (71 loc) · 2.12 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "hidori"
version = "0.4.0.dev0"
description = "A modern, agentless, zero-dependency system state assurance"
authors = ["Piotr Szpetkowski <piotr.szpetkowski@pyquest.space>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "hidori_common", from = "src" },
{ include = "hidori_core", from = "src" },
{ include = "hidori_runner", from = "src" },
{ include = "hidori_pipelines", from = "src" },
{ include = "hidori_cli", from = "src" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Installation/Setup",
]
repository = "https://github.com/hidori-dev/hidori"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/hidori-dev/hidori/issues"
"Changelog" = "https://github.com/hidori-dev/hidori/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
black = "23.12.1"
flake8 = "6.1.0"
freezegun = "1.4.0"
ipython = "8.19.0"
isort = "5.13.2"
mypy = "1.8.0"
pre-commit = "3.6.0"
pre-commit-hooks = "4.5.0"
pyfakefs = "5.3.2"
pytest = "7.4.3"
pytest-asyncio = "0.23.2"
pytest-cov = "4.1.0"
[tool.poetry.group.pypi.dependencies]
twine = "4.0.2"
[tool.poetry.scripts]
hidori = "hidori_cli.apps.hidori:main"
hidori-pipeline = "hidori_cli.apps.pipeline:main"
[tool.mypy]
files = ["src"]
mypy_path = "stubs"
strict = true
[tool.pyright]
include = ["src"]
stubPath = "stubs"
# This is actually very likely to happen
reportMissingModuleSource = false
[tool.pytest.ini_options]
addopts = "--cov=src --cov-report=term-missing:skip-covered"
testpaths = ["tests"]
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
"class .*\\bProtocol.*",
"# pragma: no cover",
"raise NotImplementedError()",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"