You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Amazon Shipping API is designed to support outbound shipping use cases both for orders originating on Amazon-owned marketplaces as well as external channels/marketplaces. With these APIs, you can request shipping rates, create shipments, cancel shipments, and track shipments. # noqa: E501
from setuptools import setup, find_packages # noqa: H301
NAME = "amazon-shipping"
VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [line.strip() for line in open("requirements.txt", "r") if line.strip()]
setup(
name=NAME,
version=VERSION,
description="Amazon Shipping API",
author_email="swa-api-core@amazon.com",
url="",
keywords=["Swagger", "Amazon Shipping API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description="""\
The Amazon Shipping API is designed to support outbound shipping use cases both for orders originating on Amazon-owned marketplaces as well as external channels/marketplaces. With these APIs, you can request shipping rates, create shipments, cancel shipments, and track shipments. # noqa: E501