diff --git a/README.md b/README.md index 3f93341..67bf49e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Android SMS Gateway Python API Client +# SMS Gateway for Androidâ„¢ Python API Client [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg?style=for-the-badge)](https://github.com/capcom6/android-sms-gateway-py/blob/main/LICENSE) [![GitHub Issues](https://img.shields.io/github/issues/capcom6/android-sms-gateway-py.svg?style=for-the-badge)](https://github.com/capcom6/android-sms-gateway-py/issues) @@ -8,7 +8,7 @@ [![Python Version](https://img.shields.io/pypi/pyversions/android-sms-gateway.svg?style=for-the-badge)](https://pypi.org/project/android-sms-gateway/) [![Downloads](https://img.shields.io/pypi/dm/android-sms-gateway.svg?style=for-the-badge)](https://pypi.org/project/android-sms-gateway/) -This is a Python client library for interfacing with the [Android SMS Gateway](https://sms.capcom.me) API. +This is a Python client library for interfacing with the [SMS Gateway for Android](https://sms-gate.app) API. ## Requirements @@ -54,7 +54,7 @@ from android_sms_gateway import client, domain, Encryptor login = os.getenv("ANDROID_SMS_GATEWAY_LOGIN") password = os.getenv("ANDROID_SMS_GATEWAY_PASSWORD") -# encryptor = Encryptor('passphrase') # for end-to-end encryption, see https://sms.capcom.me/privacy/encryption/ +# encryptor = Encryptor('passphrase') # for end-to-end encryption, see https://sms-gate.app/privacy/encryption/ message = domain.Message( "Your message text here.", diff --git a/android_sms_gateway/constants.py b/android_sms_gateway/constants.py index 56283b0..6073bab 100644 --- a/android_sms_gateway/constants.py +++ b/android_sms_gateway/constants.py @@ -1,3 +1,3 @@ VERSION = "1.0.0" -DEFAULT_URL = "https://sms.capcom.me/api/3rdparty/v1" +DEFAULT_URL = "https://api.sms-gate.app/3rdparty/v1" diff --git a/pyproject.toml b/pyproject.toml index 1f1a18b..b4d6173 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta" [project] name = "android-sms-gateway" -description = "A client library for sending and managing SMS messages via the Android SMS Gateway API" +description = "A client library for sending and managing SMS messages via the SMS Gateway for Android API" requires-python = ">=3.6" -authors = [{ name = "Aleksandr Soloshenko", email = "i@capcom.me" }] -maintainers = [{ name = "Aleksandr Soloshenko", email = "i@capcom.me" }] +authors = [{ name = "Aleksandr Soloshenko", email = "admin@sms-gate.app" }] +maintainers = [{ name = "Aleksandr Soloshenko", email = "support@sms-gate.app" }] readme = "README.md" license = { text = "Apache-2.0" } keywords = ["android", "sms", "gateway"] @@ -33,7 +33,7 @@ classifiers = [ version = { attr = "android_sms_gateway.__version__" } [project.urls] -Homepage = "https://sms.capcom.me" +Homepage = "https://sms-gate.app" Repository = "https://github.com/capcom6/android-sms-gateway-py" [project.optional-dependencies]