-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
30 lines (29 loc) · 913 Bytes
/
setup.cfg
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
[metadata]
name = fast_hdbscan
version = 0.2.0
author = Leland McInnes
author_email = [email protected]
maintainer = Leland McInnes
maintainer_email = [email protected]
description = A fast multicore version of hdbscan for low dimensional euclidean spaces
long_description = file: README.rst
keywords = cluster, clustering, hdbscan, dbscan
url = https://github.com/TutteInstitute/fast_hdbscan
license = BSD 2-Clause License
license_files = LICENSE
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Development Status :: 4 - Beta
Operating System :: OS Independent
[options]
zip_safe = False
packages = fast_hdbscan
python_requires = >=3.9
install_requires =
numpy>=1.21
numba>=0.56
scikit-learn>=1.1