-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (48 loc) · 1.22 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
[tool.poetry]
name = "s3proxy"
version = "0.1.0"
description = "Proxy server for allowing HTTP access to S3 objects only to requests authenticated against SSO"
authors = []
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
flask = "^2.2.5"
redis = "^4.4.4"
requests = "^2.32.0"
urllib3 = "^1.26.19"
boto3 = "^1.26.60"
gevent = "^23.9.1"
aws-xray-sdk = "^2.12.1"
sentry-sdk = {extras = ["flask"], version = "^2.8.0"}
types-aws-xray-sdk = "^2.14.0.20240606"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
mypy = "^0.991"
detect-secrets = "^1.4.0"
types-redis = "^4.4.0.3"
types-requests = "^2.28.11.8"
types-boto3 = "^1.0.2"
flake8 = "^6.0.0"
isort = "^5.12.0"
pii-security-check-hooks = {git = "https://github.com/uktrade/pii-secret-check-hooks.git"}
pre-commit = "^3.0.2"
[tool.poetry.group.testing]
optional = true
[tool.poetry.group.testing.dependencies]
coverage = "^7.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
[[tool.mypy.overrides]]
module = [ 'mypy-gevent',
'gevent',
'mypy-gevent.*',
'mypi-aws_xray_sdk.*',
'gevent.pywsgi',
'aws_xray_sdk.ext.flask.middleware'
]
ignore_missing_imports = true