forked from flopezag/IoTAgent-Turtle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
36 lines (29 loc) · 913 Bytes
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
[tool.poetry]
name = "SDMX2JSON-LD"
version = "0.5.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 <fernando.lopez@fiware.org>"]
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.10"
lark = "1.1.5"
secure = "0.3.0"
docopt = "0.6.2"
schema = "0.7.5"
hi-dateinfer = "0.4.6"
fastapi = "0.95.1"
uvicorn = "0.22.0"
python-multipart = "0.0.6"
loguru = "0.7.0"
requests = "2.30.0"
rdflib = ">=6.2,<6.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"