Skip to content

Commit 3579d62

Browse files
Merge pull request #538 from valory-xyz/release
chore: fix plugin long descriptions
2 parents ec56d11 + 8c7802c commit 3579d62

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.github/workflows/release.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,7 @@ jobs:
6262
cd ../..
6363
6464
65-
- name: Publish Package to PyPI
66-
uses: pypa/gh-action-pypi-publish@release/v1
67-
with:
68-
user: __token__
69-
password: ${{ secrets.PYPI_API_TOKEN }}
70-
skip_existing: true
71-
packages_dir: dist/
65+
7266
7367
- name: Publish cli-benchmark Plugin to PyPI
7468
uses: pypa/gh-action-pypi-publish@release/v1

plugins/aea-cli-benchmark/setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
author="Valory AG",
3131
license="Apache-2.0",
3232
description="CLI extension for AEA framework benchmarking.",
33+
long_description="CLI extension for AEA framework benchmarking.",
34+
long_description_content_type="text/markdown",
3335
packages=find_packages(
3436
where=".", include=["aea_cli_benchmark", "aea_cli_benchmark.*"]
3537
),

plugins/aea-cli-ipfs/setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
author="Valory AG",
3333
license="Apache-2.0",
3434
description="CLI extension for open AEA framework wrapping IPFS functionality.",
35+
long_description="CLI extension for open AEA framework wrapping IPFS functionality.",
36+
long_description_content_type="text/markdown",
3537
packages=["aea_cli_ipfs"],
3638
entry_points={"aea.cli": ["ipfs_cli_command = aea_cli_ipfs.core:ipfs"]},
3739
install_requires=[

plugins/aea-ledger-cosmos/setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
author="Valory AG",
3131
license="Apache-2.0",
3232
description="Python package wrapping the public and private key cryptography and ledger api of Cosmos.",
33+
long_description="Python package wrapping the public and private key cryptography and ledger api of Cosmos.",
34+
long_description_content_type="text/markdown",
3335
packages=find_packages(include=["aea_ledger_cosmos*"]),
3436
package_data={
3537
"aea_ledger_cosmos": [

plugins/aea-ledger-ethereum/setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
author="Valory AG",
3131
license="Apache-2.0",
3232
description="Python package wrapping the public and private key cryptography and ledger api of Ethereum.",
33+
long_description="Python package wrapping the public and private key cryptography and ledger api of Ethereum.",
34+
long_description_content_type="text/markdown",
3335
packages=find_packages(include=["aea_ledger_ethereum*"]),
3436
package_data={
3537
"aea_ledger_ethereum": [

plugins/aea-ledger-fetchai/setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
author="Valory AG",
3636
license="Apache-2.0",
3737
description="Python package wrapping the public and private key cryptography and ledger API of Fetch.AI.",
38+
long_description="Python package wrapping the public and private key cryptography and ledger API of Fetch.AI.",
39+
long_description_content_type="text/markdown",
3840
packages=find_packages(include=["aea_ledger_fetchai*"]),
3941
package_data={
4042
"aea_ledger_fetchai": [

0 commit comments

Comments
 (0)