-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.52 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
[tool.poetry]
name = "overlapindex"
version = "0.1.4"
description = "OverlapIndex (OI), an Incremental Cluster Validity index for identifying the degree of overlap of data classes."
authors = ["Niklas M. Melton <niklasmelton@gmail.com>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/NiklasMelton/OverlapIndex"
repository = "https://github.com/NiklasMelton/OverlapIndex"
documentation = "https://overlapindex.readthedocs.io/"
keywords = ["incremental cluster validity", "cluster validity", "ART", "machine learning", "transfer learning", "clustering"]
packages = [{ include = "overlapindex" }]
[tool.poetry.dependencies]
python = ">=3.9,<3.15"
artlib = { version = ">=0.1.10,<0.2.0", optional = true, python = ">=3.9,<3.15" }
matplotlib = [
{ version = ">=3.9.4,<3.10.0", optional = true, python = ">=3.9,<3.10" },
{ version = ">=3.10.8,<4.0.0", optional = true, python = ">=3.10,<3.15" },
]
numpy = [
{ version = ">=2.0.0,<3.0.0", python = ">=3.9,<3.13" },
{ version = ">=2.4.1,<3.0.0", python = ">=3.13,<3.15" },
]
scipy = [
{ version = ">=1.13.0,<2.0.0", python = ">=3.9,<3.13" },
{ version = ">=1.16.1,<2.0.0", python = ">=3.13,<3.15" },
]
scikit-learn = [
{ version = ">=1.4.2,<2.0.0", python = ">=3.9,<3.14" },
{ version = ">=1.7.2,<2.0.0", python = ">=3.14,<3.15" },
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
[tool.poetry.extras]
art = ["artlib", "matplotlib"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"