diff --git a/bal_tools/requirements.txt b/bal_tools/requirements.txt index 7f2f003..60b5305 100644 --- a/bal_tools/requirements.txt +++ b/bal_tools/requirements.txt @@ -1,5 +1,5 @@ wheel -git+https://github.com/BalancerMaxis/brownie.git@v1.20.x#egg=eth-brownie +web3>=6.0.0 pathlib>=1.0 numpy==1.26.4 pandas @@ -9,3 +9,4 @@ gql[requests] pydantic json-fix lxml +dotenv diff --git a/setup.py b/setup.py index bda2309..93e2dcc 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = "0.1.18" +VERSION = "0.1.19" DESCRIPTION = "Balancer Tools" LONG_DESCRIPTION = "Balancer Maxi helper and ecosystem tools" @@ -23,7 +23,7 @@ url="https://github.com/BalancerMaxis/bal_tools", install_requires=[ "wheel", - "eth-brownie @ git+https://github.com/BalancerMaxis/brownie.git@v1.20.x", + "web3>=6.0.0", "pathlib>=1.0", "numpy==1.26.4", "pandas", @@ -33,6 +33,7 @@ "pydantic", "json-fix", "lxml", + "dotenv", ], keywords=["python", "first package"], classifiers=[