chainlib-eth

Ethereum implementation of the chainlib interface
Info | Log | Files | Refs | README | LICENSE

setup.cfg (1449B)


      1 [metadata]
      2 name = chainlib-eth
      3 version = 0.6.4
      4 description = Ethereum implementation of the chainlib interface
      5 author = Louis Holbrook
      6 author_email = dev@holbrook.no
      7 url = https://git.defalslfy.org/chainlib-eth
      8 keywords =
      9 	dlt
     10 	blockchain
     11 	cryptocurrency
     12 	ethereum
     13 classifiers =
     14 	Programming Language :: Python :: 3
     15 	Operating System :: OS Independent
     16 	Development Status :: 3 - Alpha
     17 	Topic :: Software Development :: Libraries
     18 	Environment :: Console
     19 	Intended Audience :: Developers
     20 	License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
     21 	Topic :: Internet
     22 #	Topic :: Blockchain :: EVM
     23 license = AGPLv3+
     24 licence_files =
     25 	LICENSE
     26 
     27 [options]
     28 include_package_data = True
     29 python_requires = >=3.8
     30 packages = 
     31 	chainlib.eth
     32 	chainlib.eth.dialect
     33 	chainlib.eth.runnable
     34 	chainlib.eth.pytest
     35 	chainlib.eth.unittest
     36 	chainlib.eth.cli
     37 
     38 [options.entry_points]
     39 console_scripts =
     40 	eth-count = chainlib.eth.runnable.count:main
     41 	eth-balance = chainlib.eth.runnable.balance:main
     42 	eth-checksum = chainlib.eth.runnable.checksum:main
     43 	eth-gas = chainlib.eth.runnable.gas:main
     44 	eth-raw = chainlib.eth.runnable.raw:main
     45 	eth-get = chainlib.eth.runnable.get:main
     46 	eth-decode = chainlib.eth.runnable.decode:main
     47 	eth-encode = chainlib.eth.runnable.encode:main
     48 	eth-info = chainlib.eth.runnable.info:main
     49 	eth-nonce = chainlib.eth.runnable.count:main
     50 	eth-wait = chainlib.eth.runnable.wait:main
     51 	eth-block = chainlib.eth.runnable.block:main