diff --git a/README.md b/README.md index e9305f4..a3feea1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Python package for building Shopify applications. ## Installation ```bash -pip install --upgrade shopify-app +pip install --upgrade shopifyapp ``` ## Requirements diff --git a/pyproject.toml b/pyproject.toml index 18dc250..646097e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,13 +3,13 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "shopify-app" +name = "shopifyapp" dynamic = ["version"] description = "Package for building Shopify applications. Authored and maintained by Shopify." readme = "README.md" license = {file = "LICENSE"} requires-python = ">=3.8" -keywords = ["shopify", "shopify-apps", "token-exchange", "client-credentials", "admin-graphql", "webhooks", "app-proxy", "flow-action"] +keywords = ["shopify", "token-exchange", "client-credentials", "admin-graphql", "webhooks", "app-proxy", "flow-action"] authors = [ { name = "Shopify" } ] diff --git a/shopify_app/utils/user_agent.py b/shopify_app/utils/user_agent.py index 1fba2bb..37e03a8 100644 --- a/shopify_app/utils/user_agent.py +++ b/shopify_app/utils/user_agent.py @@ -6,7 +6,7 @@ from .._version import __version__ -PACKAGE_NAME = "shopify-app" +PACKAGE_NAME = "shopifyapp" def _get_user_agent() -> str: @@ -14,7 +14,7 @@ def _get_user_agent() -> str: Get the User-Agent string for HTTP requests. Format: "{package-name} v{version} | Python {python_version}" - Example: "shopify-app v0.1.0 | Python 3.11.0" + Example: "shopifyapp v0.1.0 | Python 3.11.0" Returns: str: The formatted User-Agent string