-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (41 loc) · 1.28 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
[tool.poetry]
name = "ontouml-json2graph"
version = "1.3.2"
description = "OntoUML JSON2Graph Decoder"
license = "Apache-2.0"
authors = ["Pedro Paulo F. Barcelos <[email protected]>"]
readme = "README.md"
homepage = "https://w3id.org/ontouml/json2graph"
repository = "https://w3id.org/ontouml/json2graph"
documentation = "https://w3id.org/ontouml/json2graph/docs"
keywords = ["semantic-web", "knowledge-graph", "ontouml", "ontology-driven-development", "ontouml-schema", "ontouml-vocabulary", "ontouml-metamodel"]
packages = [{ include = "json2graph" }]
exclude = ["json2graph/tests"]
[tool.poetry.urls]
"PyPi Project" = "https://pypi.org/project/ontouml-json2graph/"
[tool.poetry.dependencies]
python = "^3.9"
pyyaml = "^6.0.1"
rdflib = "^7.0.0"
validators = ">=0.32.0,<0.35"
importlib = "^1.0.4"
[tool.poetry.group.dev.dependencies]
sphinx = "^7.2.6"
pytest = ">=7.4.2,<9.0.0"
pre-commit = ">=3.4,<5.0"
sphinx-autoapi = ">=2.1.1,<4.0.0"
myst-parser = ">=2,<4"
sphinx-toolbox = "^3.5.0"
sphinx-rtd-theme = ">=1.3,<4.0"
sphinx-rtd-size = "^0.2.0"
requests = "^2.31.0"
tomli = "^2.0.1"
poetry = "^1.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.vulture]
paths = ["."]
exclude = ["docs/", "sphinx/", "library.py"]