-
Notifications
You must be signed in to change notification settings - Fork 535
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.5 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
55
56
57
58
59
[build-system]
requires = [
"setuptools>=64",
"wheel",
"cython>=3.0.11,<4",
"numpy>=2.0,<3"
]
build-backend = "setuptools.build_meta"
[project]
name = "hdbscan"
version = "0.8.43"
description = "Clustering based on density with variable density clusters"
readme = "README.rst"
requires-python = ">=3.10"
license = {text = "BSD"}
authors = [
{name = "Leland McInnes", email = "leland.mcinnes@gmail.com"}
]
keywords = ["cluster", "clustering", "density", "hierarchical"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: C",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"numpy>=1.20,<3",
"scipy>= 1.0",
"scikit-learn>=1.6",
"joblib>=1.0"
]
[dependency-groups]
cicd = ["pytest", "pytest-azurepipelines", "pytest-cov", "pytest-benchmark"]
[project.urls]
Homepage = "http://github.com/scikit-learn-contrib/hdbscan"
[tool.setuptools]
packages = ["hdbscan", "hdbscan.tests"]
[tool.setuptools.package-data]
hdbscan = ["dist_metrics.pxd"]