-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.35 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
[tool.poetry]
name = "scikit-ntk"
version = "1.2.1"
description = "Implementation of the neural tangent kernel for scikit-learn's Gaussian process module."
license="BSD-3-Clause"
authors = [
"Ronaldas P Lencevičius <[email protected]>",
]
packages = [
{ include = "skntk" },
]
readme = "README.md"
homepage = "https://github.com/392781/scikit-ntk"
repository = "https://github.com/392781/scikit-ntk"
keywords = ["sckit-learn", "sklearn"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/392781/scikit-ntk/issues"
[tool.poetry.dependencies]
python = ">=3.8, <3.14"
scikit-learn = [
{version = "^1.0.0", python = ">=3.8,<3.10"},
{version = "^1.1.3", python = ">=3.10"}
]
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
flake8 = "^5.0.4"
[tool.pytest.ini_options]
testpaths = ["tests"]