-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Libs: fix descriptions in package repositories. (#1170)
- Loading branch information
Showing
6 changed files
with
12 additions
and
9 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix | |
POM_DEVELOPER_NAME=Svix | ||
POM_DEVELOPER_EMAIL[email protected] | ||
|
||
POM_DESCRIPTION=Java Bindings for the Svix API | ||
POM_DESCRIPTION=Svix webhooks API client and webhook verification library | ||
POM_NAME=svix | ||
POM_ARTIFACT_ID=svix | ||
POM_PACKAGING=jar | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ POM_DEVELOPER_ID=svix | |
POM_DEVELOPER_NAME=Svix | ||
POM_DEVELOPER_EMAIL[email protected] | ||
|
||
POM_DESCRIPTION=Async Kotlin Bindings for the Svix API | ||
POM_DESCRIPTION=Svix webhooks async API client and webhook verification library | ||
POM_NAME=svix-kotlin | ||
POM_ARTIFACT_ID=svix-kotlin | ||
POM_PACKAGING=jar | ||
|
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 |
---|---|---|
|
@@ -42,7 +42,9 @@ def read_file(filepath): | |
|
||
def find_meta(meta): | ||
"""Extract __*meta*__ from META_CONTENTS.""" | ||
meta_match = re.search(r"^__{meta}__\s+=\s+['\"]([^'\"]*)['\"]".format(meta=meta), META_CONTENTS, re.M) | ||
meta_match = re.search( | ||
r"^__{meta}__\s+=\s+['\"]([^'\"]*)['\"]".format(meta=meta), META_CONTENTS, re.M | ||
) | ||
|
||
if meta_match: | ||
return meta_match.group(1) | ||
|
@@ -66,8 +68,9 @@ def get_version_string(): | |
|
||
# Check validity | ||
if not is_canonical_version(version_string): | ||
message = 'The detected version string "{}" is not in canonical ' "format as defined in PEP 440.".format( | ||
version_string | ||
message = ( | ||
'The detected version string "{}" is not in canonical ' | ||
"format as defined in PEP 440.".format(version_string) | ||
) | ||
raise ValueError(message) | ||
|
||
|
@@ -82,7 +85,7 @@ def get_version_string(): | |
setup( | ||
name=PKG_NAME, | ||
version=get_version_string(), | ||
description="Svix", | ||
description="Svix webhooks API client and webhook verification library", | ||
author="Svix", | ||
author_email="[email protected]", | ||
url="https://www.svix.com", | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec| | |
spec.email = ["[email protected]"] | ||
spec.license = "MIT" | ||
|
||
spec.summary = "Ruby bindings for the Svix API" | ||
spec.summary = "Svix webhooks API client and webhook verification library" | ||
spec.description = "Svix makes webhooks easy and reliable. " \ | ||
"Learn more at https://www.svix.com" | ||
spec.homepage = "https://www.svix.com" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "svix" | |
version = "1.15.0" | ||
authors = ["Svix Inc. <[email protected]>"] | ||
edition = "2021" | ||
description="Rust library for interacting with the Svix API and verifying webhook signatures." | ||
description="Svix webhooks API client and webhook verification library" | ||
homepage="https://www.svix.com" | ||
repository="https://github.com/svix/svix-webhooks" | ||
readme="../README.md" | ||
|