-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (82 loc) · 2.08 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
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "mx3-beamline-library"
version = "1.2.8"
description = "Ophyd devices and bluesky plans."
authors = ["Stephen Mudie <[email protected]>"]
[[tool.poetry.source]]
name = "cachedpypi"
url = "https://pypi.asci.synchrotron.org.au/root/pypi/+simple"
priority = "supplemental"
[[tool.poetry.source]]
name = "asci-dev"
url = "https://pypi.asci.synchrotron.org.au/asci/dev/+simple"
priority = "supplemental"
[[tool.poetry.source]]
name = "asciprod"
url = "https://pypi.asci.synchrotron.org.au/asci/prod/+simple"
priority = "supplemental"
[[tool.poetry.source]]
name = "mx3dev"
url = "https://pypi.asci.synchrotron.org.au/mx3/dev/+simple"
priority = "supplemental"
[[tool.poetry.source]]
name = "PyPi"
priority = "explicit"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
ophyd = "1.9.0"
bluesky = "1.12.0"
as-redis-signal = {git = "https://bitbucket.synchrotron.org.au/scm/ec/as-redis-signal.git", rev = "main"}
requests = "^2.31.0"
pydantic = "^2.7.0"
pyepics = "3.5.1"
httpx = "^0.27.0"
numpy = "^1.23.5"
coloredlogs = "^15.0.1"
Pillow = "^10.4.0"
scipy = "^1.8.0"
mx-robot-library = { git = "https://github.com/AustralianSynchrotron/mx-robot-library.git", tag = "0.2.2" }
redis = "^5.0.1"
h5py="^3.8.0"
hdf5plugin="^4.1.1"
bitshuffle="0.5.1"
matplotlib="^3.7.1"
PyYAML="^6.0"
opencv-python="^4.7.0"
pandas="^2.0.2"
tiled = "0.1.0a105"
httpx-file = "^0.2.0"
as-acquisition-library = { git = "https://bitbucket.synchrotron.org.au/scm/ec/as-acquisition-library.git", rev = "main" }
[tool.poetry.extras]
as-redis-signal = ["as-redis-signal"]
as-acquisition-library = ["as-acquisition-library"]
[tool.poetry.dev-dependencies]
pre-commit = "^2.18.1"
pytest = "^8.3.4"
alabaster = "0.7.12"
pytest-cov = "6.0.0"
Sphinx = "^5.3.0"
sphinx-rtd-theme = "0.5.2"
pytest-mock="^3.14.0"
fakeredis="2.26.2"
pytest-order="^1.3.0"
respx="^0.22.0"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"