-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
73 lines (68 loc) · 1.73 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
[project]
name = "mrna-bench"
version = "1.3.0"
description = "Benchmarking suite for mRNA property prediction."
readme = "README.md"
authors = [
{ name = "Ruian (Ian) Shi", email = "ian.shi@mail.utoronto.ca" },
{ name = "Taykhoom Dalal", email = "tid4007@med.cornell.edu" },
{ name = "Phil Fradkin", email = "phil.fradkin@gmail.com" },
{ name = "Divya Koyyalagunta", email = "dko4001@med.cornell.edu" }
]
requires-python = ">= 3.10"
license = { file = "LICENSE" } # Include a LICENSE file in your repo
keywords = ["mrna", "genomic foundation model", "benchmark"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: Unix"
]
dependencies = [
"tqdm",
"PyYAML",
"scikit-learn",
"numpy<2",
"pandas<=2.2.2",
"requests",
"pyarrow==20.0.0",
"fastparquet",
"openpyxl"
]
[project.urls]
Repository = "https://github.com/morrislab/mRNABench"
[project.optional-dependencies]
base_models = [
"torch==2.2.2",
"transformers==4.38.0",
"flash-attn==2.7.4.post1",
"mamba-ssm==1.2.0.post1",
"rna-fm==0.2.2",
"accelerate==1.8.1",
"multimolecule==0.0.7",
"evo-model==0.4",
"borzoi-pytorch==0.4.2",
"enformer-pytorch==0.8.10",
"ViennaRNA==2.7.0"
]
dev = [
"mypy",
"flake8",
"flake8-docstrings",
"pytest",
"types-requests",
"types-PyYAML",
"genomekit==7.2.1"
]
[build-system]
requires = [
"setuptools",
"wheel",
"pip"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["mrna_bench*"]
[tool.mypy]
packages = ["mrna_bench"]
exclude = ["tests", "scripts", "experiments"]
ignore_missing_imports = true