-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
79 lines (72 loc) · 2.25 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
[tool.poetry]
name = "Full Stack Graph Machine Learning"
version = "1.0.0"
description = "Graphlet AI - Full Stack Graph Machine Learning: Theory, Practice, Tools and Techniques"
authors = ["Russell Jurney <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "graphml_class"}]
[tool.poetry.urls]
"Company Homepage" = "https://graphlet.ai"
"Class Homepage" = "https://technologytransfer.it/events-mec/graph-machine-learning-2/"
"Teacher Homepage" = "https://linkedin.com/in/russelljurney"
"Code Repository" = "https://github.com/Graphlet-AI/graphml-class"
"Bug Tracker" = "https://github.com/Graphlet-AI/graphml-class/issues"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
python-dateutil = "^2.8.2"
graphistry = {extras = ["ai"], version = "^0.34.17"}
littleballoffur = "^2.3.1"
networkx = ">=3.1"
numpy = "^1.24.3"
pandas = "<2.0"
requests = "^2.31.0"
seaborn = "^0.12.2"
torch = [
{"platform" = "linux", "url" = "https://files.pythonhosted.org/packages/81/58/431fd405855553af1a98091848cf97741302416b01462bbf9909d3c422b3/torch-1.13.1-cp310-cp310-manylinux1_x86_64.whl" },
{"platform" = "darwin", "url" = "https://files.pythonhosted.org/packages/82/d8/0547f8a22a0c8aeb7e7e5e321892f1dcf93ea021829a99f1a25f1f535871/torch-1.13.1-cp310-none-macosx_10_9_x86_64.whl" },
]
torch-geometric = "^2.6.1"
pyg-library = "^0.2.0"
cmake = "^3.26.3"
Cython = "^0.29.35"
networkit = "^11.0"
llvmlite = "^0.43.0"
numba = "^0.60.0"
wandb = "^0.18.5"
graphdatascience = "^1.12"
torchmetrics = "^1.5.1"
umap-learn = "^0.5.7"
dgl = "1.1.1"
faiss-cpu = "^1.7.4"
karateclub = "^1.3.3"
neo4j = "5.26.0"
scikit-learn = "^1.5.2"
graphrole = "^1.1.1"
pyspark = "^3.5.3"
graphframes-latest = "^0.8.3"
[tool.poetry.group.dev.dependencies]
nbdime = "^3.2.1"
black = "^23.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pytest = "^7.4.2"
pytest-stub = "^1.1.0"
ipython = "^8.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py310"]
include = ["graphlet", "test"]
[tool.isort]
profile = "black"
src_paths = ["graphlet", "test"]
[tool.mypy]
python_version = "3.10"
mypy_path = ["graphlet", "test"]
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true