-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.25 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
48
49
50
51
52
53
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nimble-raccoon"
authors = [
{name = "Federico Comitani", email = "[email protected]"},
]
description = "A slim and fast implementation of the RACCOON clustering library."
license = {text = "GPL-3.0"}
version = "0.1.1"
requires-python = ">=3.10"
keywords=["clustering", "dimensionality-reduction", "iterative",
"hierarchical-clustering", "multi-scale", "scale-adaptive",
"snn", "louvain"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3"
]
dependencies = [
'pyarrow>=14.0.1',
'numpy>=1.26.2',
'pandas>=2.1.3',
'scikit-learn>=1.3.2',
'scikit-network>=0.31.0',
'umap-learn>=0.5.4',
'anytree>=2.12.0',
'tqdm>=4.66.1',
'pynndescent>=0.5.10',
'matplotlib>=3.8.1',
'loguru>=0.7.2',
'faiss-cpu>=1.7.4',
'toml>=0.10.2',
'pytest>=7.4.3'
]
dynamic = ["readme"]
[tool.setuptools.dynamic]
readme = {file=["README.md"]}
[project.optional-dependencies]
gpu = ['faiss-gpu']
[project.urls]
repository = "https://github.com/fcomitani/nimble-raccoon"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*", "build*"]
[tool.setuptools.package-data]
nimbloon = ["static*"]