Skip to content

Commit e7594f0

Browse files
author
mbarber
committed
updated
1 parent 5ffb405 commit e7594f0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![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/)
2+
[![Coverage](https://github.com/OpenProteinAI/openprotein-python-private/raw/develop/apidocs/source/coverage.svg)](https://pypi.org/project/openprotein-python/)
33

44
# openprotein-python
55
Python interface for the OpenProtein.AI REST API.
@@ -9,7 +9,7 @@ Python interface for the OpenProtein.AI REST API.
99
You can install with pip:
1010

1111
```
12-
pip install openprotein
12+
pip install openprotein-python
1313
```
1414
## Getting started
1515

openprotein/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
try:
22
from importlib.metadata import version
3-
except ImportError:
3+
except ModuleNotFoundError:
44
from importlib_metadata import version # py 3.7
55

66
__version__ = version("openprotein-python")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "openprotein_python"
33
packages = [{include = "openprotein"}]
4-
version = "0.1.1b11"
4+
version = "0.1.1b15"
55
description = "OpenProtein Python interface."
66
license = "MIT"
77
readme = "README.md"

0 commit comments

Comments
 (0)