-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1.31 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
[tool.poetry]
name = "tag-scanner"
version = "2.1.4"
description = "This package provides a command line tool moles_esgf_tag to generate dataset tags for both MOLES and ESGF."
license = "{file='LICENSE'}"
readme = "README.md"
authors = ["Daniel Westwood <[email protected]>", "Antony Wilson <[email protected]>"]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
]
include = [
{ path = "templates/*.html" },
{ path = "conf/tag_check.conf" }
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
verboselogs = "1.7"
elasticsearch = "7.6.0"
tqdm = "^4.45.0"
pytest = "^8.3.3"
jinja2 = "^3"
directory-tree = { git = "https://github.com/cedadev/ceda-directory-tree.git", tag = "v1.1.2"}
sparqlwrapper = "^2.0.0"
netcdf4 = "^1.7.2"
six = "^1.16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
moles_esgf_tag = "tag_scanner.scripts:CCITaggerCommandLineClient.main"
cci_json_check = "tag_scanner.scripts:TestJSONFile.cmd"
cci_check_tags = "tag_scanner.scripts.check_tags:main"
export_facet_json = "tag_scanner.scripts.dump_facet_object:main"