-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.47 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
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyGIP"
version = "1.1.0"
description = "A Python package for Graph Intellectual Property Protection"
readme = "README.md"
authors = [{ name = "Bolin Shen", email = "blshen@fsu.edu" }]
license = { text = "BSD-2-Clause" }
requires-python = ">=3.8, <3.13"
dependencies = [
"torch-geometric>=2.0.0",
"numpy>=1.19.0",
"scipy>=1.6.0",
"networkx>=2.5",
"scikit-learn>=0.24.0",
"tqdm>=4.50.0",
"torchdata>=0.7.0,<0.8.0",
"pyyaml>=5.3.0",
"pydantic>=2.0.0"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: BSD License",
"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",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://labrai.github.io/PyGIP"
Repository = "https://github.com/LabRAI/PyGIP"
[project.optional-dependencies]
# torch 2.3 cannot be installed directly from PyPI, users must add -f
torch = ["torch==2.3.0"]
# DGL cannot be installed directly from PyPI, users must add -f
dgl = ["dgl==2.2.1"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pygip*"]