-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.51 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "poly2graph"
dynamic = ["version"]
description = "Automated Non-Hermitian Spectral Graph Construction"
authors = [
{name = "Xianquan (Sarinstein) Yan", email = "xianquanyan@gmail.com"},
{name = "Hakan Akgün", email = "hakanakgun317@gmail.com"},
]
maintainers = [
{name = "Xianquan (Sarinstein) Yan", email = "xianquanyan@gmail.com"},
]
keywords = [
"non-hermitian spectral graph", "non-bloch band", "algebraic geometry",
"graph representation learning", "transformer", "computer vision",
"morphological image processing"
]
readme = {"file" = "README.md", "content-type" = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Environment :: GPU :: NVIDIA CUDA"
]
dependencies = [
"numpy",
"numba",
"networkx",
"scikit-image",
"scikit-learn",
"gdown"
]
[project.optional-dependencies]
require = ["torch", "torch_geometric", "tensorflow"] # packages to install manually
[project.urls]
Homepage = "https://github.com/sarinstein-yan/poly2graph"
Repository = "https://github.com/sarinstein-yan/poly2graph"
[tool.hatch.version]
path = "src/poly2graph/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = ["assets"]
[tool.hatch.build.targets.wheel]
packages = ["src/poly2graph"]