-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
79 lines (72 loc) · 2.09 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
[tool.poetry]
name = "operationsgateway-api"
version = "0.1.0"
description = ""
readme = "README.md"
authors = ["Matthew Richards <[email protected]>"]
[tool.poetry.dependencies]
# Note that python3.12 is only compatible with scipy>=1.11.3
# but python3.8 is only compatible with scipy<=1.10.1
# so it is not possible to target both at the same time
python = ">=3.11,<3.12"
fastapi = "^0.115.5"
motor = "^3.3.2"
uvicorn = "^0.20.0"
python-multipart = "^0.0.18"
PyYAML = "^6.0"
ImageHash = "4.3.1"
# scipy is a dependency of ImageHash but is listed to mitigate
# a vulnerability in scipy version 1.9.3
scipy = "^1.10.0"
numpy = "^1.23.1"
h5py = "^3.7.0"
Pillow = "^10.3.0"
matplotlib = "^3.5.2"
gunicorn = "^23.0.0"
orjson = "^3.10.3"
python-dateutil = "^2.8.2"
PyJWT = "2.10.1"
cryptography = "^43.0.1"
python-ldap = "3.4.2"
boto3 = ">=1.26.97,<1.36.0"
cron-converter = "^1.0.1"
zeep = "^4.2.1"
# Indirect dependency lxml 5.1.0 causes symbol not found in flat namespace '_exsltDateXpathCtxtRegister' error
lxml = "5.0.1"
httpx = "^0.23.3"
# Workaround for: https://github.com/python-poetry/poetry-plugin-export/issues/183
# urllib3 isn't a dependency of this project, remove once the issue has been resolved
urllib3 = ">=1.25.4,<1.27"
lark = "1.1.9"
[tool.poetry.dev-dependencies]
black = "^24.4.0"
flake8 = "^4.0.1"
flake8-black = "^0.2.1"
flake8-broken-line = "0.4.0"
flake8-bugbear = "^22.4.25"
flake8-builtins = "^1.5.3"
flake8-commas = "^2.1.0"
flake8-comprehensions = "^3.3.0"
flake8-import-order = "^0.18.1"
flake8-logging-format = "^0.6.0"
pep8-naming = "^0.12.1"
safety = "^2.3.1"
pytest = "^7.2.0"
requests = "2.32.2"
pytest-cov = "^3.0.0"
coverage = "^6.4.4"
fabric = "^3.1.0"
pytest-asyncio = "^0.21.0"
s4cmd = "^2.1.0"
[tool.poetry.group.simulated-data.dependencies]
epac-data-sim = {git = "[email protected]:CentralLaserFacility/EPAC-DataSim.git"}
[tool.coverage.paths]
source = ["operationsgateway_api"]
[tool.coverage.run]
branch = true
source = ["operationsgateway_api"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"