-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
86 lines (74 loc) · 1.87 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
85
86
[tool.poetry]
name = "ska-mid-itf"
version = "24.5.0"
description = "Integration testing and deployment project for the Mid ITF"
authors = ["ATLAS"]
license = "BSD 3-Clause"
readme = "README.md"
packages = [{ include = "tests/integration" }]
[[tool.poetry.source]]
name = 'skao'
url = 'https://artefact.skao.int/repository/pypi-internal/simple'
[[tool.poetry.source]]
name = "PyPI-public"
url = 'https://pypi.org/simple'
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
ska-ser-skallop = "^2.31.4-rc1"
ska-tmc-cdm = "8.3.0"
pytest-json-report = "^1.5.0"
pytest-repeat = "^0.9.1"
ska_ser_logging = "^0.4.1"
ska-control-model = "^0.3.4"
pyyaml = "^6.0.1"
ska-mid-itf-engineering-tools = "^0.9.4-rc.1"
httpx = "^0.27.0"
h11 = "^0.14.0"
annotated-types = "^0.6.0"
pydantic-core = "^2.18.1"
black = "^24.3.0"
ska-telmodel = "1.13.0"
[tool.poetry.group.docs.dependencies]
Sphinx = "^7.2.6"
sphinx-rtd-theme = "^1.3.0"
recommonmark = "^0.7.1"
markupsafe = "^2.1.0"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
flake8 = "^7.0.0"
isort = "^5.12.0"
pylint = "^3.1.0"
pylint-junit = "^0.3.2"
pytest-cov = "^4.0.0"
flake8-docstrings = "^1.7.0"
flake8-rst-docstrings = "^0.3.0"
darglint = "^1.8.1"
mypy = "^1.8.0"
twine = "^5.0.0"
[tool.poetry.group.ansible.dependencies]
ansible = "^9.3.0"
ansible-lint = { version = "^24.2.0", markers = "platform_system != 'Windows'" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-p no:warnings"
testpaths = ["tests/integration"]
log_cli_level = "INFO"
log_cli = "True"
junit_family = "xunit2"
python_classes = "!Test"
#bdd_features_base_dir = "tests"
[tool.build_sphinx]
source-dir = "docs/src"
build-dir = "docs/_build"
all_files = 1
builder = "html"
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 99
[tool.flake8]
max-line-length = 99
[tool.black]
line_length = 99