okraus88 commited on
Commit
93c42fa
·
1 Parent(s): 645dc0e

made installable and added instructions to README.md

Browse files
Files changed (2) hide show
  1. README.md +10 -1
  2. pyproject.toml +5 -2
README.md CHANGED
@@ -24,6 +24,15 @@ This model is a [channel-agnostic masked autoencoder](https://openaccess.thecvf.
24
  - **License:** [Non-Commercial End User License Agreement](https://huggingface.co/recursionpharma/OpenPhenom/blob/main/LICENSE)
25
 
26
 
 
 
 
 
 
 
 
 
 
27
  ### Model Sources
28
 
29
  - **Repository:** [https://github.com/recursionpharma/maes_microscopy](https://github.com/recursionpharma/maes_microscopy)
@@ -124,4 +133,4 @@ See paper linked above for details on model training and evaluation. Primary hyp
124
 
125
  - Kian Kenyon-Dean: kian.kd@recursion.com
126
  - Oren Kraus: oren.kraus@recursion.com
127
- - Or, email: info@rxrx.ai
 
24
  - **License:** [Non-Commercial End User License Agreement](https://huggingface.co/recursionpharma/OpenPhenom/blob/main/LICENSE)
25
 
26
 
27
+ ### Installation
28
+
29
+ Requires Python 3.10.4 or higher. From a clone of the repository:
30
+
31
+ ```
32
+ cd /path/to/OpenPhenom
33
+ pip install -e .
34
+ ```
35
+
36
  ### Model Sources
37
 
38
  - **Repository:** [https://github.com/recursionpharma/maes_microscopy](https://github.com/recursionpharma/maes_microscopy)
 
133
 
134
  - Kian Kenyon-Dean: kian.kd@recursion.com
135
  - Oren Kraus: oren.kraus@recursion.com
136
+ - Or, email: info@rxrx.ai
pyproject.toml CHANGED
@@ -3,7 +3,7 @@ requires = ["setuptools >= 61.0"]
3
  build-backend = "setuptools.build_meta"
4
 
5
  [project]
6
- name = "maes_microscopy_project"
7
  version = "0.1.0"
8
  authors = [
9
  {name = "kian-kd", email = "kian.kd@recursionpharma.com"},
@@ -31,4 +31,7 @@ dependencies = [
31
  ]
32
 
33
  [tool.setuptools]
34
- py-modules = []
 
 
 
 
3
  build-backend = "setuptools.build_meta"
4
 
5
  [project]
6
+ name = "openphenom"
7
  version = "0.1.0"
8
  authors = [
9
  {name = "kian-kd", email = "kian.kd@recursionpharma.com"},
 
31
  ]
32
 
33
  [tool.setuptools]
34
+ packages = ["OpenPhenom"]
35
+
36
+ [tool.setuptools.package-dir]
37
+ OpenPhenom = "."