-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.6 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
[tool.poetry]
name = "foursight-core"
version = "5.8.0"
description = "Serverless Chalice Application for Monitoring"
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
packages = [
{ include = "foursight_core" },
{ include = "checks", from = "foursight_core" },
{ include = "helpers", from = "foursight_core/checks" }
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
boto3 = "^1.34.136"
botocore = "^1.34.136"
click = "^7.1.2"
cron-descriptor = "^1.2.31"
cryptography = "^43.0.1" # Required for AWS Cognito JWT decode (PyJWKClient)
dcicutils = "^8.16.4"
elasticsearch = "7.13.4"
elasticsearch-dsl = "^7.0.0"
geocoder = "1.38.1"
gitpython = "^3.1.2"
google = "^3.0.0"
google-auth-oauthlib = "^0.7.0"
google-api-python-client = "^1.12.5"
# TODO: I think this can update to ">=2.10.1,<4" so that it can move to version 3.x.
# -kmp 23-Feb-2023
Jinja2 = "^3.1.2"
# TODO: I think this can update to ">=1.1.1,<3" so that it can move to version 2.x.
# Doing so will mean adjusting the Jinja2 constraint as well. -kmp 23-Feb-2023
MarkupSafe = "^2.1.3"
pyDes = "^2.0.1"
PyJWT = "^2.8.0"
pytz = ">=2020.1"
redis = "^4.5.1"
toml = ">=0.10.2,<1"
tzlocal = "^5.0.1"
[tool.poetry.dev-dependencies]
boto3-stubs = "^1.34.136"
botocore-stubs = "^1.34.136"
chalice = "^1.31.0"
flake8 = ">=3.9.2"
flaky = "3.6.1"
# Need pytest-redis 3.0.2 or higher for pytest 7.4.2 (or higher).
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
pytest-redis = "^3.0.2"
[tool.poetry.scripts]
publish-to-pypi = "dcicutils.scripts.publish_to_pypi:main"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"