forked from kklemon/ProtEnc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (40 loc) · 1.23 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
[tool.poetry]
name = "protenc"
version = "0.1.6"
description = "Extract protein embeddings from protein language models."
authors = ["Kristian Klemon <kristian.klemon@gmail.com>"]
readme = "README.md"
packages = [{include = "protenc"}, {include = "protenc_mcp"}]
repository = "https://github.com/kklemon/ProtEnc"
homepage = "https://github.com/kklemon/ProtEnc"
[tool.poetry.scripts]
protenc = 'protenc.console.extract:entrypoint'
protenc-mcp = 'protenc_mcp.server:main'
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
lmdb = ">=1.4.1"
pandas = ">=2.1.1"
tqdm = ">=4.66.1"
biopython = ">=1.81"
sentencepiece = ">=0.1.99"
json-stream = ">=2.3.2"
humanfriendly = ">=10.0"
pytest = ">=7.4.2"
sequence_models = "*"
mcp = ">=1.13,<2.0"
colorlog = ">=6.7.0"
h5py = ">=3.10.0"
transformers = ">=4.33.3"
huggingface_hub = "<0.35.0"
torch = {version = ">=2.0.1", source = "pytorch-gpu-src"}
esm = {git = "https://github.com/Biohub/esm.git", branch = "main"}
# tensordict dependency has been removed
[[tool.poetry.source]]
name = "pytorch-gpu-src"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[tool.poetry.group.dev.dependencies]
ipython = "^8.16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"