-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
85 lines (73 loc) · 1.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.poetry]
name = "SDMX2JSON-LD"
version = "1.0.0"
description = "A SDMX in RDF Turtle 1.1 format parser to generate valid JSON-LD and send to FIWARE Context Brokers using ETSI NGSI-LD."
authors = ["Fernando López <[email protected]>"]
readme = "./sdmx2jsonld/README.md"
packages = [{include = "sdmx2jsonld"}]
keywords = ["parsing", "ETSI NGSI-LD", "SDMX"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
repository = "https://github.com/flopezag/IoTAgent-Turtle"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
lark = "1.1.9"
secure = "0.3.0"
docopt = "0.6.2"
schema = "0.7.5"
hi-dateinfer = "0.4.6"
fastapi = "0.109.2"
uvicorn = "0.25.0"
python-multipart = "0.0.9"
loguru = "0.7.2"
requests = "2.32.0"
rdflib = "6.3.2"
python-dateutil = "2.8.2"
[tool.black]
line-length = 120
[tool.poetry.dev-dependencies]
pytest = "8.2.1"
tox = "4.11.4"
types-docopt = "0.6.11.4"
types-pytz = "2024.1.0.20240417"
types-python-dateutil = "2.9.0.20240316"
types-requests = "2.31.0.20240406"
coverage = "7.5.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry_bumpversion.replacements]]
files = ["cli/command.py", "sdmx2jsonld/transform/parser.py"]
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--tb=auto -ra --showlocals"
[tool.coverage]
html.show_contexts = true
html.skip_covered = false
paths.source = [
"api",
"cli",
"common",
"ngsild",
"sdmx2jsonld",
]
report.fail_under = 88
run.parallel = true
run.plugins = ["covdefaults"]
[tool.mypy]
python_version = "3.11"
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"api",
"cli",
"common",
"ngsild",
"sdmx2jsonld",
]
ignore_missing_imports = true
warn_unused_ignores = true