diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 79be6cc..fd5a0ab 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,7 +21,7 @@ repos: name: black - repo: https://gitlab.com/pycqa/flake8 - rev: 3.8.3 + rev: 3.9.2 hooks: - id: flake8 diff --git a/README.md b/README.md index 47a582c..a7fb5b2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Ape Etherscan Plugin -TODO: Description +Etherscan Explorer Plugin for Ethereum-based networks. ## Dependencies @@ -32,8 +32,8 @@ TODO: Describe library overview in code ## Development -This project is in early development and should be considered an alpha. -Things might not work, breaking changes are likely. +This project is in development and should be considered a beta. +Things might not be in their final state and breaking changes may occur. Comments, questions, criticisms and pull requests are welcomed. ## License diff --git a/setup.py b/setup.py index 4ac43f4..a686c42 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ "black>=21.10b0,<22.0", # auto-formatter and linter "mypy>=0.910,<1.0", # Static type analyzer "types-requests", # NOTE: Needed due to mypy typeshed - "flake8>=3.8.3,<4.0", # Style linter + "flake8>=3.9.2,<4.0", # Style linter "isort>=5.7.0,<6.0", # Import sorting linter ], "doc": [ @@ -62,7 +62,7 @@ url="https://github.com/ApeWorX/ape-etherscan", include_package_data=True, install_requires=[ - "eth-ape>=0.1.0a31", + "eth-ape>=0.1.0b2", "importlib-metadata ; python_version<'3.8'", ], # NOTE: Add 3rd party libraries here python_requires=">=3.7,<4", @@ -81,7 +81,6 @@ "Operating System :: MacOS", "Operating System :: POSIX", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",