-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (59 loc) · 1.92 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
[tool.poetry]
name = "graph-diffusers"
version = "0.0.0"
description = "Diffusion operators for graph machine learning based on GraphBLAS"
authors = ["Aaron Zolnai-Lucas <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
urls = { Homepage = "https://github.com/aaronzo/graph-diffusers" }
[[tool.poetry.source]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "supplemental"
[[tool.poetry.source]]
name = "pyg-cpu"
url = "https://data.pyg.org/whl/torch-2.3.0+cpu.html"
priority = "supplemental"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
python-graphblas = "*"
pytorch = { version = "*", optional = true }
torch-sparse = { version = "*", optional = true }
[tool.poetry.extras]
torch = ["pytorch", "torch-sparse"]
[tool.poetry.group.dev.dependencies]
mypy = "*"
ruff = "*"
pytest = "*"
torch = { version = "~2.3.0", source = "pytorch-cpu" }
torch-sparse = { version = "*", source = "pyg-cpu"}
torch-scatter = { version = "*", source = "pyg-cpu"}
[tool.mypy]
ignore_missing_imports = true
strict = true
disallow_subclassing_any = false
disallow_any_generics = false
[tool.ruff]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"