forked from BorgwardtLab/simbsig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 800 Bytes
/
pyproject.toml
File metadata and controls
29 lines (23 loc) · 800 Bytes
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
[tool.poetry]
name = "simbsig"
version = "0.1.2"
description = "A python package for out-of-core similarity search and dimensionality reduction"
authors = ["Eljas Roellin <roelline@student.ethz.ch>",
"Michael F. Adamer <michael.adamer@bsse.ethz.ch>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/BorgwardtLab/simbsig"
repository = "https://github.com/BorgwardtLab/simbsig"
keywords = ["similarity search", "kmeans", "knn", "nearest neighbors", "gpu", "pca"]
include = ["LICENSE"]
packages = [{ include="simbsig", from="." }]
[tool.poetry.dependencies]
python = "^3.8"
h5py = "^3.7.0"
torch = "^1.9.0"
numpy = "^1.22.0"
tqdm = "^4.64.0"
scikit-learn = "^1.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"