-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (33 loc) · 984 Bytes
/
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
[tool.poetry]
name = "protenc"
version = "0.1.6"
description = "Extract protein embeddings from protein language models."
authors = ["Kristian Klemon <[email protected]>"]
readme = "README.md"
packages = [{include = "protenc"}]
repository = "https://github.com/kklemon/ProtEnc"
homepage = "https://github.com/kklemon/ProtEnc"
[tool.poetry.scripts]
protenc = 'protenc.console.extract:entrypoint'
[tool.poetry.dependencies]
python = "<3.13,>=3.10"
torch = {version = "^2.0.1", source = "pytorch-gpu-src"}
transformers = "^4.33.3"
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"
tensordict = "^0.1.2"
[[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"