-
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
68ceb62
commit 6203a63
Showing
277 changed files
with
26,413 additions
and
15,737 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""" |
Oops, something went wrong.