-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 803 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
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "embkit"
version = "0.3"
description = "Embedding Kit for embedding models"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Kyle Ellrott", email = "[email protected]" },
{ name = "Raphael Kirchgaessner", email = "[email protected]" }
]
keywords = ["embeddings", "machine learning", "deep learning"]
dependencies = [
"torch>=2.0",
"pandas",
"numpy",
"click",
"scikit-learn",
"scipy",
"gripql",
"tqdm",
"biopython",
"fair-esm",
"faiss-cpu",
"h5py"
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
embkit = "embkit.__main__:cli"