-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 870 Bytes
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
[build-system]
requires = ["hatchling>=1.18", "editables>=0.5"]
build-backend = "hatchling.build"
[project]
name = "graph-net"
version = "0.1.0"
description = "Graph neural network utilities and models."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "GraphNet Authors" }
]
dependencies = []
[project.optional-dependencies]
dev = [
"pre-commit>=3.0",
"astor>=0.8",
]
agent = [
"huggingface_hub>=0.20.0",
"transformers>=4.20.0",
]
[tool.hatch.build.targets.wheel]
packages = ["graph_net"]
[tool.hatch.build.targets.sdist]
include = [
"graph_net",
"README.md",
"LICENSE",
]
[tool.ruff.lint.per-file-ignores]
# F821: numpy string annotations like np.ndarray["N", np.int64] trigger false positives
"graph_net/torch/rp_expr/rp_expr.py" = ["F821"]
"graph_net/torch/rp_expr/rp_expr_passes.py" = ["F821"]