-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (48 loc) · 1.28 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
[project]
name = "gnn-builder"
version = "0.0.1"
readme = "README.md"
license = { file = "LICENSE" }
description = "GNNBuilder is a framework for generating FPGA hardware accelerators for graph neural networks (GNNs) ujsing High Level Synthesis (HLS)."
authors = [
{ name = "Stefan Abi-Karam", email = "[email protected]" },
{ name = "Sharc Lab" },
]
keywords = [
"Graph Neural Networks",
"Deep Learning Accelerators",
"Vitis HLS",
"High-Level Synthesis",
"Xilinx",
"FPGA",
"Electronic Design Automation",
]
classifiers = []
requires-python = ">=3.10"
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
docs = ["sphinx", "furo"]
test = ["pytest"]
[project.urls]
"Homepage" = "https://github.com/sharc-lab/gnn-builder"
"Repository" = "https://github.com/sharc-lab/gnn-builder"
"Paper" = "https://arxiv.org/abs/2303.16459"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["gnnbuilder"]
include-package-data = true
[tool.ruff]
line-length = 88
target-version = "py310"
# [tool.black]
# line-length = 88
# preview = true
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
skip_gitignore = true