diff --git a/README.md b/README.md index 0859dad..c06610e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The **Crypto.com Developer Platform Client.py** is a pyton SDK designed to inter To install the package, run the following command: ```bash -pip install crypto-com-developer-platform-client +pip install crypto_com_developer_platform_client ``` ## Usage @@ -28,8 +28,8 @@ Here’s how you can use the Crypto.com Python Client for Developer Platform in ### Configuring the Client ```py -from crypto-com-developer-platform-client import Block, Client -from crypto-com-developer-platform-client.interfaces.chain_interfaces import CronosZkEvm +from crypto_com_developer_platform_client import Block, Client +from crypto_com_developer_platform_client.interfaces.chain_interfaces import CronosZkEvm Client.init(api_key="EXPLORER_API_KEY", diff --git a/crypto_com_developer_platform_client_py/__init__.py b/crypto_com_developer_platform_client/__init__.py similarity index 100% rename from crypto_com_developer_platform_client_py/__init__.py rename to crypto_com_developer_platform_client/__init__.py diff --git a/crypto_com_developer_platform_client_py/block.py b/crypto_com_developer_platform_client/block.py similarity index 100% rename from crypto_com_developer_platform_client_py/block.py rename to crypto_com_developer_platform_client/block.py diff --git a/crypto_com_developer_platform_client_py/client.py b/crypto_com_developer_platform_client/client.py similarity index 100% rename from crypto_com_developer_platform_client_py/client.py rename to crypto_com_developer_platform_client/client.py diff --git a/crypto_com_developer_platform_client_py/contract.py b/crypto_com_developer_platform_client/contract.py similarity index 100% rename from crypto_com_developer_platform_client_py/contract.py rename to crypto_com_developer_platform_client/contract.py diff --git a/crypto_com_developer_platform_client_py/integrations/api_interfaces.py b/crypto_com_developer_platform_client/integrations/api_interfaces.py similarity index 100% rename from crypto_com_developer_platform_client_py/integrations/api_interfaces.py rename to crypto_com_developer_platform_client/integrations/api_interfaces.py diff --git a/crypto_com_developer_platform_client_py/integrations/block_api.py b/crypto_com_developer_platform_client/integrations/block_api.py similarity index 100% rename from crypto_com_developer_platform_client_py/integrations/block_api.py rename to crypto_com_developer_platform_client/integrations/block_api.py diff --git a/crypto_com_developer_platform_client_py/integrations/contract_api.py b/crypto_com_developer_platform_client/integrations/contract_api.py similarity index 100% rename from crypto_com_developer_platform_client_py/integrations/contract_api.py rename to crypto_com_developer_platform_client/integrations/contract_api.py diff --git a/crypto_com_developer_platform_client_py/integrations/token_api.py b/crypto_com_developer_platform_client/integrations/token_api.py similarity index 100% rename from crypto_com_developer_platform_client_py/integrations/token_api.py rename to crypto_com_developer_platform_client/integrations/token_api.py diff --git a/crypto_com_developer_platform_client_py/integrations/transaction_api.py b/crypto_com_developer_platform_client/integrations/transaction_api.py similarity index 100% rename from crypto_com_developer_platform_client_py/integrations/transaction_api.py rename to crypto_com_developer_platform_client/integrations/transaction_api.py diff --git a/crypto_com_developer_platform_client_py/integrations/wallet_api.py b/crypto_com_developer_platform_client/integrations/wallet_api.py similarity index 100% rename from crypto_com_developer_platform_client_py/integrations/wallet_api.py rename to crypto_com_developer_platform_client/integrations/wallet_api.py diff --git a/crypto_com_developer_platform_client_py/interfaces/chain_interfaces.py b/crypto_com_developer_platform_client/interfaces/chain_interfaces.py similarity index 100% rename from crypto_com_developer_platform_client_py/interfaces/chain_interfaces.py rename to crypto_com_developer_platform_client/interfaces/chain_interfaces.py diff --git a/crypto_com_developer_platform_client_py/token.py b/crypto_com_developer_platform_client/token.py similarity index 100% rename from crypto_com_developer_platform_client_py/token.py rename to crypto_com_developer_platform_client/token.py diff --git a/crypto_com_developer_platform_client_py/transaction.py b/crypto_com_developer_platform_client/transaction.py similarity index 100% rename from crypto_com_developer_platform_client_py/transaction.py rename to crypto_com_developer_platform_client/transaction.py diff --git a/crypto_com_developer_platform_client_py/wallet.py b/crypto_com_developer_platform_client/wallet.py similarity index 100% rename from crypto_com_developer_platform_client_py/wallet.py rename to crypto_com_developer_platform_client/wallet.py diff --git a/pyproject.toml b/pyproject.toml index 0da0fa7..3ab33e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "crypto-com-developer-platform-client-py" +name = "crypto_com_developer_platform_client" version = "1.0.2" description = "A python client to interact with @cryptocom/developer-platform-service" authors = ["Ric Arcifa "]