Skip to content

Commit fac2c39

Browse files
committed
Updated pyproject structure.
1 parent b8dc901 commit fac2c39

3 files changed

Lines changed: 7 additions & 14 deletions

File tree

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@ Several configurations of the mRNABench are available.
88

99
### Datasets Only
1010
If you are interested in the benchmark datasets **only**, you can run:
11-
```bash
12-
conda create --name mrna_bench python=3.10
13-
conda activate mrna_bench
14-
git clone https://github.com/IanShi1996/mRNABench.git
15-
cd mRNABench
1611

17-
pip install -e .
12+
```bash
13+
pip install mrna-bench
1814
```
1915

2016
### Full Version
@@ -25,11 +21,9 @@ CUDA 12.1 and Triton uninstalled (due to a DNA-BERT2 issue).
2521
```bash
2622
conda create --name mrna_bench python=3.10
2723
conda activate mrna_bench
28-
git clone https://github.com/IanShi1996/mRNABench.git
29-
cd mRNABench
3024

3125
pip install torch==2.2.2 --index-url https://download.pytorch.org/whl/cu121
32-
pip install -e .[base_models]
26+
pip install mrna-bench[base_models]
3327
pip uninstall triton
3428
```
3529
Inference with other models will require the installation of the model's

mrna_bench/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
data_path: /data1/morrisq/ian/rna_benchmarks
1+
data_path: /data1/morrisq/ian/benchmarks

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[project]
2-
name = "mrna_bench"
3-
version = "1.0.0"
2+
name = "mrna-bench"
3+
version = "1.0.1"
44
description = "Benchmarking suite for mRNA property prediction."
55
readme = "README.md"
66
authors = [
77
{ name = "Ruian (Ian) Shi", email = "ian.shi@mail.utoronto.ca" }
88
]
99
requires-python = ">= 3.10"
10-
dynamic = ["version"]
1110
license = { file = "LICENSE" } # Include a LICENSE file in your repo
1211
keywords = ["mrna", "genomic foundation model", "benchmark"]
1312
classifiers = [
@@ -49,4 +48,4 @@ requires = [
4948
build-backend = "setuptools.build_meta"
5049

5150
[tool.setuptools]
52-
py-modules = ["mrna_bench"]
51+
packages = ["mrna_bench"]

0 commit comments

Comments
 (0)