-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
executable file
·53 lines (49 loc) · 1.38 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
[build-system]
requires = ["poetry-core>=1.2.0b2"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "visual_graph_datasets"
version = "0.15.7"
description = "Datasets for the training of graph neural networks (GNNs) and subsequent visualization of attributional explanations of XAI methods"
license = "MIT"
authors = ["awa59kst120df <awa59kst120df@gmail.com>"]
maintainers = ["awa59kst120df <awa59kst120df@gmail.com>"]
readme = "README.rst"
keywords = ["graph neural networks", "datasets", "explainable AI"]
packages = [
{ include = "visual_graph_datasets" }
]
include = [
"visual_graph_datasets/VERSION",
]
exclude = [
"dist",
"venv",
"visual_graph_datasets/experiments/assets",
"visual_graph_datasets/experiments/results",
"visual_graph_datasets/examples/results",
]
[tool.poetry.scripts]
vgd = 'visual_graph_datasets.cli:cli'
[tool.poetry.dependencies]
python = ">=3.9,<=3.16"
poetry-bumpversion = ">=0.3.0"
# click = ">=8.1.7,<8.2.0"
rich_click = ">=1.8.3"
jinja2 = ">=3.0.3"
numpy = ">=1.22.0,<2.0.0"
matplotlib = ">=3.5.3"
psutil = ">=5.7.2"
pytest = ">=7.2.0"
orjson = ">=3.8.0"
pyyaml = ">=0.6.0"
pycomex = ">=0.8.0"
networkx = ">=2.8.8"
scipy = ">=1.10.1"
imageio = ">=2.22.4"
cairosvg = ">=2.5.0"
rdkit = ">=2022.9.0"
parsimonious = ">=0.10.0"
[tool.poetry_bumpversion.file."visual_graph_datasets/VERSION"]
search = "{current_version}"
replace = "{new_version}"