-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 868 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from distutils.core import setup
setup(
name='web3_balancer',
packages=['web3_balancer'],
version='0.1b1',
license='GNU GPL-3.0 license',
description='A balancer for web3 connections',
author='Lars Lundin',
author_email='[email protected]',
url='https://github.com/larsyngvelundin/web3_balancer',
download_url='https://github.com/larsyngvelundin/web3_balancer/archive/refs/tags/v.011.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 General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)