-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
25 lines (22 loc) · 975 Bytes
/
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
[tool.poetry]
name = "cci-os-worker"
version = "0.1.0"
description = "Worker repo to execute the steps for CCI Opensearch Ingestion, namely facet and tag scanning and updates to the CEDA FBI"
authors = ["Daniel Westwood <[email protected]>"]
license = "\"{file = 'LICENSE'}\""
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0.2"
elasticsearch = "^7"
ceda-fbs = { git = 'https://github.com/cedadev/ceda-fbs-cci.git', tag = 'v0.2.1b' }
directory-tree = { git = "https://github.com/cedadev/ceda-directory-tree.git", tag = "v1.1.2"}
ceda-elasticsearch-tools = { git = "https://github.com/cedadev/ceda-elasticsearch-tools.git", tag = "v2.4.0"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tagscan = "cci_os_worker.tag_scan:tag_main"
facetscan = "cci_os_worker.facet_scan:facet_main"
fbi_update = "cci_os_worker.fbi_update:fbi_main"
cci_os_update = "cci_os_worker.run_all:main"