diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 69ffdf2..d938a0e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 2.1.4 +current_version = 2.1.5 commit = True tag = True -[bumpversion:file:etherscan/version.py] +[bumpversion:file:rstms_etherscan_python/version.py] search = __version__ = "{current_version}" replace = __version__ = "{new_version}" diff --git a/VERSION b/VERSION index 7d2ed7c..cd57a8b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.4 +2.1.5 diff --git a/etherscan/version.py b/etherscan/version.py deleted file mode 100644 index df4be5e..0000000 --- a/etherscan/version.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "2.1.4" diff --git a/make/common.mk b/make/common.mk index bd1f8c3..d8d52c6 100644 --- a/make/common.mk +++ b/make/common.mk @@ -28,6 +28,7 @@ names: @echo src_dirs=$(src_dirs) @echo python_src=$(python_src) @echo git_commit=$(git_commit) + @echo wheel=$(wheel) ## list make targets with descriptions diff --git a/pyproject.toml b/pyproject.toml index 014aa33..106b7a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ ] [tool.flit.module] -name = "etherscan" +name = "rstms_etherscan_python" [project.optional-dependencies] dev = [ diff --git a/etherscan/__init__.py b/rstms_etherscan_python/__init__.py similarity index 100% rename from etherscan/__init__.py rename to rstms_etherscan_python/__init__.py diff --git a/etherscan/configs/GOERLI-stable.json b/rstms_etherscan_python/configs/GOERLI-stable.json similarity index 100% rename from etherscan/configs/GOERLI-stable.json rename to rstms_etherscan_python/configs/GOERLI-stable.json diff --git a/etherscan/configs/KOVAN-stable.json b/rstms_etherscan_python/configs/KOVAN-stable.json similarity index 100% rename from etherscan/configs/KOVAN-stable.json rename to rstms_etherscan_python/configs/KOVAN-stable.json diff --git a/etherscan/configs/MAIN-stable.json b/rstms_etherscan_python/configs/MAIN-stable.json similarity index 100% rename from etherscan/configs/MAIN-stable.json rename to rstms_etherscan_python/configs/MAIN-stable.json diff --git a/etherscan/configs/RINKEBY-stable.json b/rstms_etherscan_python/configs/RINKEBY-stable.json similarity index 100% rename from etherscan/configs/RINKEBY-stable.json rename to rstms_etherscan_python/configs/RINKEBY-stable.json diff --git a/etherscan/configs/ROPSTEN-stable.json b/rstms_etherscan_python/configs/ROPSTEN-stable.json similarity index 100% rename from etherscan/configs/ROPSTEN-stable.json rename to rstms_etherscan_python/configs/ROPSTEN-stable.json diff --git a/etherscan/configs/__init__.py b/rstms_etherscan_python/configs/__init__.py similarity index 100% rename from etherscan/configs/__init__.py rename to rstms_etherscan_python/configs/__init__.py diff --git a/etherscan/enums/__init__.py b/rstms_etherscan_python/enums/__init__.py similarity index 100% rename from etherscan/enums/__init__.py rename to rstms_etherscan_python/enums/__init__.py diff --git a/etherscan/enums/actions_enum.py b/rstms_etherscan_python/enums/actions_enum.py similarity index 100% rename from etherscan/enums/actions_enum.py rename to rstms_etherscan_python/enums/actions_enum.py diff --git a/etherscan/enums/fields_enum.py b/rstms_etherscan_python/enums/fields_enum.py similarity index 100% rename from etherscan/enums/fields_enum.py rename to rstms_etherscan_python/enums/fields_enum.py diff --git a/etherscan/enums/modules_enum.py b/rstms_etherscan_python/enums/modules_enum.py similarity index 100% rename from etherscan/enums/modules_enum.py rename to rstms_etherscan_python/enums/modules_enum.py diff --git a/etherscan/enums/tags_enum.py b/rstms_etherscan_python/enums/tags_enum.py similarity index 100% rename from etherscan/enums/tags_enum.py rename to rstms_etherscan_python/enums/tags_enum.py diff --git a/etherscan/etherscan.py b/rstms_etherscan_python/etherscan.py similarity index 100% rename from etherscan/etherscan.py rename to rstms_etherscan_python/etherscan.py diff --git a/etherscan/modules/__init__.py b/rstms_etherscan_python/modules/__init__.py similarity index 100% rename from etherscan/modules/__init__.py rename to rstms_etherscan_python/modules/__init__.py diff --git a/etherscan/modules/accounts.py b/rstms_etherscan_python/modules/accounts.py similarity index 100% rename from etherscan/modules/accounts.py rename to rstms_etherscan_python/modules/accounts.py diff --git a/etherscan/modules/blocks.py b/rstms_etherscan_python/modules/blocks.py similarity index 100% rename from etherscan/modules/blocks.py rename to rstms_etherscan_python/modules/blocks.py diff --git a/etherscan/modules/contracts.py b/rstms_etherscan_python/modules/contracts.py similarity index 100% rename from etherscan/modules/contracts.py rename to rstms_etherscan_python/modules/contracts.py diff --git a/etherscan/modules/gastracker.py b/rstms_etherscan_python/modules/gastracker.py similarity index 100% rename from etherscan/modules/gastracker.py rename to rstms_etherscan_python/modules/gastracker.py diff --git a/etherscan/modules/pro.py b/rstms_etherscan_python/modules/pro.py similarity index 100% rename from etherscan/modules/pro.py rename to rstms_etherscan_python/modules/pro.py diff --git a/etherscan/modules/proxy.py b/rstms_etherscan_python/modules/proxy.py similarity index 100% rename from etherscan/modules/proxy.py rename to rstms_etherscan_python/modules/proxy.py diff --git a/etherscan/modules/stats.py b/rstms_etherscan_python/modules/stats.py similarity index 100% rename from etherscan/modules/stats.py rename to rstms_etherscan_python/modules/stats.py diff --git a/etherscan/modules/tokens.py b/rstms_etherscan_python/modules/tokens.py similarity index 100% rename from etherscan/modules/tokens.py rename to rstms_etherscan_python/modules/tokens.py diff --git a/etherscan/modules/transactions.py b/rstms_etherscan_python/modules/transactions.py similarity index 100% rename from etherscan/modules/transactions.py rename to rstms_etherscan_python/modules/transactions.py diff --git a/etherscan/utils/__init__.py b/rstms_etherscan_python/utils/__init__.py similarity index 100% rename from etherscan/utils/__init__.py rename to rstms_etherscan_python/utils/__init__.py diff --git a/etherscan/utils/conversions.py b/rstms_etherscan_python/utils/conversions.py similarity index 100% rename from etherscan/utils/conversions.py rename to rstms_etherscan_python/utils/conversions.py diff --git a/etherscan/utils/parsing.py b/rstms_etherscan_python/utils/parsing.py similarity index 100% rename from etherscan/utils/parsing.py rename to rstms_etherscan_python/utils/parsing.py diff --git a/rstms_etherscan_python/version.py b/rstms_etherscan_python/version.py new file mode 100644 index 0000000..0b167e6 --- /dev/null +++ b/rstms_etherscan_python/version.py @@ -0,0 +1 @@ +__version__ = "2.1.5" pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy