Skip to content

Commit

Permalink
v0.9.3 move non_address focused tooling or tooling that relies on sub…
Browse files Browse the repository at this point in the history
…graph to new package. bal_tools
  • Loading branch information
BIP Bot committed Apr 25, 2024
1 parent 4396ca6 commit 631aec4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 316 deletions.
3 changes: 1 addition & 2 deletions bal_addresses/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@
ChecksumError,
UnexpectedListLengthError,
)
from .subgraph import Subgraph
from .pools_gauges import BalPoolsGauges

215 changes: 0 additions & 215 deletions bal_addresses/pools_gauges.py

This file was deleted.

1 change: 1 addition & 0 deletions bal_addresses/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pathlib>=1.0
git+https://github.com/BalancerMaxis/[email protected]
requests
pandas
web3
Expand Down
91 changes: 0 additions & 91 deletions bal_addresses/subgraph.py

This file was deleted.

2 changes: 1 addition & 1 deletion gen_core_pools.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import json
from bal_addresses.pools_gauges import BalPoolsGauges
from bal_tools import BalPoolsGauges


def main():
Expand Down
4 changes: 2 additions & 2 deletions gen_pools_and_gauges.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import pandas as pd
import requests

from bal_addresses.pools_gauges import BalPoolsGauges
from bal_addresses.subgraph import Subgraph
from bal_tools import BalPoolsGauges
from bal_tools import Subgraph


NO_GAUGE_SUBGRAPH = ["bsc", "kovan", "fantom", "rinkeby"]
Expand Down
4 changes: 1 addition & 3 deletions gen_subgraph_urls.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import json

import requests

from bal_addresses.subgraph import Subgraph

from bal_tools.subgraph import Subgraph

def main():
urls = {}
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "0.9.1"
VERSION = "0.9.2"
DESCRIPTION = "Balancer Maxi Addressbook"
LONG_DESCRIPTION = "Balancer Maxi Addressbook and Balancer Permissions helper"

Expand All @@ -14,7 +14,7 @@
long_description=LONG_DESCRIPTION,
packages=find_packages(),
include_package_data=True, # Automatically include non-Python files
package_data={"": ["graphql/**/*.gql", "abis/*.json"]},
package_data={"": ["abis/*.json"]},
url="https://github.com/BalancerMaxis/bal_addresses",
install_requires=[
"setuptools>=42",
Expand All @@ -23,6 +23,7 @@
"web3",
"gql[requests]",
"requests",
"git+https://github.com/BalancerMaxis/[email protected]"
],
keywords=["python", "first package"],
classifiers=[
Expand Down

0 comments on commit 631aec4

Please sign in to comment.