Skip to content

Commit a871968

Browse files
author
mbarber
committed
conda build
1 parent 7c981f5 commit a871968

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ To install the python interface using pip, run the following command:
99
```
1010
pip install openprotein-python
1111
```
12+
13+
or with conda:
14+
```
15+
conda install -c openprotein openprotein_python
16+
```
1217
## Requirements
1318

1419
- Python 3.7 or higher.

recipe/meta.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
package:
2+
name: openprotein_python
3+
version: "0.2.1"
4+
5+
source:
6+
path: ../
7+
8+
build:
9+
noarch: python
10+
number: 1
11+
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
12+
13+
requirements:
14+
build:
15+
- python >=3.7
16+
- poetry
17+
host:
18+
- python >=3.7
19+
- pip
20+
- poetry
21+
run:
22+
- python >=3.7
23+
- requests >=2.0
24+
- pydantic >=1.0
25+
- tqdm >=4.0
26+
- pandas >=1.0
27+
28+
about:
29+
home: https://www.openprotein.ai/
30+
license: MIT
31+
summary: OpenProtein Python interface.
32+
description: A Python interface for OpenProtein.
33+
doc_url: https://docs.openprotein.ai/
34+
dev_url: https://github.com/OpenProteinAI/openprotein-python

0 commit comments

Comments
 (0)