-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.36 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
[build-system]
requires = ["setuptools>=61.0.0", "cython", "numpy>=1.14.0"]
build-backend = "setuptools.build_meta"
[project]
name = "GraKeL"
version='0.1.10'
dependencies = [
"numpy >= 1.14.0",
"cython >= 0.27.3",
"scikit-learn >= 0.19",
"six >= 1.11.0",
"future >= 0.16.0",
"joblib"
]
requires-python=">=3.5"
authors = [
{ name = "Ioannis-Siglidis", email = "[email protected]" }
]
readme = "README.md"
description='A scikit-learn compatible library for graph kernels'
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: C',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
]
license= { file = "LICENSE" }
[project.optional-dependencies]
lovasz = ["cvxopt>=1.2.0"]
dev = ["cvxopt>=1.2.0", "pytest", "pytest-coverage", "torch_geometric"]
test = ["pytest", "pytest-coverage", "torch_geometric"]
wheel = ["pytest", "pytest-coverage"]
[project.urls]
documentation = 'https://ysig.github.io/GraKeL/'
feedback = 'http://www.lix.polytechnique.fr/dascim/contact/'
source = 'https://github.com/ysig/GraKeL/'
tracker = 'https://github.com/ysig/GraKeL/issues'