-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 875 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 875 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
[project]
name = "plm-fid"
version = "1.0.0"
description = "Calculate Fréchet distance for protein language model embeddings"
authors = [{ name="Young Su Ko", email="youngsuko2000@gmail.com" }]
readme = "README.md"
license = "MIT"
requires-python = ">=3.10, <3.13"
dependencies = [
"biopython>=1.80",
"click>=8.0",
"einops>=0.6.0",
"numpy>=1.21.0",
"protobuf>=3.20.0",
"rjieba>=0.1.13",
"scipy>=1.8.0",
"sentencepiece>=0.1.96",
"tqdm>=4.64.0",
"transformers>=4.30.0",
]
[project.optional-dependencies]
dev = [
"build>=1.2.2.post1",
"pytest>=8.4.1",
"ruff>=0.12.3",
"twine>=6.1.0",
]
torch = ["torch>=2.0"]
[project.scripts]
plm-fid = "plm_fid.cli:main"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
"Source" = "https://github.com/young-su-ko/plm-fid"