-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "HO-GDB"
version = "0.1.0"
authors = [
{ name="Maciej Besta", email="maciej.besta@inf.ethz.ch" },
{ name="Shriram Chandran", email="schandran@student.ethz.ch" },
{ name="Jakub Cudak", email="jcudak@student.agh.edu.pl" },
{ name="Robert Gerstenberger", email="gerstenberger.robert@gmail.com" }
]
description = "Python package for 'HO-GDB'"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9,<3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"Flask>=3.1.1",
"hypernetx>=2.4.0",
"model>=0.6.0",
"neo4j>=5.28.1",
"networkx>=3.5",
"numpy>=2.3.0",
"pandas>=2.3.0",
"pytest>=8.4.1",
"python-dotenv>=1.1.0",
"Requests>=2.32.4",
"rdkit>=2025.3.3",
"torch>=2.7.1",
"torch_geometric>=2.6.1"
]
[tool.hatch.build.targets.wheel]
packages = [
"HOGDB"
]
[project.urls]
Homepage = "https://github.com/spcl/HO-GDB"