-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
73 lines (64 loc) · 1.5 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
[tool.poetry]
name = "ansto-simplon-api"
version = "0.3.3"
description = "Simulated simplon api"
authors = [
"Francisco Hernandez Vivanco <[email protected]>",
"Daniel Eriksson <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/AustralianSynchrotron/ansto-simplon-api"
repository = "https://github.com/AustralianSynchrotron/ansto-simplon-api"
documentation = "https://github.com/AustralianSynchrotron/ansto-simplon-api"
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
fastapi = { version = ">=0.114.0,<0.200.0", extras = ["standard"] }
pydantic = ">=2.9.1,<2.10.0"
pydantic-settings = ">=2.4.0,<3.0.0"
numpy = ">=1.26.4,<2.0.0"
pyzmq = "26.2.0"
h5py = "3.11.0"
hdf5plugin = "4.4.0"
uvicorn = ">=0.30.6,<0.31.0"
lz4 = "4.3.3"
tqdm = ">=4.66.5,<5.0.0"
cbor2 = ">=5.6.4,<5.7.0"
bitshuffle = "0.5.1"
requests = ">=2.32.3"
dectris-compression = "^0.3.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "3.8.0"
[tool.black]
line-length = 88
target_version = ["py312"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pyright]
ignore = ["**/typing_extensions.py"]
pythonVersion = "3.12"
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
extend-select = ["B"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"