forked from mlx-graphs/mlx-graphs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (58 loc) · 1.41 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mlx-graphs"
version = "0.0.4"
description = "Graph Neural Network library made for Apple Silicon"
authors = [{name="mlx-graphs contributors"}]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python",
]
dependencies = [
"mlx==0.6.*; sys_platform == 'darwin'",
"numpy==1.26.3",
"requests==2.31.0",
"fsspec==2024.2.0",
"tqdm==4.66.1",
]
[project.optional-dependencies]
dev = [
"pre-commit==3.6.0",
]
test = [
"pytest==7.4.4",
"scipy==1.12.0",
]
docs = [
"ipython==8.21.0",
"sphinx==7.2.6",
"sphinx-book-theme==1.1.0",
"sphinx-autodoc-typehints==1.25.2",
"nbsphinx==0.9.3",
"sphinx-gallery==0.15.0",
]
benchmarks = [
"scipy==1.12.0",
"dgl==2.0.0",
"torch==2.2.0",
"torch_geometric==2.5.0",
]
[project.urls]
Homepage = "https://mlx-graphs.github.io/mlx-graphs/"
Documentation = "https://mlx-graphs.github.io/mlx-graphs/"
Repository = "https://github.com/mlx-graphs/mlx-graphs"
Issues = "https://github.com/mlx-graphs/mlx-graphs/issues"
[tool.ruff]
line-length = 88
indent-width = 4
select = ["F", "E", "W", "I001"]
extend-include = ["*.ipynb"]
[tool.ruff.format]
docstring-code-format = true