openprotein-python 0.1.1b5__tar.gz → 0.1.1b6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/PKG-INFO +2 -2
  2. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/README.md +1 -1
  3. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/_version.py +1 -1
  4. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/base.py +1 -1
  5. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/pyproject.toml +1 -1
  6. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/LICENSE.txt +0 -0
  7. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/__init__.py +0 -0
  8. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/__init__.py +0 -0
  9. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/data.py +0 -0
  10. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/design.py +0 -0
  11. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/embedding.py +0 -0
  12. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/jobs.py +0 -0
  13. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/poet.py +0 -0
  14. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/predict.py +0 -0
  15. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/train.py +0 -0
  16. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/config.py +0 -0
  17. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/errors.py +0 -0
  18. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/fasta.py +0 -0
  19. {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/models.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: openprotein-python
3
- Version: 0.1.1b5
3
+ Version: 0.1.1b6
4
4
  Summary: OpenProtein Python interface.
5
5
  Home-page: https://docs.openprotein.ai/
6
6
  License: MIT
@@ -30,7 +30,7 @@ Python interface for the OpenProtein.AI REST API.
30
30
  You can install with pip:
31
31
 
32
32
  ```
33
- pip install openprotein-python
33
+ pip install openprotein_python
34
34
  ```
35
35
  ## Getting started
36
36
 
@@ -6,7 +6,7 @@ Python interface for the OpenProtein.AI REST API.
6
6
  You can install with pip:
7
7
 
8
8
  ```
9
- pip install openprotein-python
9
+ pip install openprotein_python
10
10
  ```
11
11
  ## Getting started
12
12
 
@@ -1,2 +1,2 @@
1
- __version_tuple__ = version_tuple = (0, 1, 1, 'b5')
1
+ __version_tuple__ = version_tuple = (0, 1, 1, 'b6')
2
2
  __version__ = version = '.'.join(str(x) for x in __version_tuple__)
@@ -40,7 +40,7 @@ class APISession(requests.Session):
40
40
 
41
41
  def __init__(self, username:str,
42
42
  password:str,
43
- backend:str = "https://dev.api.openprotein.ai/api/" ):
43
+ backend:str = "https://api.openprotein.ai/api/" ):
44
44
  super().__init__()
45
45
  self.backend = backend
46
46
  self.verify = True
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "openprotein_python"
3
- version = "0.1.1b5"
3
+ version = "0.1.1b6"
4
4
  description = "OpenProtein Python interface."
5
5
  license = "MIT"
6
6
  readme = "README.md"