Integrate Deutsche Post shipping API and models
Added Deutsche Post as a shipping carrier, including new models, admin, serializers, and API client integration. Updated Carrier and SiteConfiguration models to support Deutsche Post, including shipping price and API credentials. Added requirements for the Deutsche Post API client and dependencies.
This commit is contained in:
26
backend/thirdparty/deutschepost/client/pyproject.toml
vendored
Normal file
26
backend/thirdparty/deutschepost/client/pyproject.toml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
[tool.poetry]
|
||||
name = "deutsche-post-international-shipping-api-client"
|
||||
version = "5.7.10"
|
||||
description = "A client library for accessing Deutsche Post International Shipping API"
|
||||
authors = []
|
||||
readme = "README.md"
|
||||
packages = [
|
||||
{ include = "deutsche_post_international_shipping_api_client" },
|
||||
]
|
||||
include = ["deutsche_post_international_shipping_api_client/py.typed"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
httpx = ">=0.23.0,<0.29.0"
|
||||
attrs = ">=22.2.0"
|
||||
python-dateutil = "^2.8.0"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 120
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = ["F", "I", "UP"]
|
||||
Reference in New Issue
Block a user