forked from sacdallago/biotrainer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
82 lines (76 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "biotrainer"
version = "1.0.0"
description = "Biological prediction models made simple."
authors = [
{name = "Sebastian Franz", email = "sebastian.franz@tum.de"},
{name = "Christian Dallago", email = "christian.dallago@tum.de"},
{name = "Joaquin Gomez Sanchez", email = "joaquin.gomez@tum.de"},
{name = "Michael Heinzinger", email = "mheinzinger@rostlab.org"}
]
license = {text = "AFL v3.0"}
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Academic Free License (AFL)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization"
]
requires-python = ">=3.11,<3.13"
dependencies = [
"accelerate>=1.1.1",
"h5py>=3.8.0,<4.0.0",
"protobuf>=5.29.1",
"numpy==2.2.5",
"ruamel.yaml>=0.17.40,<0.18.0",
"sentencepiece>=0.2.0",
"scipy==1.15.2",
"scikit-learn>=1.5.1",
"tensorboard>=2.18.0",
"torch==2.6.0",
"tqdm>=4.67.0",
"transformers>=4.51.1",
"torchmetrics>=1.7.1",
"safetensors>=0.4.4",
"onnx==1.16.1",
"onnxscript>=0.2.5",
"pandas>=2.2.3",
"datasets>=3.5.1",
"umap-learn>=0.5.7",
"llvmlite>=0.44.0",
"cyclopts>=3.16.0",
"appdirs>=1.4.4",
"peft>=0.15.2",
]
[project.optional-dependencies]
jupyter = [
"jupyter>=1.1.1",
"notebook>=7.4.0",
]
onnx-cpu = ["onnxruntime>=1.21.0"]
onnx-gpu = ["onnxruntime-gpu>=1.21.0"]
onnx-mac = ["onnxruntime-coreml>=1.13.1"]
dev = [
"pytest>=8.3.4",
"build>=1.2.2",
"pip-audit>=2.9.0",
]
[project.urls]
Issues = "https://github.com/sacdallago/biotrainer/issues"
Repository = "https://github.com/sacdallago/biotrainer"
[project.scripts]
biotrainer = "biotrainer.utilities.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["biotrainer"]
[tool.hatch.envs.default]
dependencies = [
"pytest>=8.3.4",
"build>=1.2.2",
]