-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 1.06 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
[tool.poetry]
name = "facet-scanner"
version = "0.1.7"
description = "Extracts facets from datasets to add to elasticsearch."
authors = ["Daniel Westwood <daniel.westwood@stfc.ac.uk>"]
license = "{file='LICENSE'}"
readme = "README.md"
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
include = [
{ path = "conf/facet_scanner.ini" },
{ path = "scripts/lotus_worker.sh" }
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
elasticsearch = "^7"
requests = "^2.32.3"
tqdm = "^4.66.6"
sphinx = "^7"
ceda-elasticsearch-tools = { git = "https://github.com/cedadev/ceda-elasticsearch-tools.git", tag = "v2.4.0" }
tag-scanner = { git = "https://github.com/cedadev/cci-tag-scanner.git", tag = "v2.1.9" }
pytest = "^8.3.3"
[tool.poetry.scripts]
facet_scanner = "facet_scanner.scripts.facet_scanner_cmd:FacetExtractor.main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"