Skip to content

Commit

Permalink
Merge pull request #677 from valory-xyz/chore/py-typed
Browse files Browse the repository at this point in the history
Add missing `py.typed` markers
  • Loading branch information
angrybayblade authored Oct 4, 2023
2 parents 82b1aca + 792ea85 commit 454807b
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions plugins/aea-cli-benchmark/aea_cli_benchmark/py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Marker file for PEP 561. The aea package uses inline types.
1 change: 1 addition & 0 deletions plugins/aea-cli-benchmark/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
packages=find_packages(
where=".", include=["aea_cli_benchmark", "aea_cli_benchmark.*"]
),
package_data={"aea_cli_benchmark": ["py.typed"]},
entry_points={"aea.cli": ["benchmark = aea_cli_benchmark.core:benchmark"]},
install_requires=["open-aea>=1.0.0, <2.0.0", "psutil==5.7.0"],
classifiers=[
Expand Down
1 change: 1 addition & 0 deletions plugins/aea-cli-ipfs/aea_cli_ipfs/py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Marker file for PEP 561. The aea package uses inline types.
1 change: 1 addition & 0 deletions plugins/aea-cli-ipfs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
long_description="CLI extension for open AEA framework wrapping IPFS functionality.",
long_description_content_type="text/markdown",
packages=["aea_cli_ipfs"],
package_data={"aea_cli_ipfs": ["py.typed"]},
entry_points={"aea.cli": ["ipfs_cli_command = aea_cli_ipfs.core:ipfs"]},
install_requires=[
"open-aea>=1.0.0, <2.0.0",
Expand Down
1 change: 1 addition & 0 deletions plugins/aea-ledger-cosmos/aea_ledger_cosmos/py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Marker file for PEP 561. The aea package uses inline types.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Marker file for PEP 561. The aea package uses inline types.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Marker file for PEP 561. The aea package uses inline types.
1 change: 1 addition & 0 deletions plugins/aea-ledger-ethereum/aea_ledger_ethereum/py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Marker file for PEP 561. The aea package uses inline types.
1 change: 1 addition & 0 deletions plugins/aea-ledger-fetchai/aea_ledger_fetchai/py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Marker file for PEP 561. The aea package uses inline types.
1 change: 1 addition & 0 deletions plugins/aea-ledger-solana/aea_ledger_solana/py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Marker file for PEP 561. The aea package uses inline types.
2 changes: 1 addition & 1 deletion plugins/aea-ledger-solana/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
long_description="Python package wrapping the public and private key cryptography and ledger api of solana.",
long_description_content_type="text/markdown",
packages=find_packages(include=["aea_ledger_solana*"]),
package_data={},
package_data={"aea_ledger_solana": ["py.typed"]},
install_requires=[
"open-aea>=1.0.0, <2.0.0",
"cryptography",
Expand Down

0 comments on commit 454807b

Please sign in to comment.