openprotein-python 0.2.0__tar.gz → 0.2.1.post1__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.2.0 → openprotein_python-0.2.1.post1}/PKG-INFO +5 -1
  2. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/README.md +3 -0
  3. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/poet.py +1 -1
  4. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/pyproject.toml +1 -1
  5. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/LICENSE.txt +0 -0
  6. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/__init__.py +0 -0
  7. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/_version.py +0 -0
  8. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/__init__.py +0 -0
  9. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/data.py +0 -0
  10. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/design.py +0 -0
  11. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/embedding.py +0 -0
  12. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/jobs.py +0 -0
  13. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/predict.py +0 -0
  14. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/train.py +0 -0
  15. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/base.py +0 -0
  16. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/config.py +0 -0
  17. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/errors.py +0 -0
  18. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/fasta.py +0 -0
  19. {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/models.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: openprotein-python
3
- Version: 0.2.0
3
+ Version: 0.2.1.post1
4
4
  Summary: OpenProtein Python interface.
5
5
  Home-page: https://docs.openprotein.ai/
6
6
  License: MIT
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.8
14
14
  Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3
17
18
  Requires-Dist: pandas (>=1)
18
19
  Requires-Dist: pydantic (>=1)
19
20
  Requires-Dist: requests (>=2)
@@ -22,6 +23,9 @@ Description-Content-Type: text/markdown
22
23
 
23
24
  [![PyPI version](https://badge.fury.io/py/openprotein-python.svg)](https://pypi.org/project/openprotein-python/)
24
25
  [![Coverage](https://dev.docs.openprotein.ai/api-python/_images/coverage.svg)](https://pypi.org/project/openprotein-python/)
26
+ [![Conda version](https://anaconda.org/openprotein/openprotein_python/badges/version.svg)](https://anaconda.org/openprotein/openprotein_python)
27
+
28
+
25
29
  # openprotein-python
26
30
  The OpenProtein.AI Python Interface provides a user-friendly library to interact with the OpenProtein.AI REST API, enabling various tasks related to protein analysis and modeling.
27
31
 
@@ -1,5 +1,8 @@
1
1
  [![PyPI version](https://badge.fury.io/py/openprotein-python.svg)](https://pypi.org/project/openprotein-python/)
2
2
  [![Coverage](https://dev.docs.openprotein.ai/api-python/_images/coverage.svg)](https://pypi.org/project/openprotein-python/)
3
+ [![Conda version](https://anaconda.org/openprotein/openprotein_python/badges/version.svg)](https://anaconda.org/openprotein/openprotein_python)
4
+
5
+
3
6
  # openprotein-python
4
7
  The OpenProtein.AI Python Interface provides a user-friendly library to interact with the OpenProtein.AI REST API, enabling various tasks related to protein analysis and modeling.
5
8
 
@@ -365,7 +365,7 @@ def upload_prompt_post(
365
365
  """
366
366
 
367
367
  endpoint = "v1/poet/align/upload_prompt"
368
- files = {"prompt_file ": prompt_file}
368
+ files = {"prompt_file": prompt_file}
369
369
  try:
370
370
  response = session.post(endpoint, files=files)
371
371
  return PromptJob(**response.json())
@@ -1,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "openprotein_python"
3
3
  packages = [{include = "openprotein"}]
4
- version = "0.2.0"
4
+ version = "0.2.1.post1"
5
5
  description = "OpenProtein Python interface."
6
6
  license = "MIT"
7
7
  readme = "README.md"