-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (53 loc) · 2.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "ceda-elasticsearch-tools"
version = "2.4.0"
description = "Extension of the basic elasticsearch python wrapper to perform operations with a given ES index."
authors = ["Rhys Evans <[email protected]>, Daniel Westwood <[email protected]>, Neil Massey <[email protected]>"]
license = "{file='LICENSE'}"
readme = "README.md"
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.8',
]
include = [
{ path = 'root_certificate/root-ca.pem' }
]
[project.urls]
Repository = "https://github.com/cedadev/ceda-elasticsearch-tools.git"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
requests = "^2.32.3"
elasticsearch = "^7"
docopt = "^0.6.2"
tqdm = "^4.66.5"
certifi = "^2024.8.30"
chardet = "^5.2.0"
idna = "^3.10"
urllib3 = "^2.2.3"
simplejson = "^3.19.3"
tabulate = "^0.9.0"
setuptools = "^75.2.0"
pytest = "^8.3.3"
[tool.poetry.scripts]
nla_sync_es = "ceda_elasticsearch_tools.cmdline.nla_sync_es:main"
nla_sync_lotus_task = "ceda_elasticsearch_tools.cmdline.secondary_scripts.nla_sync_lotus_task:main"
update_md5 = "ceda_elasticsearch_tools.cmdline.update_md5:main"
md5 = "ceda_elasticsearch_tools.cmdline.secondary_scripts.md5:main"
fbs_missing_files = "ceda_elasticsearch_tools.cmdline.fbs_missing_files:main"
spot_checker = "ceda_elasticsearch_tools.cmdline.secondary_scripts.spot_checker:main"
fbs_live_index = "ceda_elasticsearch_tools.cmdline.fbs_live_index:main"
coverage_test = "ceda_elasticsearch_tools.cmdline.ceda_eo.coverage_test:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"