-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (46 loc) · 1.51 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
[tool.poetry]
name = "foursight-cgap"
version = "4.5.0"
description = "Serverless Chalice Application for Monitoring"
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
packages = [
{ include = "chalicelib_cgap" }
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
cron-descriptor = "^1.4.0"
dcicutils = "^8.16.1"
click = "^7.1.2"
PyJWT = "^2.5.0"
Jinja2 = "^3.1.2"
google-api-python-client = "^1.12.5"
geocoder = "1.38.1"
# elasticsearch 7.17.9 (at least) has a problem:
# Error: "The client noticed that the server is not Elasticsearch and we do not support this unknown product"
# https://stackoverflow.com/questions/68802324/elasticsearch-in-go-err-the-client-noticed-that-the-server-is-not-elasticsear
elasticsearch = "7.13.4"
elasticsearch-dsl = "^7.0.0"
gitpython = "^3.1.2"
pytz = "^2020.1"
magma-suite = "^3.6.0"
tibanna-ff = "^3.5.0"
MarkupSafe = "^2.1.3"
foursight-core = "^5.7.0"
# use below for tests but not for deployment
#foursight-core = { git = "https://github.com/4dn-dcic/foursight-core.git", branch="core2" }
#portal-pipeline-utils = "2.1.0.1b1"
# Need pytest-redis 3.0.2 or higher for pytest 7.4.2 (or higher).
pytest = "^7.4.2"
pytest-redis = "^3.0.2"
tzlocal = "^5.1"
[tool.poetry.dev-dependencies]
chalice = "^1.21.6"
pytest-cov = "^4.1.0"
flaky = "3.6.1"
[tool.poetry.scripts]
local-check-execution = "chalicelib_cgap.scripts.local_check_execution:main"
publish-to-pypi = "dcicutils.scripts.publish_to_pypi:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"