-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a5699ec
commit 42b4ad8
Showing
7 changed files
with
22 additions
and
160 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
from setuptools import setup | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name='web3_balancer', | ||
packages=['web3_balancer'], | ||
version='0.1', | ||
description='A connection balancer for web3', | ||
license='GNU GPL-3.0 license', | ||
description='A balancer for web3 connections', | ||
author='Lars Lundin', | ||
author_email='lars.y.lundin@gmail.com', | ||
url='https://github.com/larsyngvelundin/web3-balancer/', | ||
packages=['src'], | ||
package_dir={'': 'src'}, | ||
author_email='your.email@domain.com', | ||
url='https://github.com/larsyngvelundin/web3_balancer', | ||
download_url='https://github.com/larsyngvelundin/web3_balancer/releases/v_01.tar.gz', | ||
keywords=['web3'], | ||
install_requires=[ | ||
'web3', | ||
'loguru', | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: GNU GPL-3.0 license', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
], | ||
) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from web3_balancer.main import Web3_balancer, get_tor_session |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters