Skip to content

Commit cc5e205

Browse files
author
mbarber
committed
test flow
1 parent 34cb7dc commit cc5e205

File tree

5 files changed

+40
-7
lines changed

5 files changed

+40
-7
lines changed

.github/workflows/s3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Sphinx
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install sphinx
23+
pip install sphinx recommonmark
2424
2525
- name: Build HTML with Sphinx
2626
run: |

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[![PyPI version](https://badge.fury.io/py/openprotein-python.svg)](https://pypi.org/project/openprotein-python/)
2+
[![Coverage](./apidocs/source/coverage.svg)](https://pypi.org/project/openprotein-python/)
3+
14
# openprotein-python
25
Python interface for the OpenProtein.AI REST API.
36

meta.yaml

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

openprotein_python/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_tuple__ = version_tuple = (0, 1, 1, 'b7')
1+
__version_tuple__ = version_tuple = (0, 1, 1, 'b8')
22
__version__ = version = '.'.join(str(x) for x in __version_tuple__)

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openprotein_python"
3-
version = "0.1.1b7"
3+
version = "0.1.1b8"
44
description = "OpenProtein Python interface."
55
license = "MIT"
66
readme = "README.md"
@@ -13,10 +13,10 @@ classifiers = [
1313

1414
[tool.poetry.dependencies]
1515
python = "^3.7"
16-
requests = ">2"
17-
pydantic = ">1"
18-
tqdm = ">4"
19-
pandas = ">1"
16+
requests = ">=2"
17+
pydantic = ">=1"
18+
tqdm = ">=4"
19+
pandas = ">=1"
2020

2121
[tool.poetry.dev-dependencies]
2222

0 commit comments

Comments
 (0)