-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (43 loc) · 1.3 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
[tool.poetry]
include = ["MANIFEST.skao.int"]
name = "ska-integration-test-harness"
version = "0.2.2"
description = "Currently, a test harness for TMC-CSP integration tests. In future, a generic test harness integration testing an arbitrary combination of production or emulated SKA subsystems."
authors = ["Emanuele Lena <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
packages = [
{ include = "ska_integration_test_harness", from = "src" }
]
[[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"
assertpy = "^1.1"
pytango = "^9.4.2"
ska-control-model=">=1.0.0,<2.0.0"
ska-tango-testing = "^0.7.2"
ska-ser-logging = "^0.4.1"
msgpack-numpy = "^0.4.8"
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
black = "^24.4.2"
flake8 = "^7.1.0"
pylint = "^3.2.6"
pylint-junit = "^0.3.4"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
build = "^1.2.1"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.4.7"
myst-parser = "^3.0.1"
ska-ser-sphinx-theme = "^0.2.0"
sphinx-autodoc-typehints = "^2.2.3"
typing-extensions = "^4.12.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"