-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 1.04 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
47
48
49
50
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "cafa5-protein-function-prediction"
version = "0.1.0"
description = "CAFA-5 Protein Function Prediction using protein language model embeddings"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"pandas>=2.0",
"tqdm>=4.65",
"torchmetrics>=1.0",
"pyyaml>=6.0",
"matplotlib>=3.7",
"transformers",
"safetensors",
"mlflow==2.13.0",
"prometheus-client>=0.22.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.1",
"pydantic>=2.0",
"pyyaml>=6.0",
"numpy>=1.24",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.ruff]
line-length = 100
target-version = "py310"
# Phase 1A: classic pyflakes/pycodestyle starter set. Expand in later CI phases.
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
[tool.pytest.ini_options]
testpaths = ["tests/unit"]
pythonpath = ["."]