-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (67 loc) · 1.92 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
[tool.poetry]
name = "ska-tango-examples"
version = "0.5.0"
description = "SKA Tango Examples"
authors = ["Matteo Di Carlo <[email protected]>"]
license = "BSD-3-Clause"
packages = [
{ include = "ska_tango_examples", from = "src" }
]
[tool.poetry.scripts]
TangoExampleCounterDS = 'ska_tango_examples.counter.Counter:main'
TangoExampleMotorDS = 'ska_tango_examples.basic_example.Motor:main'
TangoExampleEventReceiverDS = 'ska_tango_examples.basic_example.EventReceiver:main'
TangoExampleTabataDS = 'ska_tango_examples.tabata.Tabata:main'
TangoExampleAsyncTabataDS = 'ska_tango_examples.tabata.AsyncTabata:main'
[[tool.poetry.source]]
name = 'ska-nexus'
url = "https://artefact.skao.int/repository/pypi-all/simple/"
priority = "primary"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
debugpy = "^1.5.1"
numpy = "^1.26.1"
pytango = "^9.5.0"
ska-k8s-config-exporter = "^0.0.4"
ska-ser-log-transactions = "*"
ska-tango-base = "^0.20.2"
notebook = "^7.0.6"
jupyterlab = "^4.0.8"
jupyterhub = "^4.0.2"
jupyter-server = "^2.10.0"
fastjsonschema = "^2.19.1"
attrs = "^23.2.0"
referencing = "^0.35.1"
rpds-py = "^0.18.0"
jsonschema-specifications = "^2023.12.1"
[tool.poetry.group.dev.dependencies]
black = "^24.4.0"
coverage = "^7.5.1"
flake8 = "^7.0.0"
isort = "^5.13.0"
nbmake = {extras = ["all"], version = "^1.5.0"}
nbqa = {extras = ["all"], version = "^1.8.0"}
pylint = "^3.1.0"
pylint-junit = "^0.3.2"
pytest = "^8.2.0"
pytest-bdd = "^7.1.2"
pytest-cov = "^5.0.0"
pytest-forked = "^1.6.0"
pytest-json-report = "^1.5.0"
pytest-mock = "^3.14.0"
pytest-repeat = "^0.9.3"
pytest-timeout = "^2.3.1"
yamllint = "^1.32.0"
ska-tango-testing = "^0.6.1"
[tool.poetry.group.docs.dependencies]
myst-parser = "^3.0.0"
ska-ser-sphinx-theme = "^0.1.2"
Sphinx = "^7.3.0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 79
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"