-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4daf436
commit a1e1b7a
Showing
299 changed files
with
28,422 additions
and
21,082 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ dmypy.json | |
.idea/ | ||
|
||
/coverage.xml | ||
/.coverage | ||
/.coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,27 @@ | ||
[tool.poetry] | ||
name = "bindings" | ||
version = "4.6.0" | ||
version = "4.6.1" | ||
description = "A client library for accessing OSIDB API" | ||
|
||
authors = [] | ||
|
||
readme = "README.md" | ||
packages = [ | ||
{include = "python_client"}, | ||
] | ||
include = ["CHANGELOG.md", "python_client/py.typed"] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
httpx = ">=0.15.4,<0.21.0" | ||
attrs = ">=20.1.0,<22.0.0" | ||
python = "^3.9" | ||
httpx = ">=0.20.0,<0.28.0" | ||
attrs = ">=21.3.0" | ||
python-dateutil = "^2.8.0" | ||
|
||
[build-system] | ||
requires = ["poetry>=1.0"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.black] | ||
[tool.ruff] | ||
line-length = 120 | ||
target_version = ['py36', 'py37', 'py38'] | ||
exclude = ''' | ||
( | ||
/( | ||
| \.git | ||
| \.venv | ||
| \.mypy_cache | ||
)/ | ||
) | ||
''' | ||
|
||
[tool.isort] | ||
line_length = 120 | ||
profile = "black" | ||
[tool.ruff.lint] | ||
select = ["F", "I", "UP"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
""" A client library for accessing OSIDB API """ | ||
"""A client library for accessing OSIDB API""" | ||
|
||
from .client import AuthenticatedClient, Client | ||
|
||
__all__ = ( | ||
"AuthenticatedClient", | ||
"Client", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
""" Contains methods for accessing the API """ | ||
"""Contains methods for accessing the API""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .auth_token_retrieve import * | ||
from .auth_token_create import * | ||
from .auth_token_refresh_create import * | ||
from .auth_token_retrieve import * | ||
from .auth_token_verify_create import * |
Oops, something went wrong.